    :root {
      --ink: #111318;
      --ink-soft: #3b3f4a;
      --ink-muted: #7c8194;
      --surface: #fefdfb;
      --surface-warm: #f6f3ee;
      --surface-card: #ffffff;
      --accent: #2d5f8a;
      --accent-deep: #1e4468;
      --accent-light: #4a8ec7;
      --accent-glow: rgba(45, 95, 138, 0.08);
      --warm: #c7714a;
      --warm-soft: #f0e2d6;
      --border: #e2ddd5;
      --border-light: #eee9e2;
      --radius: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;

      /* ── Button kleuren ── */
      --btn-bg:       #f07228;
      --btn-hover:    #d95e18;
      --btn-active:   #b84e10;
      --btn-glow:     rgba(240, 114, 40, 0.32);
      --btn-text:     #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
      color: var(--ink);
      background: var(--surface);
      line-height: 1.7;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ============================================================
       NAV
    ============================================================ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: #f7f6f2;
      border-bottom: 1px solid var(--border-light);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.1rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-family: 'Lora', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.03em;
    }
    .logo span { color: var(--accent); }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      font-size: 0.88rem !important;
      font-weight: 600 !important;
      color: var(--btn-text) !important;
      background: var(--btn-bg) !important;
      padding: 0.65rem 1.6rem;
      border-radius: 100px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--btn-hover) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px var(--btn-glow) !important;
    }
    .nav-cta:active {
      background: var(--btn-active) !important;
      transform: translateY(0) scale(0.97) !important;
      box-shadow: none !important;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      max-width: 1280px;
      margin: 0 auto;
      padding: 10rem 3rem 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 92vh;
    }
    .hero-content { max-width: 560px; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 2rem;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--accent);
    }
    .hero h1 {
      font-family: 'Lora', serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      line-height: 1.12;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 1.8rem;
      font-weight: 400;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--ink-soft);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 2.5rem;
    }
    .hero-actions { display: flex; gap: 1rem; align-items: center; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--btn-bg);
      color: var(--btn-text);
      text-decoration: none;
      padding: 1rem 2rem;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--btn-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--btn-glow);
    }
    .btn-primary:active {
      background: var(--btn-active);
      transform: translateY(0) scale(0.97);
      box-shadow: none;
    }
    .btn-primary svg { width: 18px; height: 18px; }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--ink-soft);
      text-decoration: none;
      padding: 1rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .btn-secondary:hover { color: var(--ink); }

    /* Hero visual: photo with cutout overlay */
    .hero-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
      max-height: 600px;
    }
    .hero-photo {
      width: 100%;
      height: 100%;
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
    }
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Cutout card overlaying the photo */
    .hero-cutout {
      position: absolute;
      bottom: -24px;
      left: -32px;
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      padding: 1.8rem 2rem;
      box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
      max-width: 280px;
      z-index: 2;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    }
    .hero-cutout-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 0.5rem;
    }
    .hero-cutout-value {
      font-family: 'Lora', serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 0.3rem;
    }
    .hero-cutout-sub {
      font-size: 0.82rem;
      color: var(--ink-muted);
      line-height: 1.5;
    }
    /* Floating badge top-right */
    .hero-badge {
      position: absolute;
      top: 24px;
      right: -16px;
      background: var(--accent);
      color: white;
      border-radius: var(--radius);
      padding: 0.9rem 1.2rem;
      box-shadow: 0 8px 32px rgba(45, 95, 138, 0.3);
      z-index: 2;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    }
    .hero-badge .code-line {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      opacity: 0.7;
      line-height: 1.6;
    }
    .hero-badge .code-line.highlight {
      opacity: 1;
      color: #a8dff0;
    }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .trust-bar {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 3rem 5rem;
    }
    .trust-inner {
      display: flex;
      gap: 4rem;
      padding: 2.5rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .trust-item {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
    }
    .trust-num {
      font-family: 'Lora', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--accent);
      line-height: 1;
    }
    .trust-text {
      font-size: 0.85rem;
      color: var(--ink-muted);
      line-height: 1.5;
      max-width: 160px;
    }

    /* ============================================================
       PROBLEM SECTION — with offset photo
    ============================================================ */
    .problem {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 3rem;
    }
    .problem-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 4rem;
    }
    .section-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .section-tag::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--accent);
      border-radius: 50%;
      display: block;
    }
    .problem h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      letter-spacing: -0.03em;
      line-height: 1.2;
      font-weight: 500;
    }
    .problem-header-text {
      font-size: 1.05rem;
      color: var(--ink-soft);
      line-height: 1.8;
      font-weight: 300;
      padding-bottom: 0.5rem;
    }

    .problem-showcase {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 2rem;
    }
    /* Photo with cutout for content */
    .problem-photo-wrap {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: visible;
      aspect-ratio: 3/4;
    }
    .problem-photo {
      width: 100%;
      height: 100%;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .problem-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    /* Cutout overlay on the photo */
    .problem-photo-card {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.8rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
      z-index: 2;
      max-width: 220px;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    }
    .problem-photo-card .emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .problem-photo-card p {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.5;
    }

    .problem-cards {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 2rem;
    }
    .p-card {
      background: var(--surface-warm);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .p-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    }
    .p-card h3 {
      font-family: 'Lora', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }
    .p-card p {
      color: var(--ink-soft);
      font-size: 0.95rem;
      line-height: 1.75;
    }
    .p-card-formats {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.2rem;
    }
    .format-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      background: white;
      color: var(--ink-soft);
      border: 1px solid var(--border);
    }
    .p-card-icon {
      position: absolute;
      top: 2rem; right: 2rem;
      width: 48px; height: 48px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .p-card-icon svg { width: 22px; height: 22px; color: var(--accent); }

    /* ============================================================
       APPROACH — 3 big numbered steps with photo
    ============================================================ */
    .approach {
      background: var(--ink);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .approach::before {
      content: '';
      position: absolute;
      top: -40%; right: -20%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(45, 95, 138, 0.3), transparent 70%);
      pointer-events: none;
    }
    .approach-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 7rem 3rem;
      position: relative;
      z-index: 1;
    }
    .approach-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 5rem;
      align-items: end;
    }
    .approach .section-tag { color: var(--accent-light); }
    .approach .section-tag::before { background: var(--accent-light); }
    .approach h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      letter-spacing: -0.03em;
      line-height: 1.2;
      font-weight: 500;
    }
    .approach-header-text {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
      font-weight: 300;
    }
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .a-step {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      transition: background 0.3s;
      position: relative;
    }
    .a-step:hover {
      background: rgba(255,255,255,0.1);
    }
    .a-step-num {
      font-family: 'Lora', serif;
      font-size: 4rem;
      font-weight: 400;
      color: rgba(255,255,255,0.08);
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .a-step h3 {
      font-family: 'Lora', serif;
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }
    .a-step p {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      line-height: 1.75;
    }
    /* Approach photo — spans under grid */
    .approach-photo-row {
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 2rem;
      margin-top: 2rem;
    }
    .approach-photo {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 16/9;
    }
    .approach-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .approach-quote {
      display: flex;
      align-items: center;
      padding: 2rem;
    }
    .approach-quote blockquote {
      font-family: 'Lora', serif;
      font-size: 1.35rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
      letter-spacing: -0.01em;
      border-left: 3px solid var(--accent-light);
      padding-left: 1.5rem;
    }
    .approach-quote cite {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.82rem;
      font-style: normal;
      color: rgba(255,255,255,0.4);
      margin-top: 1rem;
    }

    /* ============================================================
       EXPERIENCE / PROOF — with large photo + overlay card
    ============================================================ */
    .experience {
      max-width: 1280px;
      margin: 0 auto;
      padding: 7rem 3rem;
    }
    .experience-layout {
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 4rem;
      align-items: center;
    }
    .experience-photo-wrap {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: visible;
    }
    .experience-photo {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .experience-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    /* Overlay stat card on photo */
    .experience-overlay {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: var(--accent-deep);
      color: white;
      border-radius: var(--radius-lg);
      padding: 2rem 2.2rem;
      box-shadow: 0 16px 48px rgba(30, 68, 104, 0.35);
      z-index: 2;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    }
    .experience-overlay .big-num {
      font-family: 'Lora', serif;
      font-size: 3rem;
      font-weight: 400;
      line-height: 1;
    }
    .experience-overlay .big-label {
      font-size: 0.8rem;
      font-weight: 500;
      opacity: 0.7;
      margin-top: 0.3rem;
    }

    .experience-content {
      max-width: 460px;
    }
    .experience h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }
    .experience-text {
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    .experience-highlights {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .exp-highlight {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .exp-icon {
      width: 40px; height: 40px;
      flex-shrink: 0;
      background: var(--accent-glow);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .exp-icon svg { width: 18px; height: 18px; color: var(--accent); }
    .exp-highlight p {
      font-size: 0.92rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }
    .exp-highlight strong { color: var(--ink); font-weight: 600; }

    /* ============================================================
       PILOT — warm bg with split layout
    ============================================================ */
    .pilot {
      background: var(--surface-warm);
    }
    .pilot-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 7rem 3rem;
    }
    .pilot-layout {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 4rem;
      align-items: start;
    }
    .pilot-content { max-width: 420px; }
    .pilot h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      font-weight: 500;
    }
    .pilot-text {
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    .pilot-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .pilot-card {
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
    }
    .pilot-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .pilot-card-icon {
      width: 52px; height: 52px;
      background: var(--accent-glow);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .pilot-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
    .pilot-card h3 {
      font-family: 'Lora', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .pilot-card p {
      color: var(--ink-soft);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ============================================================
       CTA — full-width with photo background
    ============================================================ */
    .cta-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 4rem 3rem 7rem;
    }
    .cta-box {
      background: var(--ink);
      border-radius: var(--radius-xl);
      padding: 5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%; right: -30%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(45, 95, 138, 0.25), transparent 70%);
      pointer-events: none;
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -40%; left: -20%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(199, 113, 74, 0.15), transparent 70%);
      pointer-events: none;
    }
    .cta-content {
      position: relative; z-index: 1;
    }
    .cta-content h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 500;
      color: white;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .cta-content p {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--btn-bg);
      color: var(--btn-text);
      text-decoration: none;
      padding: 1.1rem 2.2rem;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-cta:hover {
      background: var(--btn-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--btn-glow);
    }
    .btn-cta:active {
      background: var(--btn-active);
      transform: translateY(0) scale(0.97);
      box-shadow: none;
    }
    .btn-cta svg { width: 18px; height: 18px; }
    .cta-contact-alt {
      margin-top: 1rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
    }
    .cta-contact-alt a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
    }
    /* CTA photo */
    .cta-photo {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 1/1;
      position: relative;
      z-index: 1;
    }
    .cta-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* ============================================================
       CONTACT FORM
    ============================================================ */
    .contact-form-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 3rem 7rem;
    }
    .contact-form-wrapper {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-form-intro { max-width: 400px; }
    .contact-form-intro h2 {
      font-family: 'Lora', serif;
      font-size: 1.8rem;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .contact-form-intro p {
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    /* Logo in contactsectie */
    .contact-logo {
      margin-top: 2.5rem;
    }
    .contact-logo-img {
      width: 60%;
      max-width: 240px;
      min-width: 60px;
      height: auto;
      display: block;
      opacity: .82;
    }
    .contact-direct {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .contact-direct-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--ink-soft);
    }
    .contact-direct-item svg {
      width: 18px; height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }
    .contact-direct-item a {
      color: var(--ink);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }
    .contact-direct-item a:hover { color: var(--accent); }

    .contact-form {
      background: var(--surface-warm);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .form-group.full {
      grid-column: 1 / -1;
    }
    .form-group label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: 0.02em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.92rem;
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface-card);
      color: var(--ink);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--ink-muted);
      font-weight: 300;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237c8194' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }
    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--btn-bg);
      color: var(--btn-text);
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      margin-top: 0.5rem;
    }
    .form-submit:hover {
      background: var(--btn-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--btn-glow);
    }
    .form-submit:active {
      background: var(--btn-active);
      transform: translateY(0) scale(0.97);
      box-shadow: none;
    }
    .form-submit svg { width: 18px; height: 18px; }
    .form-note {
      font-size: 0.78rem;
      color: var(--ink-muted);
      margin-top: 1rem;
      line-height: 1.5;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      border-top: 1px solid var(--border);
      max-width: 1280px;
      margin: 0 auto;
      padding: 2.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--ink-muted);
      font-size: 0.85rem;
    }
    footer a {
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.2s;
    }
    footer a:hover { color: var(--ink); }
    .footer-links { display: flex; gap: 2rem; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero, .problem-header, .problem-showcase,
      .approach-grid, .approach-photo-row,
      .experience-layout, .pilot-layout,
      .cta-box, .contact-form-wrapper {
        grid-template-columns: 1fr;
      }
      .hero { padding-top: 8rem; min-height: auto; }
      .hero-visual { max-height: 500px; }
      .trust-inner { flex-wrap: wrap; gap: 2rem; }
      .pilot-cards { grid-template-columns: 1fr 1fr; }
      .approach-grid { grid-template-columns: 1fr; }
      .nav-inner, .problem, .approach-inner,
      .experience, .pilot-inner, .cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
      .cta-box { padding: 3rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
    }
    @media (max-width: 640px) {
      .pilot-cards { grid-template-columns: 1fr; }
      .nav-links a:not(.nav-cta) { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    @media (prefers-reduced-motion: no-preference) {
      .hero-content, .hero-visual, .trust-item,
      .p-card, .a-step, .pilot-card,
      .experience-photo-wrap, .experience-content {
        opacity: 0;
        transform: translateY(24px);
        animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }
      .hero-content { animation-delay: 0.1s; }
      .hero-visual { animation-delay: 0.25s; }
      .trust-item:nth-child(1) { animation-delay: 0.1s; }
      .trust-item:nth-child(2) { animation-delay: 0.18s; }
      .trust-item:nth-child(3) { animation-delay: 0.26s; }
      .p-card:nth-child(1) { animation-delay: 0.05s; }
      .p-card:nth-child(2) { animation-delay: 0.15s; }
      .a-step:nth-child(1) { animation-delay: 0.05s; }
      .a-step:nth-child(2) { animation-delay: 0.13s; }
      .a-step:nth-child(3) { animation-delay: 0.21s; }
      .pilot-card:nth-child(1) { animation-delay: 0.05s; }
      .pilot-card:nth-child(2) { animation-delay: 0.13s; }
      .pilot-card:nth-child(3) { animation-delay: 0.21s; }
      .pilot-card:nth-child(4) { animation-delay: 0.29s; }

      @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
      }

      @keyframes fadeInCard {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      .hero-cutout {
        opacity: 0;
        animation: fadeInCard 0.6s 0.6s ease forwards;
      }
      .hero-badge {
        opacity: 0;
        animation: fadeInCard 0.6s 0.8s ease forwards;
      }

      /* Hover float: cards lift when hovering parent photo area */
      .hero-visual:hover .hero-cutout {
        transform: translate(4px, -8px) rotate(-0.8deg);
        box-shadow: 0 18px 56px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
      }
      .hero-visual:hover .hero-badge {
        transform: translate(-3px, -6px) rotate(0.6deg);
        box-shadow: 0 14px 44px rgba(45, 95, 138, 0.35);
      }
      .hero-cutout:hover {
        transform: translate(4px, -8px) rotate(-0.8deg) !important;
        box-shadow: 0 18px 56px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06) !important;
      }
      .hero-badge:hover {
        transform: translate(-3px, -6px) rotate(0.6deg) !important;
        box-shadow: 0 14px 44px rgba(45, 95, 138, 0.35) !important;
      }
      .problem-photo-wrap:hover .problem-photo-card,
      .problem-photo-card:hover {
        transform: translate(-4px, -7px) rotate(0.5deg);
        box-shadow: 0 14px 48px rgba(0,0,0,0.12);
      }
      .experience-photo-wrap:hover .experience-overlay,
      .experience-overlay:hover {
        transform: translate(-5px, -8px) rotate(-0.6deg);
        box-shadow: 0 22px 56px rgba(30, 68, 104, 0.4);
      }
    }
