/* =============================================
   DESKTOP LAYOUT STYLES (min-width: 769px)
   Shared across all pages.
   Mobile styles live in the <style> block in each page's HTML.
   ============================================= */

/* ===== INDEX: TWO-COLUMN HERO ===== */
@media (min-width: 769px) {
  .hero-figure-mobile {
    display: none;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-container {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 48px;
    align-items: center;
    width: 100%;
  }

  .hero-text {
    max-width: 580px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    filter: var(--hero-drop-shadow);
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
  }

  .hero:has(.hero-container) {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
  }

  .hero:has(.hero-container) .container {
    width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(40px, 4.5vw, 62px);
    letter-spacing: -1.5px;
  }

  .hero-text p {
    font-size: 18px;
    max-width: 480px;
  }
}

/* ===== HIDE DESKTOP VISUAL ON MOBILE ===== */
@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}

/* ===== TRAP GRID: 4 COLUMNS ON LARGE SCREENS ===== */
@media (min-width: 1100px) {
  .trap-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== SHARED DESKTOP OVERRIDES ===== */
@media (min-width: 769px) {

  /* Section padding */
  .section {
    padding: 96px 0;
  }

  /* Page hero (projects, etc.) */
  .page-hero {
    padding: 160px 0 80px;
  }


  /* Nav */
  .nav .container {
    align-items: flex-start;
  }

  .mobile-br {
    display: none;
  }

  /* ===== TRAP HEADER ===== */
  .trap-header {
    max-width: none;
    margin-bottom: var(--space-xl);
  }

  .trap-problem-title {
    font-size: clamp(32px, 3.5vw, 46px);
    max-width: 860px;
    margin-bottom: 36px;
  }

  .trap-stat-block {
    max-width: 780px;
  }

  .trap-stat-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--space-md);
  }

  .trap-stat-left .trap-lead-stat {
    font-size: 72px;
    margin-bottom: 0;
    line-height: 1;
    flex-shrink: 0;
  }

  .trap-stat-left .trap-lead-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    color: var(--text-primary);
  }

  .trap-stat-block .section-subtitle {
    font-size: 17px;
    max-width: 640px;
    line-height: 1.75;
  }

  .trap-punchline {
    font-size: 24px;
    margin-top: var(--space-xs);
  }

  /* ===== LAYERS GRID ===== */
  .layer-card {
    padding: 36px 32px;
  }

  /* ===== PROJECTS TEASER GRID ===== */
  .project-teaser-card {
    padding: 32px 28px;
  }

  /* ===== FOOTER CTA ===== */
  .footer-cta h2 {
    font-size: clamp(36px, 4vw, 52px);
  }

  /* ===== PROJECTS PAGE: CARDS ===== */
  .projects-list {
    gap: var(--space-lg);
  }

  .project-card {
    padding: 48px 44px;
  }

  .project-card-inner {
    gap: 56px;
  }

  .project-card h3 {
    font-size: 24px;
  }

  /* ===== PROCESS PAGE: TIMELINE ===== */
  .timeline {
    max-width: 720px;
  }

  .flow-steps {
    gap: var(--space-md);
  }

  .flow-card {
    padding: 28px 24px;
  }

  .maturity-header {
    margin-bottom: var(--space-xl);
  }

  .maturity-grid {
    gap: var(--space-md);
  }

  /* ===== TECH PAGE: CATEGORIES ===== */
  .tech-category {
    margin-bottom: var(--space-lg);
  }

  .tech-category-title {
    font-size: 18px;
  }

  /* ===== PRICING SECTION ===== */
  .pricing .section-title {
    font-size: clamp(28px, 3.5vw, 42px);
  }

  .mobile-team-section {
    display: none !important;
  }
}
