﻿  :root {
    --green-deep: #0B2818;
    --green-mid: #1A4D2E;
    --green-bright: #2A7A4A;
    --gold: #C8962A;
    --gold-light: #F2C054;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FDFCFA;
    --text-dark: #0B1A10;
    --text-mid: #3D5A45;
    --text-muted: #7A9A82;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--green-deep);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    backdrop-filter: blur(12px);
    background: rgba(11,40,24,0.8);
    border-bottom: 1px solid rgba(200,150,42,0.15);
    animation: fadeDown 0.8s ease both;
  }
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--gold-light);
  }
  .nav-logo span { color: var(--cream); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--cream-dark);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    background: var(--gold);
    color: var(--green-deep);
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.6rem 1.4rem; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,122,74,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200,150,42,0.1) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(200,150,42,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,150,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(200,150,42,0.12); border: 1px solid rgba(200,150,42,0.3);
    padding: 0.4rem 1rem; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold-light); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .hero-headline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05; letter-spacing: -0.02em;
    color: var(--white);
    animation: fadeUp 0.8s 0.35s ease both;
  }
  .hero-headline em {
    font-style: italic; color: var(--gold-light);
  }
  .hero-sub {
    margin-top: 1.5rem;
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.7; color: var(--cream-dark);
    max-width: 480px;
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .hero-actions {
    margin-top: 2.5rem;
    display: flex; gap: 1rem; align-items: center;
    animation: fadeUp 0.8s 0.65s ease both;
  }
  .btn-primary {
    background: var(--gold); color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.9rem 2rem; border: none; cursor: pointer;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,42,0.35); }
  .btn-ghost {
    background: transparent; color: var(--cream);
    font-family: 'Syne', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.04em;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(245,240,232,0.25); cursor: pointer;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--cream); }

  /* INTERACTIVE COMPLIANCE CHECKER */
  .hero-demo {
    background: rgba(26,77,46,0.4);
    border: 1px solid rgba(200,150,42,0.2);
    padding: 2rem;
    backdrop-filter: blur(8px);
    animation: fadeUp 0.8s 0.5s ease both;
    position: relative;
  }
  .hero-demo::before {
    content: 'LIVE DEMO';
    position: absolute; top: -10px; left: 1.5rem;
    background: var(--gold); color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.65rem; letter-spacing: 0.12em;
    padding: 0.15rem 0.6rem;
  }
  .demo-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.04em;
    color: var(--gold-light); margin-bottom: 1.25rem;
    text-transform: uppercase;
  }
  .demo-form { display: flex; flex-direction: column; gap: 0.75rem; }
  .demo-select, .demo-input {
    background: rgba(11,40,24,0.6);
    border: 1px solid rgba(200,150,42,0.25);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    padding: 0.7rem 1rem; outline: none;
    transition: border-color 0.2s;
    appearance: none; -webkit-appearance: none;
    cursor: pointer;
  }
  .demo-select:focus, .demo-input:focus { border-color: var(--gold); }
  .demo-select option { background: var(--green-deep); }
  .demo-btn {
    background: var(--gold); color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.8rem; border: none; cursor: pointer;
    transition: all 0.2s; margin-top: 0.25rem;
  }
  .demo-btn:hover { background: var(--gold-light); }
  .demo-result {
    margin-top: 1rem;
    display: none;
    animation: fadeUp 0.4s ease both;
  }
  .demo-result.visible { display: block; }
  .compliance-items { display: flex; flex-direction: column; gap: 0.5rem; }
  .compliance-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: rgba(11,40,24,0.5);
    border-left: 3px solid transparent;
    font-size: 0.82rem;
  }
  .compliance-item.ok { border-color: #4CAF50; }
  .compliance-item.warn { border-color: var(--gold); }
  .compliance-item.fail { border-color: #E53935; }
  .compliance-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .ok .compliance-dot { background: #4CAF50; }
  .warn .compliance-dot { background: var(--gold); }
  .fail .compliance-dot { background: #E53935; }

  /* HERO CINEMATIC SLIDESHOW */
  .hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: linear-gradient(rgba(200,150,42,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(200,150,42,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .slides-track { position: absolute; inset: 0; }
  .slide {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 55% 45%;
    align-items: center;
    padding: 0 6rem 0 5rem;
    opacity: 0;
    transition: opacity 1.4s ease;
    pointer-events: none;
    z-index: 2;
  }
  .slide.active { opacity: 1; pointer-events: all; }

  /* Per-slide atmospheric backgrounds — gradient overlays sit on top of photos */
  .slide-construction {
    background:
      radial-gradient(ellipse 55% 70% at 88% 45%, rgba(180,100,20,0.28) 0%, transparent 55%),
      radial-gradient(ellipse 65% 80% at 12% 75%, rgba(42,122,74,0.32) 0%, transparent 50%),
      radial-gradient(ellipse 80% 50% at 50% 10%, rgba(11,40,24,0.6) 0%, transparent 60%),
      linear-gradient(148deg, rgba(6,14,7,0.82) 0%, rgba(12,34,18,0.76) 45%, rgba(20,14,0,0.88) 100%),
      url('images/slide-construction.jpg') center / cover no-repeat;
  }
  .slide-crafts {
    background:
      radial-gradient(ellipse 60% 70% at 82% 40%, rgba(140,80,15,0.32) 0%, transparent 55%),
      radial-gradient(ellipse 55% 60% at 10% 75%, rgba(80,40,10,0.28) 0%, transparent 50%),
      radial-gradient(ellipse 75% 45% at 50% 5%, rgba(5,12,6,0.7) 0%, transparent 60%),
      linear-gradient(145deg, rgba(8,6,4,0.80) 0%, rgba(24,13,4,0.75) 45%, rgba(10,21,8,0.85) 100%),
      url('images/slide-crafts.jpg') center / cover no-repeat;
  }
  .slide-fashion {
    background:
      radial-gradient(ellipse 60% 75% at 85% 30%, rgba(15,105,75,0.38) 0%, transparent 55%),
      radial-gradient(ellipse 50% 55% at 8% 80%, rgba(42,122,74,0.25) 0%, transparent 50%),
      radial-gradient(ellipse 70% 40% at 50% 0%, rgba(5,20,12,0.7) 0%, transparent 60%),
      linear-gradient(152deg, rgba(4,12,8,0.80) 0%, rgba(8,28,18,0.74) 50%, rgba(6,15,10,0.86) 100%),
      url('images/slide-fashion.png') center / cover no-repeat;
  }
  .slide-trades {
    background:
      radial-gradient(ellipse 55% 70% at 80% 60%, rgba(12,55,35,0.5) 0%, transparent 55%),
      radial-gradient(ellipse 50% 45% at 18% 25%, rgba(200,150,42,0.12) 0%, transparent 50%),
      radial-gradient(ellipse 75% 45% at 50% 5%, rgba(3,8,5,0.7) 0%, transparent 60%),
      linear-gradient(158deg, rgba(3,8,7,0.82) 0%, rgba(8,18,12,0.76) 50%, rgba(4,10,6,0.88) 100%),
      url('images/slide-mechanics.jpg') center / cover no-repeat;
  }

  /* LEFT: CONTENT */
  .slide-left { padding-right: 2rem; }
  .slide-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
  }
  .slide-badge::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
  .slide-hl {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: 1.06; letter-spacing: -0.025em;
    color: var(--white);
  }
  .slide-hl em { font-style: italic; color: var(--gold-light); }
  .slide-body {
    margin-top: 1.5rem; font-size: 1rem; font-weight: 300;
    line-height: 1.8; color: rgba(232,224,208,0.8); max-width: 430px;
  }
  .slide-cta { margin-top: 2.5rem; display: flex; gap: 1rem; align-items: center; }

  /* RIGHT: SCENE WINDOW */
  .slide-scene {
    display: flex; align-items: center; justify-content: flex-end;
    padding-left: 2rem;
  }
  .scene-window {
    width: 100%; max-width: 360px;
    background: rgba(8,28,16,0.55);
    border: 1px solid rgba(200,150,42,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.75rem;
    position: relative;
  }
  .scene-window::before {
    content: attr(data-tag);
    position: absolute; top: -10px; left: 1.25rem;
    background: var(--gold); color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.15rem 0.65rem;
  }
  .scene-avatar {
    font-size: 3rem; text-align: center; padding: 1.25rem 0 0.75rem;
  }
  .scene-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.75rem auto 1rem;
  }
  .scene-name {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.9rem; color: var(--cream); text-align: center; margin-bottom: 0.2rem;
  }
  .scene-meta {
    font-size: 0.7rem; color: var(--text-muted);
    text-align: center; margin-bottom: 1.5rem; line-height: 1.5;
  }
  .scene-bars { display: flex; flex-direction: column; gap: 0.75rem; }
  .scene-bar-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.25rem; font-size: 0.7rem;
  }
  .scene-bar-label { color: var(--cream-dark); }
  .scene-bar-val { font-weight: 700; font-size: 0.65rem; }
  .scene-bar-val.ok { color: #4CAF50; }
  .scene-bar-val.warn { color: var(--gold-light); }
  .scene-bar-val.fail { color: #EF5350; }
  .scene-bar-track {
    height: 3px; background: rgba(255,255,255,0.07);
    position: relative; overflow: hidden;
  }
  .scene-bar-fill { height: 100%; position: absolute; left: 0; top: 0; border-radius: 2px; }
  .scene-bar-fill.ok { background: #4CAF50; }
  .scene-bar-fill.warn { background: var(--gold-light); }
  .scene-bar-fill.fail { background: #EF5350; }
  .scene-score {
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    background: rgba(200,150,42,0.08);
    border: 1px solid rgba(200,150,42,0.15);
    display: flex; align-items: center; justify-content: space-between;
  }
  .scene-score-label {
    font-family: 'Syne', sans-serif; font-size: 0.62rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  }
  .scene-score-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 1.5rem; color: var(--gold-light); line-height: 1;
  }

  /* INDICATORS */
  .slide-indicators {
    position: absolute; bottom: 2.5rem; left: 5rem;
    display: flex; gap: 0.65rem; align-items: center; z-index: 10;
  }
  .s-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(200,150,42,0.3);
    transition: all 0.4s; cursor: pointer; border: none; padding: 0;
  }
  .s-dot.active { background: var(--gold); width: 28px; border-radius: 3px; }

  /* PROGRESS */
  .slide-progress {
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: rgba(200,150,42,0.08); z-index: 10;
  }
  .slide-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--gold);
    padding: 1.2rem 4rem;
    display: flex; justify-content: center; gap: 5rem;
    overflow: hidden;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 1.8rem; color: var(--green-deep); line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--green-mid); margin-top: 0.2rem;
  }

  /* PROBLEM SECTION */
  .section { padding: 7rem 4rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-tag::after {
    content: ''; flex: 0 0 40px; height: 1px; background: var(--gold);
  }
  .section-headline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1; color: var(--white);
  }
  .section-headline em { font-style: italic; color: var(--gold-light); }

  .problem-grid {
    margin-top: 4rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: rgba(200,150,42,0.1);
  }
  .problem-card {
    background: var(--green-deep);
    padding: 2.5rem;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .problem-card:hover { background: rgba(26,77,46,0.5); }
  .problem-number {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 4rem; line-height: 1;
    color: rgba(200,150,42,0.15);
    position: absolute; top: 1rem; right: 1.5rem;
  }
  .problem-icon { font-size: 2rem; margin-bottom: 1rem; }
  .problem-card h3 {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1rem; letter-spacing: 0.02em;
    color: var(--cream); margin-bottom: 0.75rem;
  }
  .problem-card p { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); }

  /* FEATURES */
  .features-section {
    background: var(--cream);
    padding: 8rem 4rem;
    color: var(--text-dark);
  }
  .features-section .section-tag { color: var(--green-bright); }
  .features-section .section-tag::after { background: var(--green-bright); }
  .features-section .section-headline { color: var(--text-dark); }
  .features-section .section-headline em { color: var(--green-mid); }
  .features-lead {
    margin-top: 1.25rem;
    font-size: 1rem; line-height: 1.7; color: #5A7A62; max-width: 520px;
  }
  .features-bento {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
  }
  .fb-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .fb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
    border-color: rgba(42,122,74,0.25);
  }
  .fb-hero {
    grid-column: span 5;
    background: var(--green-deep);
    min-height: 340px;
    display: flex; flex-direction: column;
  }
  .fb-hero:hover { border-color: rgba(200,150,42,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  .fb-wide { grid-column: span 7; }
  .fb-md { grid-column: span 4; }
  .fb-icon {
    width: 46px; height: 46px;
    border: 1px solid rgba(200,150,42,0.25);
    background: rgba(200,150,42,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.5rem; flex-shrink: 0;
  }
  .fb-hero .fb-icon { background: rgba(200,150,42,0.12); }
  .fb-label {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
  }
  .fb-card h3 {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.6rem;
  }
  .fb-hero h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.2;
  }
  .fb-card p { font-size: 0.82rem; line-height: 1.65; color: #5A7A62; }
  .fb-hero p { color: var(--cream-dark); font-size: 0.88rem; line-height: 1.65; }
  .fb-mockup {
    margin-top: auto; padding-top: 1.5rem;
    border-top: 1px solid rgba(200,150,42,0.15);
  }
  .fb-mockup-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.45rem 0; font-size: 0.72rem; color: var(--cream-dark);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .fb-mockup-row:last-child { border-bottom: none; }
  .fb-mdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .fb-mdot.ok { background: #4CAF50; }
  .fb-mdot.warn { background: var(--gold); }
  .fb-mdot.fail { background: #E53935; }
  .fb-mbar { flex: 1; height: 3px; background: rgba(255,255,255,0.08); position: relative; overflow: hidden; }
  .fb-mbar-fill { height: 100%; position: absolute; left: 0; top: 0; }
  .fb-mbar-fill.ok { background: #4CAF50; width: 85%; }
  .fb-mbar-fill.warn { background: var(--gold); width: 55%; }
  .fb-mbar-fill.fail { background: #E53935; width: 20%; }
  .fb-mstatus { font-size: 0.65rem; flex-shrink: 0; font-weight: 600; }
  .fb-mstatus.ok { color: #4CAF50; }
  .fb-mstatus.warn { color: var(--gold); }
  .fb-mstatus.fail { color: #E53935; }
  .fb-wa-bubble {
    margin-top: 1.25rem;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.2);
    padding: 0.7rem 0.9rem;
    font-size: 0.75rem; font-style: italic; color: #80E89A;
    border-radius: 0 8px 8px 8px;
  }

  /* HOW IT WORKS */
  .how-section { padding: 8rem 4rem; }
  .how-steps {
    margin-top: 5rem;
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .how-connector {
    position: absolute;
    top: 2.75rem; left: 13%; right: 13%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(200,150,42,0.2) 70%, transparent 100%);
    pointer-events: none;
  }
  .how-step {
    padding: 0 1.75rem 2.5rem;
    position: relative;
    border-right: 1px solid rgba(200,150,42,0.1);
  }
  .how-step:last-child { border-right: none; }
  .how-step-top {
    display: flex; flex-direction: column; align-items: flex-start;
    margin-bottom: 1.75rem; position: relative;
  }
  .how-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 5rem; line-height: 1;
    color: rgba(200,150,42,0.07);
    position: absolute; top: -1.5rem; right: 0;
    pointer-events: none; user-select: none;
  }
  .how-icon-wrap {
    width: 56px; height: 56px;
    border: 1px solid rgba(200,150,42,0.3);
    background: rgba(200,150,42,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; position: relative; z-index: 1;
    transition: background 0.25s, border-color 0.25s;
  }
  .how-step:hover .how-icon-wrap { background: rgba(200,150,42,0.15); border-color: var(--gold); }
  .how-step-num {
    margin-top: 0.75rem;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.62rem; letter-spacing: 0.18em;
    color: var(--gold); text-transform: uppercase;
  }
  .how-step h3 {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.95rem; color: var(--cream); margin-bottom: 0.6rem; line-height: 1.35;
  }
  .how-step p { font-size: 0.82rem; line-height: 1.65; color: var(--text-muted); }
  .how-wa {
    margin-top: 1.25rem;
    background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2);
    padding: 0.6rem 0.8rem; font-size: 0.75rem; color: #80E89A; font-style: italic;
  }
  .how-result {
    margin-top: 4rem;
    padding: 1.75rem 2.5rem;
    background: rgba(26,77,46,0.2);
    border: 1px solid rgba(200,150,42,0.15);
    display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  }
  .how-result-label {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); white-space: nowrap; flex-shrink: 0;
  }
  .how-result-items { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .how-result-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--cream-dark);
  }
  .how-result-item::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

  /* PRICING */
  .pricing-section {
    background: linear-gradient(180deg, var(--green-deep) 0%, #071A0F 100%);
    padding: 7rem 4rem;
  }
  .pricing-grid {
    margin-top: 4rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(200,150,42,0.15);
    max-width: 900px; margin-left: auto; margin-right: auto;
    margin-top: 4rem;
  }
  .price-card {
    background: #071A0F;
    padding: 2.5rem;
    position: relative;
    transition: background 0.3s;
  }
  .price-card.featured {
    background: var(--green-mid);
  }
  .price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.6rem; letter-spacing: 0.15em;
    padding: 0.2rem 0.8rem; white-space: nowrap;
  }
  .price-tier {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .price-amount {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 2.5rem; color: var(--white); line-height: 1;
  }
  .price-amount span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
  .price-desc { font-size: 0.82rem; color: var(--text-muted); margin: 0.75rem 0 1.5rem; line-height: 1.5; }
  .price-divider { border: none; border-top: 1px solid rgba(200,150,42,0.15); margin-bottom: 1.5rem; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .price-features li {
    font-size: 0.8rem; color: var(--cream-dark);
    display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.45;
  }
  .price-features li::before { content: '✓'; color: var(--gold-light); flex-shrink: 0; font-weight: 700; }
  .price-btn {
    width: 100%; margin-top: 2rem;
    padding: 0.85rem;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid rgba(200,150,42,0.4);
    background: transparent; color: var(--gold-light);
    cursor: pointer; transition: all 0.2s;
  }
  .price-btn:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
  .price-card.featured .price-btn {
    background: var(--gold); color: var(--green-deep); border-color: var(--gold);
  }
  .price-card.featured .price-btn:hover { background: var(--gold-light); }

  /* TIMELINE */
  .timeline-section { padding: 7rem 4rem; }
  .timeline {
    margin-top: 4rem;
    position: relative;
    padding-left: 3rem;
  }
  .timeline::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(200,150,42,0.1) 100%);
  }
  .timeline-item {
    position: relative; margin-bottom: 3.5rem;
    padding-left: 2rem;
  }
  .timeline-item::before {
    content: ''; position: absolute;
    left: -3.4rem; top: 0.4rem;
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--green-deep);
    transition: background 0.3s;
  }
  .timeline-item:hover::before { background: var(--gold); }
  .timeline-phase {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .timeline-item h3 {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem;
  }
  .timeline-item p { font-size: 0.85rem; line-height: 1.65; color: var(--text-muted); max-width: 600px; }
  .timeline-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
  .chip {
    font-size: 0.72rem; padding: 0.2rem 0.65rem;
    border: 1px solid rgba(200,150,42,0.25); color: var(--cream-dark);
    font-family: 'DM Sans', sans-serif;
  }

  /* CTA */
  .cta-section {
    background: var(--gold);
    padding: 6rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: 'JUSTRA';
    position: absolute; bottom: -2rem; right: -1rem;
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 12rem; color: rgba(11,40,24,0.08);
    line-height: 1; pointer-events: none;
    letter-spacing: -0.05em;
  }
  .cta-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--green-deep); line-height: 1.1;
    position: relative; z-index: 1;
  }
  .cta-section p {
    font-size: 1rem; color: var(--green-mid);
    margin: 1rem 0 2.5rem; max-width: 500px;
    margin-left: auto; margin-right: auto;
    position: relative; z-index: 1;
  }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; position: relative; z-index: 1; }
  .cta-btn-dark {
    background: var(--green-deep); color: var(--gold-light);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 1rem 2.5rem; border: none; cursor: pointer;
    transition: all 0.2s;
  }
  .cta-btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); }
  .cta-btn-outline {
    background: transparent; color: var(--green-deep);
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 1rem 2rem; border: 2px solid var(--green-deep); cursor: pointer;
    transition: all 0.2s;
  }
  .cta-btn-outline:hover { background: rgba(11,40,24,0.08); }

  /* FOOTER */
  footer {
    background: #050F08;
    padding: 3rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(200,150,42,0.1);
  }
  .footer-logo {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 1.3rem; color: var(--gold-light);
  }
  .footer-sub {
    font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem;
    letter-spacing: 0.04em;
  }
  .footer-right { font-size: 0.75rem; color: var(--text-muted); text-align: right; line-height: 1.7; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* WHATSAPP BADGE */
  .wa-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25);
    padding: 0.5rem 1rem; margin-top: 1.5rem;
    font-size: 0.8rem; color: #80E89A;
    font-family: 'DM Sans', sans-serif;
    animation: fadeUp 0.8s 0.8s ease both;
  }
  .wa-badge strong { color: #25D366; }

  /* ── Hamburger button (hidden on desktop) ── */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    /* Nav */
    nav { padding: 1rem 1.5rem; position: relative; }
    .nav-burger { display: flex; }
    .nav-links { display: none; }
    .nav-cta { display: none; }

    /* Mobile nav dropdown */
    nav.nav-open .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(4,12,8,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(200,150,42,0.2);
      padding: 0.5rem 0 1rem;
      z-index: 150;
      gap: 0;
    }
    nav.nav-open .nav-links li {
      border-bottom: 1px solid rgba(200,150,42,0.07);
    }
    nav.nav-open .nav-links li:last-child { border-bottom: none; }
    nav.nav-open .nav-links li a {
      display: block;
      padding: 0.9rem 1.5rem;
      font-size: 0.95rem;
      color: var(--cream);
    }
    nav.nav-open .nav-links li a.active { color: var(--gold-light); }

    /* Sections */
    .hero, .section, .features-section, .how-section, .pricing-section, .timeline-section, .cta-section {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
    .section-inner { padding: 0; }

    /* Hero slider */
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .slide { grid-template-columns: 1fr; padding: 6rem 1.25rem 4rem; }
    .slide-scene { display: none; }
    .slide-indicators { left: 50%; transform: translateX(-50%); }
    .slide-hl { font-size: clamp(2.2rem, 8vw, 3rem); }
    .slide-badge { margin-bottom: 1.25rem; }
    .slide-body { font-size: 0.95rem; }
    .slide-cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .slide-cta a { width: 100%; text-align: center; }

    /* Problem grid */
    .problem-grid { grid-template-columns: 1fr; }

    /* Features bento */
    .features-bento { grid-template-columns: 1fr; }
    .fb-hero, .fb-wide, .fb-md { grid-column: span 1; }
    .fb-hero { min-height: auto; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }

    /* How steps */
    .how-steps { grid-template-columns: 1fr; }
    .how-connector { display: none; }
    .how-step { border-right: none; border-bottom: 1px solid rgba(200,150,42,0.1); padding: 2rem 0; }
    .how-step:last-child { border-bottom: none; }

    /* Stats */
    .stats-strip { gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem 1.25rem; }
    .stat-num { font-size: 2rem; }

    /* CTA section */
    .cta-section h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
    .cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
    .cta-buttons a { width: 100%; max-width: 320px; text-align: center; }

    /* Buttons */
    .btn-primary, .btn-ghost { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

    /* Footer */
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.25rem; }
    .footer-right { text-align: center; font-size: 0.78rem; }
  }

  @media (max-width: 480px) {
    /* Tighten up on small phones */
    .section-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .slide-hl { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    .stats-strip { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
    .problem-card { padding: 1.5rem; }
    .fb-card { padding: 1.5rem; }
    nav { padding: 0.85rem 1rem; }
  }
