    /* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
    :root {
      /* Lipio — sage + warm gold + terracotta */
      --bg: #FAFAF7;
      --bg-warm: #F5F0E8;
      --bg-dark: #0D100D;
      --surface: #FFFFFF;
      --surface-alt: #EDE8DF;
      --text: #1A1E1A;
      --text-secondary: #4A5248;
      --muted: #7A8278;
      --primary: #2D5A3F;
      --primary-light: #4A8A62;
      --primary-dark: #1B3D2A;
      --accent: #C8875A;
      --accent-light: #E4A878;
      --accent-soft: #F2DBC8;
      --accent-gold: #D4A853;
      --accent-rose: #D4726A;
      --border: #E0DDD5;
      --border-light: #F0ECE5;

      /* Typography */
      --font-display: 'Instrument Serif', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, sans-serif;

      /* Spacing */
      --section-pad: clamp(3.5rem, 8vw, 6rem);
      --container: min(1200px, 88vw);

      /* Radii */
      --radius-sm: 6px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --radius-pill: 999px;

      /* Transitions */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    /* ═══════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html {
      scroll-behavior: auto; /* Lenis handles this */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }

    /* Focus ring */
    :focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ═══════════════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════════════ */
    h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

    h1 {
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    h2 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      line-height: 1.25;
    }

    .label {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      display: inline-block;
      padding: 0.4rem 1rem;
      border: 1px solid rgba(45, 90, 63, 0.2);
      border-radius: var(--radius-pill);
    }

    /* ═══════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════ */
    .container {
      width: var(--container);
      margin: 0 auto;
    }

    section {
      padding: var(--section-pad) 0;
    }

    /* ═══════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.25rem 0;
      transition: all 0.5s var(--ease-out);
    }

    /* Nav on hero - dark text on sage bg, already works */

    .nav.scrolled {
      background: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.9rem 0;
    }

    .nav-inner {
      width: var(--container);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: inline-flex;
      align-items: baseline;
      text-decoration: none;
      position: relative;
    }

    .nav-logo .logo-text {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: -0.03em;
      color: var(--primary-dark);
      line-height: 1;
    }

    .nav-logo .logo-io {
      font-style: italic;
      position: relative;
    }

    .nav-logo .logo-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--accent-rose);
      border-radius: 50%;
      margin-left: 2px;
      vertical-align: super;
      position: relative;
      top: -2px;
    }

    .nav-logo:hover .logo-dot {
      animation: logoPulse 0.6s ease-in-out;
    }

    @keyframes logoPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.6); }
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 0.3s var(--ease-out);
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    /* Dropdown menus */
    .nav-links > li {
      position: relative;
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 220px;
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 0.5rem;
      box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
      z-index: 100;
      list-style: none;
    }

    .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 8px;
      background: #fff;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .nav-links > li:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown li a {
      display: block;
      padding: 0.5rem 1.25rem;
      font-size: 0.8125rem !important;
      font-weight: 400 !important;
      letter-spacing: 0.01em !important;
      text-transform: none !important;
      color: var(--text) !important;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }

    .nav-dropdown li a::after { display: none !important; }

    .nav-dropdown li a:hover {
      background: var(--bg-warm);
      color: var(--accent-green) !important;
    }

    /* Expandable dropdown items */
    .nav-dropdown--expandable {
      min-width: 280px;
      padding: 0.35rem;
    }

    .nav-dd-item {
      border-radius: 12px;
      transition: background 0.2s ease;
    }

    .nav-dd-item:hover,
    .nav-dd-item.expanded {
      background: var(--bg-warm);
    }

    .nav-dd-title {
      display: block;
      padding: 0.6rem 1rem;
      font-size: 0.8125rem !important;
      font-weight: 500 !important;
      letter-spacing: 0.01em !important;
      text-transform: none !important;
      color: var(--text) !important;
      cursor: pointer;
      transition: color 0.2s;
    }

    .nav-dd-title::after { display: none !important; }

    .nav-dd-item.expanded .nav-dd-title {
      color: var(--primary) !important;
    }

    .nav-dd-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
      font-size: 0.75rem;
      line-height: 1.6;
      color: var(--text-secondary);
      padding: 0 1rem;
    }

    .nav-dd-item.expanded .nav-dd-detail {
      max-height: 120px;
      padding: 0 1rem 0.75rem;
    }

    @media (max-width: 768px) {
      /* Override desktop hover-transform that touch can trigger on mobile */
      .nav-dropdown,
      .nav-links > li:hover .nav-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0.25rem 0 0.5rem 0.75rem;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
      }
      .nav-dropdown::before { display: none; }
      .nav-dropdown li a { padding: 0.5rem 0.75rem; }

      .nav-dropdown--expandable {
        min-width: 0;
        padding: 0.25rem 0;
      }
      .nav-dd-item,
      .nav-dd-item:hover {
        background: transparent !important;
        max-width: 100%;
        box-sizing: border-box;
      }
      .nav-dd-item.expanded {
        background: var(--bg-warm) !important;
        border-radius: 12px;
      }
      .nav-dd-title {
        padding: 0.625rem 0.875rem;
        cursor: pointer;
        position: relative;
        font-size: 0.9375rem !important;
      }
      .nav-dd-title::after,
      .nav-dd-title:hover::after,
      .nav-links a.nav-dd-title::after,
      .nav-links a.nav-dd-title:hover::after {
        content: "+" !important;
        position: absolute !important;
        right: 0.875rem !important;
        left: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        font-size: 1.125rem !important;
        font-weight: 300 !important;
        color: var(--text-secondary) !important;
        transition: none !important;
        pointer-events: none !important;
        display: inline !important;
      }
      .nav-dd-item.expanded .nav-dd-title::after,
      .nav-dd-item.expanded .nav-dd-title:hover::after {
        content: "−" !important;
        color: var(--accent-green) !important;
      }
      /* Collapsed by default; expand on click */
      .nav-dd-detail {
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 0.875rem;
        font-size: 0.8125rem;
        line-height: 1.55;
        color: var(--text-secondary);
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
      .nav-dd-item.expanded .nav-dd-detail {
        max-height: 320px;
        padding: 0 0.875rem 0.75rem;
      }
    }

    /* Toast */
    .toast-coming-soon {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--text);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius-pill);
      font-size: 0.875rem;
      font-weight: 500;
      z-index: 9999;
      opacity: 0;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }
    .toast-coming-soon.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .nav-cta {
      background: #111;
      color: #fff !important;
      padding: 0.6rem 1.5rem;
      border-radius: 0;
      border: 1px solid #111;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 1rem;
      font-style: normal;
      letter-spacing: -0.01em;
      text-transform: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: #000;
      color: #fff !important;
    }

    .nav-mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
    }

    .nav-mobile-toggle span {
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: all 0.3s;
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 1.5rem 5vw 8rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100vw;
        box-sizing: border-box;
      }
      .nav-links.open > li {
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        flex-shrink: 0;
      }
    }

    /* ═══════════════════════════════════════
       HERO — Cinematic scroll-story
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background: #B8C5B4;
      perspective: 1400px;
    }

    /* ── Floating design elements ── */
    @keyframes floatA {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-11px); }
    }
    @keyframes floatB {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-8px); }
    }
    @keyframes floatFadeIn {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Kort 1 — patientresultat */
    .hero-float-card {
      position: absolute;
      top: clamp(7rem, 18vh, 13rem);
      left: clamp(3rem, 6vw, 7rem);
      z-index: 4;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 0.875rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: 60px;
      padding: 0.75rem 1.5rem 0.75rem 0.75rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      opacity: 0;
      animation:
        floatFadeIn 0.9s 1.2s cubic-bezier(0.16,1,0.3,1) forwards,
        floatA 5.5s 2.1s ease-in-out infinite;
    }
    .hfc-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(0,0,0,0.06);
    }
    .hfc-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .hfc-body {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .hfc-stat {
      font-family: var(--font-display);
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--primary);
      line-height: 1;
    }
    .hfc-label {
      font-size: 0.75rem;
      color: var(--text-secondary);
      letter-spacing: 0.01em;
    }
    .hfc-body { transition: opacity 0.35s ease; }
    .hfc-avatar img { transition: opacity 0.35s ease; }
    .hfc-check {
      width: 22px; height: 22px;
      flex-shrink: 0;
      margin-left: 0.25rem;
    }
    .hfc-check svg { width: 100%; height: 100%; }

    /* Kort 2 — läkarvård-badge */
    .hero-float-badge {
      position: absolute;
      top: clamp(7rem, 18vh, 13rem);
      right: clamp(3rem, 6vw, 7rem);
      z-index: 4;
      pointer-events: auto;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255,255,255,0.93);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 16px;
      padding: 0.65rem 1rem 0.65rem 0.65rem;
      box-shadow: 0 8px 32px -4px rgba(20,45,30,0.2), 0 2px 8px rgba(20,45,30,0.08);
      opacity: 0;
      animation: floatFadeIn 0.9s 1.6s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hfb-icon {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: #204130;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .hfb-label {
      display: block;
      font-size: 0.625rem;
      font-weight: 600;
      color: #6b8c7a;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 2px;
    }
    .hfb-text {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: #1a3328;
      letter-spacing: -0.01em;
      white-space: nowrap;
      line-height: 1;
    }
    .hero-float-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px -6px rgba(20,50,30,0.22), 0 3px 10px rgba(20,50,30,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* ── Floating elements — desktop only ── */
    @media (max-width: 899px) {
      .hero-float-card, .hero-float-badge,
      .hero-text-right, .hero-text-converted { display: none; }
    }

    /* ── Hero bg ── */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    /* Mobil: originalbild */
    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 70% center;
      animation: heroImgScale 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes heroImgScale {
      0%   { opacity: 0; transform: scale(1.08); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* Desktop: video — dold på mobil */
    .hero-bg-video {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 65% center;
      opacity: 0;
      animation: heroVideoFade 1.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes heroVideoFade {
      0%   { opacity: 0; transform: scale(1.04); }
      100% { opacity: 1; transform: scale(1); }
    }

    @media (min-width: 900px) {
      .hero-bg-img   { display: none; }
      .hero-bg-video { display: block; }
    }

    /* Mobil: original sage-gradient */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(184,197,180,0.85) 0%, rgba(184,197,180,0.5) 35%, rgba(184,197,180,0.1) 55%, transparent 70%),
        linear-gradient(180deg, rgba(184,197,180,0.2) 0%, transparent 20%, transparent 80%, rgba(184,197,180,0.3) 100%);
      pointer-events: none;
    }

    /* Mobil: original hero-content */
    .hero-content {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 clamp(2rem, 6vw, 6rem);
    }

    /* ── Desktop overrides (min-width: 900px) ── */
    @media (min-width: 900px) {
      .hero { height: 100vh; min-height: 0; }

      .hero-bg video { object-position: 65% center; }

      .hero-bg::after {
        background:
          linear-gradient(to top, rgba(13,16,13,0.62) 0%, rgba(13,16,13,0.18) 38%, transparent 60%),
          linear-gradient(to right, rgba(184,197,180,0.45) 0%, transparent 48%);
      }

      .hero-content {
        position: absolute;
        inset: 0;
        min-height: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: clamp(14rem, 28vh, 18rem) clamp(3rem, 6vw, 7rem) 0;
      }
    }

    /* Höger text — desktop only */
    .hero-text-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: clamp(3rem, 6vw, 7rem);
      z-index: 2;
      max-width: 400px;
      text-align: right;
      pointer-events: none;
    }
    .hero-right-line {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: #fff;
      font-weight: 400;
      opacity: 0;
      transform: translateY(28px);
    }
    .hero-right-line em { font-style: italic; color: rgba(255,255,255,0.65); }
    .hero-badge {
      display: none;
    }
    @media (min-width: 900px) {
      .hero-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: clamp(2rem, 4vh, 3.5rem);
        right: clamp(2rem, 5vw, 8rem);
        width: clamp(128px, 9.5vw, 158px);
        height: clamp(128px, 9.5vw, 158px);
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.22);
        box-shadow: 0 4px 24px rgba(0,0,0,0.1);
        z-index: 4;
        opacity: 0;
        gap: 4px;
        animation: fadeUp 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      .hero-badge-check {
        width: 22px;
        height: 22px;
        opacity: 0.9;
      }
      .hero-badge-check circle,
      .hero-badge-check path { stroke: rgba(255,255,255,0.9); }
      .hero-badge-num {
        font-family: var(--font-display);
        font-size: clamp(2.4rem, 3.4vw, 3rem);
        font-style: italic;
        font-weight: 400;
        color: #fff;
        line-height: 0.9;
        letter-spacing: -0.03em;
      }
      .hero-badge-sub {
        font-family: var(--font-body);
        font-size: 0.625rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.4;
      }
    }

    .hero-right-sub {
      display: block;
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      letter-spacing: -0.01em;
      margin-top: 0.75rem;
      opacity: 0;
    }

    /* Konverterad vänstertext — desktop only */
    .hero-text-converted {
      position: absolute;
      bottom: clamp(4rem, 8vh, 6rem);
      left: clamp(3rem, 6vw, 7rem);
      z-index: 2;
      max-width: 460px;
      opacity: 0;
      pointer-events: none;
    }
    .hero-text-converted p {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 1.7vw, 1.5rem);
      line-height: 1.4;
      color: #fff;
      font-weight: 400;
      text-wrap: balance;
    }

    /* Recept Online + Sök vård — steg 3, desktop only */
    .hero-recept-group {
      position: absolute;
      top: 50%;
      transform: translateY(-20%);
      left: clamp(3rem, 6vw, 7rem);
      z-index: 2;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      pointer-events: auto;
    }
    .hero-social-proof {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .hero-stars {
      color: #f5c842;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
    }
    .hero-social-rotator {
      display: grid;
    }
    .hero-social-text {
      grid-area: 1 / 1;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      letter-spacing: -0.01em;
      white-space: nowrap;
      opacity: 0;
    }
    .hero-recept-btns {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-recept-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.5rem;
      background: #fff;
      border: none;
      border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      color: #1a3328;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .hero-recept-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(0,0,0,0.14);
    }
    .hero-recept-cta--green {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 2px 16px rgba(45,90,63,0.25);
    }
    .hero-recept-cta--green:hover {
      background: var(--primary-dark);
      box-shadow: 0 6px 28px rgba(45,90,63,0.35);
    }
    @media (max-width: 899px) {
      .hero-recept-group { display: none; }
    }

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

    .hero h1 {
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      line-height: 0.94;
      letter-spacing: -0.03em;
      color: var(--text);   /* mobil: mörk text på sage */
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }
    @media (min-width: 900px) {
      .hero h1 {
        font-size: clamp(2.4rem, 4.2vw, 4rem);
        color: #fff;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
      }
      .hero-text { display: none; }
      #heroConverted { opacity: 1; pointer-events: auto; }
    }

    .hero-word {
      display: inline-block;
      overflow: hidden;
      padding-top: 0.15em;
      margin-top: -0.15em;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hero-word-inner {
      display: inline-block;
      animation: wordSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-word:nth-child(2) .hero-word-inner { animation-delay: 0.12s; }
    .hero-word:nth-child(3) .hero-word-inner { animation-delay: 0.24s; }

    @keyframes wordSlideUp {
      0% { transform: translateY(115%); }
      100% { transform: translateY(0); }
    }

    .hero h1 em {
      font-style: italic;
      color: rgba(255,255,255,0.65);
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(25px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: clamp(1.1rem, 3.6vw, 1.4rem);
      font-weight: 400;
      color: rgba(255,255,255,0.95);
      line-height: 1.4;
      margin-bottom: 2.5rem;
      max-width: 460px;
      text-wrap: balance;
      animation: fadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @media (min-width: 900px) {
      .hero-subtitle {
        display: none;
      }
    }

    .hero-pills {
      display: flex;
      gap: 0.625rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.875rem;
      border-radius: 100px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .hero-pill svg {
      opacity: 0.7;
      flex-shrink: 0;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero .btn-primary {
      padding: 1.0625rem 2.5rem;
      font-size: 0.875rem;
    }

    .app-store-badge svg {
      height: 44px;
      width: auto;
      opacity: 0.85;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .app-store-badge:hover svg {
      opacity: 1;
      transform: scale(1.03);
    }

    /* ── Review bubbles ── */
    /* ── Social proof section (below trust bar) ── */
    .social-proof {
      padding: 2.5rem 0;
      background: var(--bg);
    }

    .social-proof-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .hero-review {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      padding: 0.75rem 1.25rem;
      border-radius: 60px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      opacity: 1;
      max-width: 320px;
    }

    .hero-review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }

    .hero-review-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-review-text {
      font-size: 0.9375rem;
      color: var(--text);
      line-height: 1.35;
      font-weight: 500;
    }

    .hero-review-text strong {
      display: block;
      font-size: 0.8125rem;
      color: var(--text-secondary);
      font-weight: 500;
      letter-spacing: 0.01em;
      margin-top: 0.15rem;
    }

    /* ── Medication showcase ── */
    .hero-meds {
      position: absolute;
      z-index: 3;
      right: clamp(2rem, 5vw, 8rem);
      top: 42%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(3rem, 5vw, 5rem);
      pointer-events: none;
    }

    .hero-med {
      --med-tilt: 0deg;
      --med-float-distance: 12px;
      --med-float-duration: 7.2s;
      --med-float-delay: 0s;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      position: relative;
      padding: 0;
      color: var(--text);
      opacity: 0;
      transform: translateY(26px) scale(0.92);
      transform-origin: center center;
      will-change: transform, opacity;
      transition: none;
    }

    .hero-med-label {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      white-space: nowrap;
      color: rgba(255,255,255,0.95);
      text-shadow: 0 2px 12px rgba(0,0,0,0.3);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .hero-med:nth-child(1) {
      --med-tilt: 0deg;
      --med-float-distance: 14px;
      --med-float-duration: 7.8s;
      --med-float-delay: -0.4s;
    }

    .hero-med:nth-child(2) {
      --med-tilt: 0deg;
      --med-float-distance: 11px;
      --med-float-duration: 6.6s;
      --med-float-delay: -2.1s;
    }

    .hero-med:nth-child(3) {
      --med-tilt: 0deg;
      --med-float-distance: 9px;
      --med-float-duration: 8.4s;
      --med-float-delay: -3.2s;
    }

    .hero-med.is-visible {
      animation: medFadeIn 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-med.is-active .hero-med-img,
    .hero-med.is-active .hero-med-name {
      animation-play-state: running;
    }

    @keyframes medFadeIn {
      0% { opacity: 0; transform: translateY(26px) scale(0.92); filter: blur(8px); }
      55% { opacity: 0.72; }
      100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    }

    .hero-med-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-style: italic;
      letter-spacing: -0.01em;
      white-space: nowrap;
      position: absolute;
      bottom: -2rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.85);
      text-shadow: 0 1px 8px rgba(0,0,0,0.3);
      will-change: transform, opacity;
    }

    .hero-med-img {
      width: 320px;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15)) saturate(0.85);
      transform-origin: center center;
      transform-style: preserve-3d;
      will-change: transform, filter;
    }

    @keyframes heroMedFloat {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12)) saturate(0.88);
      }
      25% {
        transform: translate3d(10px, calc(var(--med-float-distance) * -0.55), 0) rotate(0deg) scale(1.02);
      }
      50% {
        transform: translate3d(-6px, calc(var(--med-float-distance) * -1), 0) rotate(0deg) scale(1.035);
        filter: drop-shadow(0 18px 34px rgba(0,0,0,0.18)) saturate(0.98);
      }
      75% {
        transform: translate3d(8px, calc(var(--med-float-distance) * -0.35), 0) rotate(0deg) scale(1.015);
      }
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12)) saturate(0.88);
      }
    }

    @keyframes heroMedCaption {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.78;
      }
      50% {
        transform: translateX(-50%) translateY(-6px);
        opacity: 1;
      }
    }

    .hero-med-img--pill {
      width: 110px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12)) saturate(0.7) brightness(0.95);
    }

    @media (max-width: 900px) {
      .hero-meds {
        display: none;
      }
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fadeUp 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-scroll span {
      font-size: 0.5625rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-secondary);
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: var(--text-secondary);
      opacity: 0.3;
      position: relative;
      overflow: hidden;
    }

    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 15px;
      background: var(--primary);
      animation: scrollDrop 1.8s ease-in-out infinite;
    }

    @keyframes scrollDrop {
      0% { top: -15px; }
      50% { top: 40px; }
      100% { top: -15px; }
    }

    @media (max-width: 899px) {
      .hero h1 { font-size: clamp(2.8rem, 12vw, 5rem); color: #fff; text-align: center; }
      .hero-text { max-width: 100%; text-align: center; }
      .hero-subtitle { margin-left: auto; margin-right: auto; text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-content { text-align: center; }
      .hero .btn-primary {
        background: var(--primary);
        border-color: var(--primary);
        padding: 1.1rem 2.25rem;
        font-size: 1rem;
        border-radius: 14px;
      }
    }

    @media (min-width: 900px) {
      .hero-mobile-only { display: none; }
    }

    /* ═══════════════════════════════════════
       FLOATING CTA
    ═══════════════════════════════════════ */
    .floating-cta {
      position: fixed;
      bottom: 2.5rem;
      left: 2.5rem;
      z-index: 998;
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      pointer-events: none;
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }

    .floating-cta.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .floating-cta a {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 2rem;
      background: rgba(13, 16, 13, 0.92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      color: #fff;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-decoration: none;
      border-radius: 0;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow:
        0 24px 48px rgba(0,0,0,0.15),
        0 4px 12px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.06);
      transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
      position: relative;
      overflow: hidden;
    }

    .floating-cta a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
      transition: left 0.8s ease;
    }

    .floating-cta a:hover::before {
      left: 120%;
    }

    .floating-cta a:hover {
      background: rgba(13, 16, 13, 0.97);
      border-color: rgba(255,255,255,0.15);
      box-shadow:
        0 32px 64px rgba(0,0,0,0.2),
        0 8px 20px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
      transform: translateY(-3px);
    }

    .floating-cta .float-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-rose);
      border-radius: 50%;
      flex-shrink: 0;
      animation: floatDotPulse 2s ease-in-out infinite;
    }

    @keyframes floatDotPulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,114,106,0.4); }
      50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(212,114,106,0); }
    }

    .floating-cta .float-arrow {
      width: 40px;
      height: auto;
      opacity: 0.95;
      transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
      object-fit: contain;
    }

    .floating-cta a:hover .float-arrow {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .floating-cta { left: 1rem; bottom: 1.25rem; right: 1rem; }
      .floating-cta a { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; font-size: 0.875rem; }
      .chat-widget { display: none !important; }
    }

    /* ═══════════════════════════════════════
       CHAT WIDGET
    ═══════════════════════════════════════ */
    .chat-widget {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
      pointer-events: none;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .chat-widget.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* FAB — premium pill with label */
    .chat-fab {
      height: 48px;
      padding: 0 1.25rem 0 1rem;
      border-radius: 999px;
      background: var(--text);
      border: none;
      color: var(--bg);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      text-decoration: none;
    }

    .chat-fab:hover {
      background: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(45, 90, 63, 0.25), 0 2px 6px rgba(0,0,0,0.06);
    }

    .chat-fab svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .chat-widget {
        right: 1rem;
        bottom: 6.75rem;
      }
    }

    @media (max-width: 600px) {
      .chat-widget {
        right: 1rem;
        bottom: 6.5rem;
      }
      .floating-cta { bottom: 5rem; left: 1rem; }
    }

    /* ═══════════════════════════════════════
       BUTTONS — angular, animated corners
    ═══════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.9375rem 2rem;
      border-radius: 0;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      border: none;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: #fff;
    }

    .btn-primary:active {
      transform: scale(0.98);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background: var(--text);
      color: var(--bg);
      border-color: var(--text);
    }

    .btn-arrow {
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      width: 14px;
      height: 14px;
    }

    .btn:hover .btn-arrow { transform: translateX(4px); }

    /* ═══════════════════════════════════════
       TRUST BAR
    ═══════════════════════════════════════ */
    .trust-bar {
      padding: 2rem 0;
      background: var(--text);
      overflow: hidden;
    }

    .trust-bar-inner {
      display: flex;
      align-items: center;
      gap: 4rem;
      animation: marquee 25s linear infinite;
      width: max-content;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: rgba(255,255,255,0.5);
      font-size: 0.8125rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .trust-item svg {
      width: 16px;
      height: 16px;
      color: var(--accent-gold);
      flex-shrink: 0;
    }

    .trust-separator {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════
       ABOUT / INTRO
    ═══════════════════════════════════════ */
    .about {
      background: var(--bg-warm);
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -15%;
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(circle, rgba(45, 90, 63, 0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .about::after {
      content: '';
      position: absolute;
      bottom: -20%;
      right: -10%;
      width: 40vw;
      height: 40vw;
      max-width: 500px;
      max-height: 500px;
      background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-text .label { margin-bottom: 1rem; }
    .about-text h2 { margin-bottom: 1.5rem; }

    .about-text p {
      color: var(--text-secondary);
      max-width: 480px;
      margin-bottom: 1.25rem;
    }

    .about-visual {
      position: relative;
      height: clamp(450px, 60vh, 650px);
    }

    .about-image-frame {
      aspect-ratio: 3 / 4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-warm);
    }

    /* Dual portrait convergence */
    .about-portraits {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
    }

    .about-portrait {
      position: absolute;
      width: 100%;
      height: 60%;
      overflow: hidden;
    }

    .about-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }

    .about-portrait--woman {
      top: -15%;
      will-change: transform, opacity;
    }

    .about-portrait--man {
      bottom: -15%;
      will-change: transform, opacity;
    }

    .about-portrait--woman::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, var(--bg-warm) 100%);
      pointer-events: none;
    }

    .about-portrait--man::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, transparent 40%, var(--bg-warm) 100%);
      pointer-events: none;
    }

    /* Floating data cards over portraits */
    .about-float-card {
      position: absolute;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 1rem 1.25rem;
      border-radius: 12px;
      box-shadow:
        0 12px 40px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04);
      z-index: 10;
      will-change: transform;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .about-float-card--weight {
      top: 12%;
      right: -10%;
    }

    .about-float-card--bmi {
      bottom: 18%;
      left: -8%;
    }

    .float-card-label {
      font-family: var(--font-body);
      font-size: 0.625rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 0.35rem;
    }

    .float-card-value {
      font-family: var(--font-display);
      font-size: 1.75rem;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .float-card-value .unit {
      font-size: 0.5em;
      color: var(--text-secondary);
      font-style: italic;
      margin-left: 2px;
    }

    .float-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 0.4rem;
      padding: 3px 8px;
      border-radius: 100px;
      font-size: 0.5625rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .float-card-badge--green {
      background: rgba(45,90,63,0.1);
      color: var(--primary);
    }

    .float-card-badge--gold {
      background: rgba(212,168,83,0.12);
      color: #B8922E;
    }

    .float-card-badge .badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: currentColor;
    }

    .float-card-range {
      display: flex;
      gap: 3px;
      margin-top: 0.5rem;
      align-items: center;
    }

    .float-card-range span {
      height: 3px;
      border-radius: 2px;
      flex: 1;
    }

    .float-card-range .range-active { background: var(--primary); }
    .float-card-range .range-mid { background: var(--accent-gold); opacity: 0.4; }
    .float-card-range .range-inactive { background: var(--border); }

    .float-card-range-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 0.25rem;
      font-size: 0.5rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    @media (max-width: 768px) {
      .about-float-card--weight { right: -4%; top: 8%; }
      .about-float-card--bmi { left: -4%; bottom: 14%; }
      .about-float-card { padding: 0.75rem 1rem; }
      .float-card-value { font-size: 1.35rem; }
    }

    .about-partners {
      margin-top: clamp(2.5rem, 5vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .about-partners-label {
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: clamp(1.5rem, 3vw, 2.5rem);
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.5rem 1rem 0.5rem 0.5rem;
      background: var(--surface);
      border: 1px solid var(--border-light);
      border-radius: 100px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trust-pill:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(45,90,63,0.08);
      transform: translateY(-2px);
    }

    .trust-pill-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(45,90,63,0.08), rgba(212,168,83,0.08));
      border-radius: 50%;
      flex-shrink: 0;
    }

    .trust-pill-icon svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .trust-pill span {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.01em;
    }

    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { order: -1; }
    }

    /* ═══════════════════════════════════════
       HOW IT WORKS — EDITORIAL VERTICAL
    ═══════════════════════════════════════ */
    .how-it-works {
      position: relative;
      background: var(--bg);
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto clamp(3.5rem, 7vw, 6rem);
    }

    .section-header .label { margin-bottom: 1.25rem; }
    .section-header h2 { margin-bottom: 1.25rem; }

    .section-header p {
      color: var(--text-secondary);
      font-size: 1.125rem;
      line-height: 1.7;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    .how-it-works .section-header .label {
      color: var(--primary);
      border-color: rgba(45,90,63,0.2);
    }

    /* Steps grid */
    .hiw-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hiw-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 60vh;
      border-top: 1px solid var(--border-light);
    }

    .hiw-row:last-child {
      border-bottom: 1px solid var(--border-light);
    }

    /* Alternating layout */
    .hiw-row:nth-child(even) .hiw-row-visual { order: -1; }

    /* Visual panel */
    .hiw-row-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hiw-row--1 .hiw-row-visual { background: var(--bg-warm); }
    .hiw-row--2 .hiw-row-visual { background: var(--bg-warm); }
    .hiw-row--3 .hiw-row-visual { background: var(--bg-warm); }

    /* Visual image */
    .hiw-row-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Text panel */
    .hiw-row-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
    }

    .hiw-row-label {
      font-family: var(--font-body);
      font-size: 0.625rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .hiw-row-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--primary);
      opacity: 0.4;
    }

    .hiw-row-text h3 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      max-width: 420px;
    }

    .hiw-row-text p {
      font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
      line-height: 1.75;
      color: var(--text-secondary);
      max-width: 400px;
      margin-bottom: 2rem;
    }

    .hiw-row-meta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--primary);
    }

    .hiw-row-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      animation: floatDotPulse 2s ease-in-out infinite;
    }

    @media (max-width: 768px) {
      .hiw-row {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hiw-row-visual {
        min-height: 30vh;
      }
      .hiw-row:nth-child(even) .hiw-row-visual { order: 0; }
      .hiw-row-text { padding: 2.5rem 1.5rem; }
      .hiw-big-num { font-size: 6rem; }
    }

    /* ── HIW v3 – Apple-style tall cards ── */
    .hiw3 {
      padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 4vw, 4rem);
      max-width: 1400px;
      margin: 0 auto;
    }

    .hiw3-header {
      text-align: center;
      margin-bottom: clamp(3rem, 6vw, 5rem);
    }

    .hiw3-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: var(--text-primary);
    }

    .hiw3-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(0.75rem, 1.5vw, 1.25rem);
    }

    .hiw3-card {
      background: #f5f5f7;
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      min-height: 580px;
      overflow: hidden;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hiw3-card:hover {
      transform: scale(1.015);
    }

    /* Text area */
    .hiw3-card-text {
      padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem) 0;
      flex-shrink: 0;
    }

    .hiw3-card-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
    }

    .hiw3-card--1 .hiw3-card-label { color: var(--primary); }
    .hiw3-card--2 .hiw3-card-label { color: var(--accent-gold); }
    .hiw3-card--3 .hiw3-card-label { color: var(--accent); }

    .hiw3-card-text h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: var(--text-primary);
      max-width: 280px;
    }

    /* Visual area */
    .hiw3-card-visual {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
    }

    /* Footer with number */
    .hiw3-card-foot {
      padding: 0 clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 1.75rem);
      display: flex;
      justify-content: flex-end;
    }

    .hiw3-card-num {
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-style: italic;
      color: var(--muted);
      opacity: 0.5;
    }

    /* ── Card 1: Form illustration ── */
    .hiw3-illust--form {
      width: 100%;
      max-width: 200px;
    }

    .hiw3-form-mock {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hiw3-form-bar {
      height: 10px;
      background: #eee;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }

    .hiw3-form-bar span {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--primary), #6cb87a);
      border-radius: 6px;
      animation: hiw3Fill 2.5s ease-in-out infinite;
    }

    .hiw3-form-bar--short { width: 60%; }
    .hiw3-form-bar--short span { animation-delay: 0.3s; }
    .hiw3-form-bar--med { width: 80%; }
    .hiw3-form-bar--med span { animation-delay: 0.6s; }

    @keyframes hiw3Fill {
      0%, 100% { transform: scaleX(0); transform-origin: left; }
      50% { transform: scaleX(1); transform-origin: left; }
    }

    .hiw3-form-check {
      width: 36px;
      height: 36px;
      background: rgba(45,90,63,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0.5rem auto 0;
    }

    .hiw3-form-check svg {
      width: 18px;
      height: 18px;
    }

    /* ── Card 2: devices.css iPhone 14 Pro, scaled + global tilt ── */
    .hiw3-illust--phone {
      perspective: 1200px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hiw3-iphone-wrap {
      transform-style: preserve-3d;
      transform: scale(0.34) rotateY(0deg) rotateX(0deg);
      transform-origin: center center;
      will-change: transform;
      /* devices.css is 428×868 → scaled: ~146×295 */
      width: 428px;
      height: 868px;
      margin: -270px 0;
    }

    /* Override devices.css */
    .hiw3-iphone-wrap .device-screen {
      display: flex !important;
      background: #f5f5f7 !important;
    }

    /* App dashboard */
    .hiw3-app {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      padding: 0;
      background: #f5f5f7;
      border-radius: 49px;
      overflow: hidden;
      font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    }

    .hiw3-statusbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 24px 0;
      font-size: 15px;
      font-weight: 600;
      color: #1d1d1f;
    }
    .hiw3-statusbar-r { display: flex; gap: 6px; align-items: center; }

    .hiw3-greeting {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 20px 24px 16px;
    }
    .hiw3-greeting-hi {
      font-size: 17px;
      color: #86868b;
      font-weight: 500;
    }
    .hiw3-greeting-name {
      font-size: 32px;
      font-weight: 700;
      color: #1d1d1f;
      line-height: 1.1;
    }
    .hiw3-greeting-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #4a8f6a);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
    }

    /* Progress card */
    .hiw3-progress-card {
      background: #fff;
      margin: 0 16px 12px;
      border-radius: 20px;
      padding: 18px 20px 14px;
    }
    .hiw3-progress-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #86868b;
      margin-bottom: 12px;
    }
    .hiw3-progress-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }
    .hiw3-progress-stat { text-align: center; }
    .hiw3-progress-val {
      font-size: 28px;
      font-weight: 700;
      color: #1d1d1f;
      display: block;
      line-height: 1.1;
    }
    .hiw3-progress-val--goal { color: var(--primary); }
    .hiw3-progress-sub {
      font-size: 12px;
      color: #86868b;
      font-weight: 500;
    }
    .hiw3-progress-arrow {
      font-size: 22px;
      color: #c7c7cc;
    }
    .hiw3-progress-bar {
      height: 8px;
      background: #e5e5ea;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .hiw3-progress-fill {
      width: 38%;
      height: 100%;
      background: linear-gradient(90deg, var(--primary), #4a8f6a);
      border-radius: 4px;
    }
    .hiw3-progress-weeks {
      font-size: 12px;
      color: #86868b;
      text-align: right;
    }

    /* Treatment card */
    .hiw3-treat-card {
      background: #fff;
      margin: 0 16px 12px;
      border-radius: 20px;
      padding: 16px 20px;
    }
    .hiw3-treat-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .hiw3-treat-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #86868b;
    }
    .hiw3-treat-badge {
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      background: rgba(45,90,63,0.1);
      padding: 3px 10px;
      border-radius: 10px;
    }
    .hiw3-treat-med {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hiw3-treat-icon { font-size: 28px; }
    .hiw3-treat-name {
      font-size: 17px;
      font-weight: 600;
      color: #1d1d1f;
    }
    .hiw3-treat-freq {
      font-size: 13px;
      color: #86868b;
      margin-top: 2px;
    }

    /* Stats grid */
    .hiw3-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 0 16px 12px;
    }
    .hiw3-stat-box {
      background: #fff;
      border-radius: 18px;
      padding: 14px 16px;
    }
    .hiw3-stat-icon { font-size: 22px; margin-bottom: 4px; }
    .hiw3-stat-title {
      font-size: 12px;
      color: #86868b;
      font-weight: 500;
    }
    .hiw3-stat-val {
      font-size: 22px;
      font-weight: 700;
      color: #1d1d1f;
    }

    /* Doctor message */
    .hiw3-doc-msg {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 0 16px 12px;
      padding: 14px 16px;
      background: #fff;
      border-radius: 18px;
    }
    .hiw3-doc-msg-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2D5A3F, #4a8f6a);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hiw3-doc-msg-name {
      font-size: 13px;
      font-weight: 600;
      color: #1d1d1f;
    }
    .hiw3-doc-msg-text {
      font-size: 13px;
      color: #3a3a3c;
      line-height: 1.35;
      margin-top: 2px;
    }

    /* Bottom nav */
    .hiw3-bottom-nav {
      margin-top: auto;
      display: flex;
      justify-content: space-around;
      padding: 10px 0 20px;
      background: #fff;
      border-top: 1px solid #e5e5ea;
    }
    .hiw3-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      color: #86868b;
      font-size: 10px;
      font-weight: 500;
    }
    .hiw3-nav-item--active { color: var(--primary); }

    /* ── Card 3: Delivery van ── */
    .hiw3-illust--van {
      position: relative;
      width: 100%;
      max-width: 220px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hiw3-van {
      position: relative;
      z-index: 2;
      animation: hiw3Drive 3s ease-in-out infinite;
    }

    .hiw3-van svg {
      width: 190px;
      height: auto;
    }

    @keyframes hiw3Drive {
      0%, 100% { transform: translateX(0) translateY(0); }
      25% { transform: translateX(3px) translateY(-1px); }
      50% { transform: translateX(0) translateY(0.5px); }
      75% { transform: translateX(2px) translateY(-0.5px); }
    }

    /* Speed lines */
    .hiw3-speed {
      position: absolute;
      left: 0;
      height: 2px;
      border-radius: 1px;
      background: linear-gradient(90deg, transparent, rgba(45,90,63,0.3), transparent);
      animation: hiw3SpeedLine 1.8s ease-in-out infinite;
    }

    .hiw3-speed--1 { top: 32%; width: 40px; animation-delay: 0s; }
    .hiw3-speed--2 { top: 48%; width: 28px; left: 8px; animation-delay: 0.4s; }
    .hiw3-speed--3 { top: 60%; width: 34px; left: 4px; animation-delay: 0.8s; }

    @keyframes hiw3SpeedLine {
      0% { opacity: 0; transform: translateX(10px); }
      30% { opacity: 0.7; }
      100% { opacity: 0; transform: translateX(-20px); }
    }

    /* Dust puffs */
    .hiw3-dust {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(0,0,0,0.04);
      left: 14px;
      bottom: 22px;
      animation: hiw3Puff 2s ease-out infinite;
    }

    .hiw3-dust--2 {
      width: 8px;
      height: 8px;
      left: 22px;
      bottom: 26px;
      animation-delay: 0.5s;
    }

    @keyframes hiw3Puff {
      0% { opacity: 0.6; transform: scale(0.5) translateX(0); }
      100% { opacity: 0; transform: scale(2) translateX(-20px); }
    }

    @media (max-width: 768px) {
      .hiw3-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .hiw3-card {
        min-height: 420px;
      }
    }

    /* ── Old hiw-card styles (kept for compat) ── */
    .hiw-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.25rem, 2.5vw, 2rem);
    }

    .hiw-card {
      background: var(--surface);
      border: 1px solid var(--border-light);
      padding: clamp(2rem, 4vw, 3rem);
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hiw-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent-gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hiw-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
      border-color: var(--border);
    }

    .hiw-card:hover::before {
      transform: scaleX(1);
    }

    .hiw-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .hiw-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hiw-card:nth-child(1) .hiw-card-icon {
      background: linear-gradient(135deg, rgba(45,90,63,0.1), rgba(45,90,63,0.05));
    }
    .hiw-card:nth-child(2) .hiw-card-icon {
      background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(212,168,83,0.05));
    }
    .hiw-card:nth-child(3) .hiw-card-icon {
      background: linear-gradient(135deg, rgba(200,135,90,0.12), rgba(200,135,90,0.05));
    }

    .hiw-card-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
    }

    .hiw-card:nth-child(2) .hiw-card-icon svg { color: var(--accent-gold); }
    .hiw-card:nth-child(3) .hiw-card-icon svg { color: var(--accent); }

    .hiw-card-number {
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-style: italic;
      color: var(--muted);
      letter-spacing: -0.01em;
    }

    .hiw-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 1.9rem);
      letter-spacing: -0.02em;
      margin-bottom: 0.875rem;
      line-height: 1.15;
    }

    .hiw-card p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .hiw-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      background: var(--bg-warm);
      border-radius: var(--radius-pill);
      font-size: 0.6875rem;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    .hiw-card-tag .tag-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--primary);
      animation: floatDotPulse 2s ease-in-out infinite;
    }

    /* Card color variants */
    .hiw-card--green { background: #F0F7F2; border-color: rgba(45,90,63,0.12); }
    .hiw-card--gold { background: #FBF6EE; border-color: rgba(212,168,83,0.15); }
    .hiw-card--rose { background: #FDF3F0; border-color: rgba(200,135,90,0.15); }

    .hiw-card--green:hover { border-color: var(--primary); }
    .hiw-card--gold:hover { border-color: var(--accent-gold); }
    .hiw-card--rose:hover { border-color: var(--accent); }

    /* Big step number */
    .hiw-card-num {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 6vw, 5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
      opacity: 0.08;
      position: absolute;
      top: 1.25rem;
      right: 1.5rem;
    }

    .hiw-card--green .hiw-card-num { color: var(--primary); }
    .hiw-card--gold .hiw-card-num { color: var(--accent-gold); }
    .hiw-card--rose .hiw-card-num { color: var(--accent); }

    /* Icon wrap with gradient bg */
    .hiw-card-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .hiw-card-icon-wrap svg {
      width: 28px;
      height: 28px;
    }

    .hiw-icon--green {
      background: linear-gradient(135deg, rgba(45,90,63,0.15), rgba(45,90,63,0.05));
    }
    .hiw-icon--green svg { color: var(--primary); }

    .hiw-icon--gold {
      background: linear-gradient(135deg, rgba(212,168,83,0.2), rgba(212,168,83,0.06));
    }
    .hiw-icon--gold svg { color: var(--accent-gold); }

    .hiw-icon--rose {
      background: linear-gradient(135deg, rgba(200,135,90,0.18), rgba(200,135,90,0.06));
    }
    .hiw-icon--rose svg { color: var(--accent); }

    /* Arrow between cards */
    .hiw-card-arrow {
      position: absolute;
      right: -1.25rem;
      top: 50%;
      transform: translateY(-50%);
      width: 2.5rem;
      height: 2.5rem;
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--muted);
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    @media (max-width: 768px) {
      .hiw-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .hiw-card-arrow {
        right: 50%;
        top: auto;
        bottom: -1.25rem;
        transform: translateX(50%) rotate(90deg);
      }
    }

    /* ── Treatment two-column + role accordion ── */
    .treatment-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: start;
    }

    .treatment-left .section-header {
      text-align: left;
    }

    .treatment-left .section-header p {
      max-width: 420px;
    }

    .role-accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .role-card {
      border-bottom: 1px solid var(--border-light);
      overflow: hidden;
      contain: layout style;
    }

    .role-card:first-child {
      border-top: 1px solid var(--border-light);
    }

    .role-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 0;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .role-card-header:hover {
      opacity: 0.8;
    }

    .role-card-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid var(--border-light);
      transition: border-color 0.3s ease;
    }

    .role-card.active .role-card-avatar {
      border-color: var(--primary);
    }

    .role-card-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .role-card-title {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex: 1;
    }

    .role-card-num {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--primary);
      font-weight: 600;
    }

    .role-card-title h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.01em;
      margin: 0;
    }

    .role-card-chevron {
      width: 20px;
      height: 20px;
      color: var(--muted);
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .role-card.active .role-card-chevron {
      transform: rotate(180deg);
      color: var(--primary);
    }

    .role-card-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      padding-left: 4rem;
    }

    .role-card-body > p {
      min-height: 0;
      overflow: hidden;
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin: 0;
    }

    .role-card.active .role-card-body {
      grid-template-rows: 1fr;
      padding-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .treatment-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* ═══════════════════════════════════════
       TREATMENT SECTION
    ═══════════════════════════════════════ */
    .treatment {
      background: linear-gradient(180deg, #B8C5B4 0%, #9DB396 50%, #B8C5B4 100%);
      color: var(--text);
      position: relative;
      overflow: hidden;
    }

    .treatment > .container { position: relative; z-index: 1; }

    .treatment-blob {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }

    .treatment-blob--1 {
      width: 550px;
      height: 450px;
      top: -80px;
      right: -100px;
      background: radial-gradient(ellipse at 40% 50%, rgba(255,255,255,0.22), rgba(255,255,255,0.08) 45%, transparent 70%);
      border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%;
      filter: blur(50px);
    }

    .treatment-blob--2 {
      width: 500px;
      height: 420px;
      bottom: -60px;
      left: -80px;
      background: radial-gradient(ellipse at 60% 50%, rgba(27,61,42,0.16), rgba(27,61,42,0.05) 50%, transparent 70%);
      border-radius: 55% 45% 38% 62% / 52% 48% 52% 48%;
      filter: blur(45px);
    }

    .treatment-blob--3 {
      width: 380px;
      height: 320px;
      top: 45%;
      left: 10%;
      background: radial-gradient(ellipse, rgba(255,255,255,0.18), transparent 65%);
      border-radius: 63% 37% 54% 46% / 55% 40% 60% 45%;
      filter: blur(40px);
    }

    .treatment-blob--4 {
      width: 320px;
      height: 280px;
      top: 20%;
      right: 15%;
      background: radial-gradient(ellipse, rgba(45,90,63,0.12), transparent 65%);
      border-radius: 40% 60% 45% 55% / 60% 35% 65% 40%;
      filter: blur(40px);
    }

    .treatment .section-header { text-align: center; }
    .treatment .label { color: var(--primary-dark); border-color: rgba(27, 61, 42, 0.2); }
    .treatment h2 { color: var(--text); }
    .treatment .section-header p { color: var(--text-secondary); }

    .treatment-content {
      display: flex;
      flex-direction: column;
      gap: clamp(3rem, 6vw, 4rem);
    }

    .treatment-features {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin: 0;
    }

    .treatment-features li {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(10px);
      font-size: 0.8125rem;
      color: var(--text);
    }

    .treatment-features li svg {
      width: 16px;
      height: 16px;
      color: var(--primary-dark);
      flex-shrink: 0;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2rem);
    }

    .team-member {
      background: #fff;
      padding: 0;
      border: none;
      overflow: hidden;
      transition: all 0.4s var(--ease-out);
    }

    .team-member:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .team-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .team-member:hover .team-photo img {
      transform: scale(1.03);
    }

    .team-info {
      padding: 1.5rem;
    }

    .team-info h4 {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .team-role {
      display: block;
      font-size: 0.6875rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .team-info p {
      color: var(--text-secondary);
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    }

    /* ═══════════════════════════════════════
       WEIGHT JOURNEY (Interactive)
    ═══════════════════════════════════════ */
    .journey {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .journey .section-header { text-align: center; }

    /* ── Hero number display ── */
    .journey-hero {
      text-align: center;
      margin-bottom: clamp(3rem, 6vw, 5rem);
    }

    .journey-weight-input {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .journey-weight-input .label-small {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-secondary);
    }

    .journey-current-weight {
      font-family: var(--font-display);
      font-size: clamp(5rem, 12vw, 9rem);
      color: var(--text);
      line-height: 0.9;
      letter-spacing: -0.04em;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.25rem;
    }

    .journey-current-weight .unit {
      font-size: 0.3em;
      color: var(--text-secondary);
      font-style: italic;
    }

    .journey-range {
      width: min(400px, 80%);
      margin: 1.5rem auto 0;
      -webkit-appearance: none;
      appearance: none;
      height: 2px;
      background: var(--border);
      border-radius: 1px;
      outline: none;
      cursor: pointer;
      display: block;
    }

    .journey-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 24px;
      height: 24px;
      background: var(--primary);
      border: 4px solid var(--bg);
      border-radius: 50%;
      cursor: grab;
      box-shadow: 0 2px 12px rgba(45,90,63,0.25);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .journey-range::-webkit-slider-thumb:hover {
      transform: scale(1.15);
      box-shadow: 0 4px 20px rgba(45,90,63,0.35);
    }

    .journey-range::-webkit-slider-thumb:active { cursor: grabbing; }

    .journey-range::-moz-range-thumb {
      width: 24px;
      height: 24px;
      background: var(--primary);
      border: 4px solid var(--bg);
      border-radius: 50%;
      cursor: grab;
    }

    /* ── Results strip ── */
    .journey-results {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .journey-result {
      padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
      text-align: center;
      position: relative;
      transition: background 0.3s ease;
    }

    .journey-result:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: var(--border);
    }

    .journey-result:hover {
      background: var(--surface);
    }

    .journey-result-value {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      color: var(--primary);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .journey-result:nth-child(2) .journey-result-value { color: var(--accent-gold); }
    .journey-result:nth-child(3) .journey-result-value { color: var(--accent-rose); }
    .journey-result:nth-child(4) .journey-result-value { color: var(--primary); }

    .journey-result-label {
      font-size: 0.6875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-top: 0.5rem;
    }

    .journey-result-sub {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    .journey-disclaimer {
      font-size: 0.6875rem;
      color: var(--muted);
      text-align: center;
      max-width: 560px;
      margin: 2rem auto 0;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .journey-results { grid-template-columns: repeat(2, 1fr); }
      .journey-result:nth-child(2)::after { display: none; }
      .journey-result:nth-child(1),
      .journey-result:nth-child(2) { border-bottom: 1px solid var(--border); }
    }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .testimonial-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .testimonial-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 6vw, 5rem);
      padding: clamp(3rem, 6vw, 5rem) 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }

    .testimonial-card:first-child {
      border-top: 1px solid var(--border);
    }

    .testimonial-quote {
      position: relative;
    }

    .testimonial-quote-mark {
      font-family: var(--font-display);
      font-size: clamp(5rem, 10vw, 8rem);
      line-height: 0.8;
      color: var(--primary);
      opacity: 0.12;
      position: absolute;
      top: -0.3em;
      left: -0.05em;
      pointer-events: none;
    }

    .testimonial-text {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      line-height: 1.45;
      color: var(--text);
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .testimonial-meta-col {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding-top: 0.5rem;
    }

    .testimonial-stat {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .testimonial-stat-num {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--accent-light);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .testimonial-stat-label {
      font-size: 0.8125rem;
      color: var(--text-secondary);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-top: auto;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid var(--border-light);
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-name {
      font-weight: 500;
      font-size: 0.9375rem;
      color: var(--text);
    }

    .testimonial-location {
      font-size: 0.75rem;
      color: var(--text-secondary);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    /* ═══════════════════════════════════════
       PRICING — playful bento
    ═══════════════════════════════════════ */
    .pricing {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .pricing::before,
    .pricing::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
      pointer-events: none;
      z-index: 0;
    }

    .pricing::before {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(45,90,63,0.25), rgba(74,143,106,0.08), transparent 70%);
      top: -120px;
      right: -100px;
    }

    .pricing::after {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(212,168,83,0.2), rgba(212,168,83,0.05), transparent 70%);
      bottom: -80px;
      left: -60px;
    }

    .pricing > * { position: relative; z-index: 1; }

    .pricing .section-header h2 { color: var(--text); }
    .pricing .section-header p { color: var(--text-secondary); }

    /* Bento grid */
    .pricing-bento {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 1rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .pricing-card {
      border-radius: 24px;
      padding: clamp(1.75rem, 3vw, 2.5rem);
      position: relative;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
    }

    /* Hero price card — spans 2 cols */
    .pricing-card--hero {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
      background: var(--primary);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 380px;
    }

    .pricing-card--hero::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      top: -100px;
      right: -80px;
      pointer-events: none;
    }

    .pricing-card--hero::after {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(212,168,83,0.12);
      bottom: -40px;
      left: -40px;
      pointer-events: none;
    }

    .pricing-hero-intro-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }

    .pricing-hero-price {
      font-family: var(--font-display);
      font-size: clamp(5rem, 12vw, 8rem);
      line-height: 0.85;
      letter-spacing: -0.04em;
      margin-bottom: 0.25rem;
      position: relative;
      z-index: 1;
    }

    .pricing-hero-after {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
    }

    .pricing-hero-unit {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-style: italic;
      color: rgba(255,255,255,0.6);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .pricing-hero-desc {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.75);
      max-width: 360px;
      position: relative;
      z-index: 1;
    }

    /* Small accent cards */
    .pricing-card--accent1 {
      background: #FFF9F0;
      grid-column: 3;
      grid-row: 1;
    }

    .pricing-card--accent2 {
      background: #F9EDE6;
      grid-column: 3;
      grid-row: 2;
    }

    .pricing-card--accent3 {
      background: #EDF5F0;
      grid-column: 1;
      grid-row: 3;
    }

    .pricing-card-emoji {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .pricing-card-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--text);
      margin-bottom: 0.375rem;
      letter-spacing: -0.01em;
    }

    .pricing-card-sub {
      font-size: 0.8125rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Features row — spans full width */
    .pricing-card--features {
      grid-column: 1 / -1;
      grid-row: 3;
      background: #fff;
      border: 1px solid var(--border-light);
      padding: clamp(2rem, 4vw, 3rem);
    }

    .pricing-features-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .pricing-features-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .pricing-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      list-style: none;
    }

    .pricing-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      padding: 1.25rem 1rem;
      border-radius: 16px;
      transition: background 0.3s;
    }

    .pricing-feature-item:hover {
      background: var(--bg-warm);
    }

    .pricing-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.125rem;
    }

    .pfi--green { background: rgba(45,90,63,0.08); }
    .pfi--gold { background: rgba(212,168,83,0.1); }
    .pfi--rose { background: rgba(212,114,106,0.08); }

    .pricing-feature-text {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .pricing-feature-text strong {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
    }

    .pricing-feature-text span {
      font-size: 0.75rem;
      color: var(--text-secondary);
    }

    /* CTA button inside features */
    .pricing-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 2.5rem;
      background: var(--primary);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.8125rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 100px;
      border: none;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
      cursor: pointer;
    }

    .pricing-btn:hover {
      background: var(--primary-dark);
      transform: scale(1.03);
    }

    /* Trust badges */
    .pricing-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      flex-wrap: wrap;
    }

    .pricing-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    .pricing-trust-item svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .pricing-disclaimer {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      font-size: 0.75rem;
      line-height: 1.55;
      color: var(--text-secondary);
      text-align: center;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .pricing-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .pricing-card--hero { grid-column: 1; grid-row: auto; min-height: 280px; }
      .pricing-card--accent1,
      .pricing-card--accent2 { grid-column: 1; grid-row: auto; }
      .pricing-card--features { grid-column: 1; grid-row: auto; }
      .pricing-features-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════
    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq {
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .faq::before,
    .faq::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.25;
      pointer-events: none;
      z-index: 0;
    }

    .faq::before {
      width: 450px;
      height: 350px;
      background: radial-gradient(circle, rgba(255,180,160,0.3), rgba(255,200,180,0.08), transparent 70%);
      top: -60px;
      left: -80px;
    }

    .faq::after {
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255,210,180,0.25), rgba(255,230,210,0.06), transparent 70%);
      bottom: -100px;
      right: -60px;
    }

    .faq > * { position: relative; z-index: 1; }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 1.5rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-body);
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      transition: color 0.3s;
    }

    .faq-question:hover { color: var(--primary); }

    .faq-icon {
      width: 24px;
      height: 24px;
      position: relative;
      flex-shrink: 0;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      transition: transform 0.3s var(--ease-out);
    }

    .faq-icon::before {
      width: 14px;
      height: 1.5px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-icon::after {
      width: 1.5px;
      height: 14px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-item.open .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out);
    }

    .faq-answer-inner {
      padding: 0 0 1.5rem;
      color: var(--text-secondary);
      font-size: 0.9375rem;
      line-height: 1.75;
    }

    /* [REMOVED] parallax-break — no longer in HTML */

    /* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
    .cta-section {
      background: var(--text);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: clamp(8rem, 20vw, 14rem) 0;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(45, 90, 63, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-section h2 {
      color: #fff;
      font-size: clamp(3rem, 7vw, 5.5rem);
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }

    .cta-section p {
      color: rgba(255,255,255,0.55);
      font-size: 1.125rem;
      max-width: 480px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    .btn-cta-flip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 72px;
      padding: 0 4.5rem;
      border: none;
      border-radius: 0;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      transition: box-shadow 0.5s ease-in-out;
    }

    .btn-cta-flip:hover {
      box-shadow: 0 8px 40px rgba(255,255,255,0.15);
    }

    .btn-cta-flip::before {
      content: 'STARTA BEHANDLING';
      position: absolute;
      inset: 0;
      background: #fff;
      color: var(--primary-dark);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 500;
      font-style: normal;
      letter-spacing: 0.18em;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(0) scale(1);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-cta-flip::after {
      content: 'BÖRJA NU →';
      position: absolute;
      inset: 0;
      background: var(--primary);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 500;
      font-style: normal;
      letter-spacing: 0.18em;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(72px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-cta-flip:hover::before {
      transform: translateY(-72px) scale(0.8) rotate(8deg);
    }

    .btn-cta-flip:hover::after {
      transform: translateY(0) scale(1);
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.6);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 1rem;
      display: inline-flex;
      align-items: baseline;
      letter-spacing: -0.03em;
    }

    .footer-brand em {
      font-style: italic;
      position: relative;
    }

    .footer-brand .logo-dot {
      display: inline-block;
      width: 5px;
      height: 5px;
      background: var(--accent-rose);
      border-radius: 50%;
      margin-left: 1px;
      vertical-align: super;
      position: relative;
      top: -2px;
    }

    .footer-desc {
      font-size: 0.875rem;
      max-width: 300px;
      line-height: 1.6;
    }

    .footer-col h4 {
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-col ul { list-style: none; }

    .footer-col li { margin-bottom: 0.5rem; }

    .footer-col a {
      font-size: 0.875rem;
      transition: color 0.3s;
    }

    .footer-col a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8125rem;
    }

    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════
       LEGAL MODALS
    ═══════════════════════════════════════ */
    .legal-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(13,16,13,0.7);
      backdrop-filter: blur(4px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .legal-modal-overlay.is-open {
      opacity: 1;
      pointer-events: all;
    }

    .legal-modal {
      background: var(--bg);
      border-radius: 1.25rem;
      max-width: 680px;
      width: 100%;
      max-height: 82vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 80px rgba(0,0,0,0.25);
      transform: translateY(24px);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }

    .legal-modal-overlay.is-open .legal-modal {
      transform: translateY(0);
    }

    .legal-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 2rem;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .legal-modal-header h2 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--text);
      margin: 0;
    }

    .legal-modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }

    .legal-modal-close:hover {
      background: var(--text);
      color: #fff;
      border-color: var(--text);
    }

    .legal-modal-body {
      overflow-y: auto;
      padding: 2rem;
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.75;
    }

    .legal-modal-body h3 {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      margin: 1.5rem 0 0.5rem;
    }

    .legal-modal-body h3:first-child { margin-top: 0; }

    .legal-modal-body p { margin: 0 0 0.75rem; }

    .legal-modal-body a {
      color: var(--accent);
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .legal-modal { border-radius: 1rem; max-height: 90vh; }
      .legal-modal-body { padding: 1.25rem; }
      .legal-modal-header { padding: 1.25rem; }
    }

    /* ═══════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════ */
    [data-reveal] {
      opacity: 0;
      transform: translateY(40px);
    }

    [data-reveal-left] {
      opacity: 0;
      transform: translateX(-40px);
    }

    [data-reveal-right] {
      opacity: 0;
      transform: translateX(40px);
    }

    [data-reveal-scale] {
      opacity: 0;
      transform: scale(0.95);
    }

    /* (Team section removed — team members now in treatment section) */

    /* ═══════════════════════════════════════
       APP PREVIEW / HOW IT LOOKS
    ═══════════════════════════════════════ */
    .app-preview {
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .app-preview::before {
      content: '';
      position: absolute;
      bottom: -15%;
      left: -10%;
      width: 40vw;
      height: 40vw;
      max-width: 500px;
      max-height: 500px;
      background: radial-gradient(circle, rgba(45, 90, 63, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .app-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }

    .app-mockup {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .phone-frame {
      width: 290px;
      height: 600px;
      background: #1A1A1A;
      border-radius: 48px;
      padding: 10px;
      box-shadow:
        0 50px 100px rgba(0,0,0,0.2),
        0 20px 40px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.08);
      position: relative;
    }

    /* Side button (power) */
    .phone-frame::after {
      content: '';
      position: absolute;
      right: -2px;
      top: 140px;
      width: 3px;
      height: 44px;
      background: #2A2A2A;
      border-radius: 0 2px 2px 0;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: var(--surface);
      border-radius: 40px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Dynamic Island */
    .phone-island {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 28px;
      background: #000;
      border-radius: 20px;
      z-index: 10;
    }

    /* Status bar */
    .phone-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 24px 0;
      font-size: 0.6875rem;
      font-weight: 600;
      color: #fff;
      position: relative;
      z-index: 5;
    }

    .phone-status-time { font-size: 0.75rem; font-weight: 600; }

    .phone-status-icons {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .phone-status-icons svg {
      width: 14px;
      height: 14px;
      fill: #fff;
    }

    /* Chat header (like iMessage / WhatsApp) */
    .phone-header {
      background: var(--primary-dark);
      color: #fff;
      padding: 3rem 1rem 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .phone-header-back {
      width: 20px;
      height: 20px;
      color: rgba(255,255,255,0.7);
      flex-shrink: 0;
    }

    .phone-header-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent-gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .phone-header-info {
      flex: 1;
      min-width: 0;
    }

    .phone-header-info h4 {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
    }

    .phone-header-info span {
      font-size: 0.625rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .phone-header-info .online-dot {
      width: 5px;
      height: 5px;
      background: #4ADE80;
      border-radius: 50%;
      display: inline-block;
    }

    .phone-header-actions {
      display: flex;
      gap: 12px;
    }

    .phone-header-actions svg {
      width: 18px;
      height: 18px;
      color: rgba(255,255,255,0.6);
    }

    /* Chat area */
    .phone-chat {
      flex: 1;
      padding: 0.75rem 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      overflow: hidden;
      background: #F2F1EC;
    }

    .chat-bubble {
      max-width: 82%;
      padding: 0.55rem 0.75rem;
      font-size: 0.72rem;
      line-height: 1.45;
      position: relative;
    }

    .chat-bubble.them {
      background: #fff;
      color: var(--text);
      align-self: flex-start;
      border-radius: 16px 16px 16px 4px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    }

    .chat-bubble.me {
      background: var(--primary);
      color: #fff;
      align-self: flex-end;
      border-radius: 16px 16px 4px 16px;
    }

    .chat-bubble .bubble-time {
      font-size: 0.5625rem;
      opacity: 0.5;
      margin-top: 2px;
      text-align: right;
    }

    .chat-bubble.them .bubble-time { color: var(--muted); }
    .chat-bubble.me .bubble-time { color: rgba(255,255,255,0.6); }

    .chat-date {
      font-size: 0.5625rem;
      color: var(--muted);
      text-align: center;
      padding: 0.4rem 0;
      display: flex;
      justify-content: center;
    }

    .chat-date span {
      background: rgba(0,0,0,0.06);
      padding: 3px 10px;
      border-radius: 8px;
      font-weight: 500;
    }

    /* Typing indicator */
    .chat-typing {
      align-self: flex-start;
      background: #fff;
      border-radius: 16px 16px 16px 4px;
      padding: 0.55rem 0.9rem;
      display: flex;
      gap: 3px;
      align-items: center;
      box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    }

    .chat-typing span {
      width: 5px;
      height: 5px;
      background: var(--muted);
      border-radius: 50%;
      animation: typingBounce 1.4s infinite;
    }

    .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
    .chat-typing span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-4px); opacity: 1; }
    }

    /* Input bar */
    .phone-input {
      padding: 0.5rem 0.75rem;
      background: #F2F1EC;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .phone-input-field {
      flex: 1;
      height: 34px;
      background: #fff;
      border-radius: 18px;
      border: none;
      padding: 0 14px;
      font-size: 0.6875rem;
      color: var(--muted);
      display: flex;
      align-items: center;
    }

    .phone-input-send {
      width: 32px;
      height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(45, 90, 63, 0.3);
    }

    .phone-input-send svg {
      width: 14px;
      height: 14px;
      color: #fff;
    }

    /* Home indicator */
    .phone-home-indicator {
      width: 120px;
      height: 4px;
      background: rgba(0,0,0,0.15);
      border-radius: 2px;
      margin: 6px auto 8px;
    }

    .app-features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .app-feature {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .app-feature-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .app-feature-icon svg {
      width: 22px;
      height: 22px;
    }

    .app-feature:nth-child(1) .app-feature-icon { background: rgba(45, 90, 63, 0.1); color: var(--primary); }
    .app-feature:nth-child(2) .app-feature-icon { background: rgba(212, 168, 83, 0.15); color: var(--accent-gold); }
    .app-feature:nth-child(3) .app-feature-icon { background: rgba(212, 114, 106, 0.12); color: var(--accent-rose); }
    .app-feature:nth-child(4) .app-feature-icon { background: rgba(200, 135, 90, 0.12); color: var(--accent); }

    .app-feature h3 {
      font-size: 1.15rem;
      margin-bottom: 0.3rem;
    }

    .app-feature p {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .app-grid { grid-template-columns: 1fr; }
      .app-mockup { order: -1; }
    }

    /* ═══════════════════════════════════════
       BIG NUMBERS / RESULTS
    ═══════════════════════════════════════ */
    .partners {
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: clamp(3rem, 6vw, 4.5rem) 0;
    }

    .partners-header {
      text-align: center;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .partners-header p {
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-secondary);
    }

    .partners-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(2.5rem, 6vw, 5rem);
      flex-wrap: wrap;
    }

    .partner-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.5;
      transition: opacity 0.3s ease;
    }

    .partner-logo:hover {
      opacity: 0.8;
    }

    .partner-logo img,
    .partner-logo svg {
      height: 32px;
      width: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    .partner-logo:hover img,
    .partner-logo:hover svg {
      filter: grayscale(0%);
      opacity: 1;
    }

    .partner-logo .partner-text {
      font-family: var(--font-display);
      font-size: 0.8125rem;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
      white-space: nowrap;
      margin-top: 0.25rem;
    }

    .partners-badges {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: clamp(2rem, 4vw, 3rem);
      flex-wrap: wrap;
    }

    .partner-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      font-size: 0.6875rem;
      letter-spacing: 0.04em;
      color: var(--text-secondary);
    }

    .partner-badge svg {
      width: 14px;
      height: 14px;
      stroke: var(--primary);
      fill: none;
      stroke-width: 2;
    }

    /* ═══════════════════════════════════════
       SECTION DIVIDERS (organic curves)
    ═══════════════════════════════════════ */
    .section-divider {
      width: 100%;
      height: auto;
      display: block;
      margin: -1px 0;
    }

    .section-divider-flip {
      transform: scaleY(-1);
    }

    /* ═══════════════════════════════════════
       NOISE TEXTURE OVERLAY
    ═══════════════════════════════════════ */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }
