    :root {
      --primary:       #006E59;
      --dark:          #1F2937;
      --white:         #FFFFFF;
      --c800:          #004D3E;
      --c700:          #008067;
      --c600:          #006E59;
      --c500:          #00E6BA;
      --c400:          #1AFFD3;
      --c300:          #4DFFDD;
      --c200:          #80FFE7;
      --c100:          #B3FFF0;
      --surface-1:     rgba(255,255,255,0.04);
      --surface-2:     rgba(255,255,255,0.02);
      /* Semantic theme tokens */
      --page-bg:       #1F2937;
      --nav-surface:   rgba(31,41,55,0.92);
      --mob-surface:   rgba(31,41,55,0.97);
      --border-subtle: rgba(255,255,255,0.08);
      --border-dim:    rgba(255,255,255,0.05);
      --text-muted:    rgba(255,255,255,0.50);
      --text-faint:    rgba(255,255,255,0.30);
      --text-dim:      rgba(255,255,255,0.65);
      --green-glow:    rgba(0,110,89,0.12);
      --green-border:  rgba(0,110,89,0.25);
      --green-glow-md: rgba(0,128,103,0.30);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', Arial, sans-serif;
      background-color: var(--page-bg);
      color: var(--white);
      font-size: 1rem;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: 'Platypi', serif; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─────────────────────────────
       NAV — always visible
    ───────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 68px;
      display: flex;
      align-items: center;
      padding: 0 2rem;
      background: var(--nav-surface);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--green-border);
    }
    .nav-inner {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .nav-logo img { height: 22px; width: auto; display: block; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex: 1;
      justify-content: center;
    }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text-dim);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--c700);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 0.625rem 1.375rem;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 2px 12px var(--green-glow-md);
      white-space: nowrap;
    }
    .nav-cta:hover {
      background: var(--c800);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,128,103,0.4);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--mob-surface);
      backdrop-filter: blur(16px);
      padding: 1.5rem 2rem;
      border-bottom: 1px solid var(--border-subtle);
      z-index: 99;
      flex-direction: column;
      gap: 0.75rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-dim);
    }
    .mobile-menu .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; border: none; }

    /* ─────────────────────────────
       FLOATING CTA TAB
    ───────────────────────────── */
    .float-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 90;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.875rem;
      background: var(--c700);
      color: var(--white);
      padding: 1.25rem 0.875rem;
      border-radius: 12px 0 0 12px;
      box-shadow: -4px 4px 24px rgba(0,128,103,0.35);
      transition: background 0.2s;
      text-decoration: none;
    }
    .float-cta:hover { background: var(--c800); }
    .float-cta svg { flex-shrink: 0; }
    .float-cta span {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }

    /* ─────────────────────────────
       SHARED SECTION UTILITIES
    ───────────────────────────── */
    .section { padding: 6rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .section-h2 {
      font-size: clamp(1.875rem, 3.5vw, 2.75rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 1.25rem;
    }
    .section-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 560px;
    }

    /* check icon utility */
    .check-icon {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--green-glow);
      border: 1.5px solid var(--green-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }

    /* ─────────────────────────────
       HERO
    ───────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 68px;
      overflow: hidden;
      background-color: var(--page-bg);
      background-image:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,110,89,0.20) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 75%, rgba(0,77,62,0.15) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 15% 75%, rgba(0,128,103,0.10) 0%, transparent 55%);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 5rem 2rem 4rem;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 3px var(--green-glow); }
      50%       { box-shadow: 0 0 0 6px rgba(0,110,89,0.06); }
    }
    .hero-h1 {
      font-family: 'Platypi', serif;
      font-size: clamp(2.625rem, 5.5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      color: var(--white);
      animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.1s both;
    }
    .hero-h1 em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: -0.01em;
    }
    .hero-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1875rem;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 2.5rem;
      animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.2s both;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--c700);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,128,103,0.4);
    }
    .btn-primary:hover {
      background: var(--c800);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,128,103,0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: rgba(255,255,255,0.8);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.2);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
      transform: translateY(-2px);
    }

    /* Reset native <button> chrome for CTA elements now using <button> */
    button.nav-cta, button.float-cta, button.btn-primary, button.btn-white {
      border: none;
      appearance: none;
      -webkit-appearance: none;
      font: inherit;
    }
    button.btn-outline { appearance: none; -webkit-appearance: none; font: inherit; }

    /* ─────────────────────────────
       CONTACT MODAL
    ───────────────────────────── */
    body.contact-modal-locked { overflow: hidden; }
    .contact-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10,14,20,0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    .contact-modal-overlay.open { display: flex; }
    .contact-modal {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: var(--dark);
      border: 1px solid rgba(0,110,89,0.35);
      border-radius: 18px;
      padding: 2.25rem 1.75rem 1.75rem;
      box-shadow: 0 24px 64px rgba(0,0,0,0.45);
      animation: contactModalIn 0.25s cubic-bezier(0.4,0,0.2,1) both;
    }
    @keyframes contactModalIn {
      from { opacity: 0; transform: translateY(12px) scale(0.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .contact-modal-close {
      position: absolute;
      top: 0.875rem;
      right: 0.875rem;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      border-radius: 8px;
      color: rgba(255,255,255,0.55);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .contact-modal-close:hover { background: rgba(255,255,255,0.08); color: var(--white); }
    .contact-modal-title {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.375rem;
      color: var(--white);
      margin-bottom: 1.5rem;
      padding-right: 1.5rem;
      line-height: 1.35;
    }
    .contact-modal-options {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .contact-modal-option {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      padding: 0.9375rem 1.125rem;
      border-radius: 12px;
      border: 1.5px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.03);
      color: var(--white);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .contact-modal-option:hover {
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.06);
      transform: translateY(-1px);
    }
    .contact-modal-option-primary {
      background: var(--c700);
      border-color: var(--c700);
    }
    .contact-modal-option-primary:hover {
      background: var(--c800);
      border-color: var(--c800);
    }
    .contact-modal-option-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
    }
    .contact-modal-option-primary .contact-modal-option-icon { background: rgba(255,255,255,0.18); }
    .contact-modal-option-text { display: flex; flex-direction: column; gap: 0.125rem; }
    .contact-modal-option-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
    }
    .contact-modal-option-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
    }
    .contact-modal-option-primary .contact-modal-option-sub { color: rgba(255,255,255,0.75); }

    .hero-stats {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      overflow: hidden;
      background: var(--surface-1);
      backdrop-filter: blur(12px);
      animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.4s both;
    }
    .hero-stat {
      flex: 1;
      padding: 1.25rem 1.5rem;
      text-align: center;
      position: relative;
    }
    .hero-stat + .hero-stat::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: var(--border-subtle);
    }
    .hero-stat-num {
      font-family: 'Platypi', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--c600);
      line-height: 1;
      margin-bottom: 0.375rem;
    }
    .hero-stat-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.4;
    }
    .hero-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 100px;
      background: linear-gradient(to bottom, transparent, var(--page-bg));
      pointer-events: none;
    }

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

    /* ─────────────────────────────
       PROBLEM SECTION
    ───────────────────────────── */
    .problem-section {
      padding: 6rem 2rem;
      background: var(--page-bg);
      border-top: 1px solid var(--border-dim);
      border-bottom: 1px solid var(--border-dim);
      position: relative;
      overflow: hidden;
    }
    .problem-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.25);
      pointer-events: none;
    }
    .problem-section-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .problem-header {
      margin-bottom: 3.5rem;
      max-width: 600px;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-bottom: 3.5rem;
    }
    .pain-card {
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 1.75rem;
      transition: border-color 0.25s, background 0.25s;
    }
    .pain-card:hover {
      border-color: var(--green-border);
      background: rgba(0,110,89,0.04);
    }
    .pain-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255,80,60,0.1);
      border: 1px solid rgba(255,80,60,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.125rem;
    }
    .pain-h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.5rem;
    }
    .pain-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .pull-quote {
      border-left: 3px solid var(--primary);
      padding: 1.5rem 2rem;
      background: var(--surface-1);
      border-radius: 0 12px 12px 0;
    }
    .pull-quote blockquote {
      font-family: 'Platypi', serif;
      font-style: italic;
      font-size: clamp(1.0625rem, 2vw, 1.25rem);
      line-height: 1.65;
      color: rgba(255,255,255,0.88);
      margin-bottom: 1rem;
    }
    .pull-quote cite {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-faint);
      font-style: normal;
    }

    /* ─────────────────────────────
       HOW IT WORKS
    ───────────────────────────── */
    .how-section { padding: 6rem 2rem; }
    .how-header { text-align: center; margin-bottom: 4rem; }
    .how-header .section-p { margin: 0 auto; text-align: center; }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3.5rem;
      position: relative;
    }
    .how-step {
      text-align: center;
      padding: 2rem 1.5rem;
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      transition: border-color 0.25s, transform 0.2s;
    }
    .how-step:hover {
      border-color: var(--green-border);
      transform: translateY(-3px);
    }
    .how-step-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--green-glow);
      border: 1.5px solid var(--green-border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.375rem;
      font-family: 'Platypi', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--c600);
    }
    .how-step h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.625rem;
    }
    .how-step p {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .how-cta { text-align: center; }

    /* ─────────────────────────────
       SERVICES
    ───────────────────────────── */
    .services-section {
      padding: 6rem 2rem;
      background: rgba(0,0,0,0.2);
      border-top: 1px solid var(--border-dim);
      border-bottom: 1px solid var(--border-dim);
    }
    .services-header { margin-bottom: 3.5rem; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .service-card {
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 1.75rem;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .service-card:hover {
      border-color: var(--green-border);
      background: rgba(0,110,89,0.04);
      transform: translateY(-3px);
    }
    .service-card.vision {
      border-color: var(--primary);
      background: rgba(0,110,89,0.06);
    }
    .service-card.vision:hover {
      border-color: var(--c400);
      background: rgba(0,110,89,0.10);
    }
    .service-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--green-glow);
      border: 1px solid var(--green-border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.125rem;
    }
    .service-card.vision .service-icon {
      background: rgba(0,230,186,0.12);
      border-color: rgba(0,230,186,0.3);
    }
    .service-tag {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--c700);
      background: rgba(0,128,103,0.15);
      border: 1px solid rgba(0,128,103,0.3);
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      margin-bottom: 0.75rem;
    }
    .service-h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .service-card.vision .service-h3 { color: var(--c300); }
    .service-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .service-vision-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--c400);
      margin-top: 1rem;
    }
    .service-vision-badge::before {
      content: '';
      display: block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--c400);
      animation: pulse 2s ease-in-out infinite;
    }

    /* ─────────────────────────────
       PRICING
    ───────────────────────────── */
    .pricing-section { padding: 6rem 2rem; }
    .pricing-header { text-align: center; margin-bottom: 3.5rem; }
    .pricing-header .section-p { margin: 0 auto; text-align: center; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      align-items: stretch;
      max-width: 820px;
      margin: 0 auto;
    }
    .pricing-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2rem;
      transition: border-color 0.25s, transform 0.2s;
      position: relative;
    }
    .pricing-card:hover {
      border-color: rgba(31,41,55,0.22);
      transform: translateY(-3px);
    }
    .pricing-card.featured {
      border-color: rgba(31,41,55,0.18);
      background: rgba(31,41,55,0.025);
      transform: scale(1.02);
    }
    .pricing-card.featured:hover {
      border-color: var(--primary);
      transform: scale(1.02) translateY(-3px);
    }
    .pricing-badge {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--white);
      background: var(--primary);
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      margin-bottom: 1.25rem;
    }
    .pricing-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-dim);
      margin-bottom: 0.5rem;
      letter-spacing: 0.01em;
    }
    .pricing-price {
      font-family: 'Platypi', serif;
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.375rem;
    }
    .pricing-price sup {
      font-size: 1.25rem;
      font-weight: 700;
      vertical-align: super;
    }
    .pricing-price span {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
    }
    .pricing-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-muted);
      margin: 0.35rem 0 1rem;
      line-height: 1.55;
    }
    .pricing-divider {
      height: 1px;
      background: var(--border-subtle);
      margin-bottom: 1.5rem;
    }
    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
      margin-bottom: 1.75rem;
    }
    .pricing-card .btn-primary {
      margin-top: auto;
      white-space: nowrap;
      justify-content: center;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-dim);
      line-height: 1.55;
    }
    /* ─────────────────────────────
       SOCIAL PROOF
    ───────────────────────────── */
    .social-section {
      padding: 6rem 2rem;
      background: rgba(0,0,0,0.25);
      border-top: 1px solid var(--border-dim);
      border-bottom: 1px solid var(--border-dim);
    }
    .social-header { text-align: center; margin-bottom: 3.5rem; }
    .social-header .section-p { margin: 0 auto; text-align: center; }
    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .quote-card {
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 2rem;
      position: relative;
    }
    .quote-mark {
      font-family: 'Platypi', serif;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--primary);
      opacity: 0.5;
      margin-bottom: 0.5rem;
    }
    .quote-text {
      font-family: 'Platypi', serif;
      font-style: italic;
      font-size: 1.0625rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.88);
      margin-bottom: 1.5rem;
    }
    .quote-author {
      display: flex;
      align-items: center;
      gap: 0.875rem;
    }
    .quote-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--green-glow);
      border: 1.5px solid var(--green-border);
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--primary);
      flex-shrink: 0;
    }
    .quote-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-dim);
    }
    .quote-role {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: var(--text-faint);
    }
    .quote-card.coming-soon {
      border-style: dashed;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 220px;
      gap: 0.75rem;
    }
    .coming-soon-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-faint);
    }
    .coming-soon-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-faint);
      max-width: 200px;
      line-height: 1.55;
    }

    /* ─────────────────────────────
       ABOUT / FOUNDER
    ───────────────────────────── */
    .about-section { padding: 6rem 2rem; }
    .about-section-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }
    .about-label { margin-bottom: 1.5rem; }
    .founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .founder-card {
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .founder-photo {
      width: 110px;
      height: 140px;
      border-radius: 10px;
      object-fit: cover;
      object-position: center top;
      border: 2px solid var(--green-border);
      margin-bottom: 1.25rem;
    }
    .founder-name {
      text-align: center;
      font-family: 'Platypi', serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .founder-title {
      text-align: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 1.25rem;
    }
    .founder-email {
      text-align: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: -0.75rem;
      margin-bottom: 1.25rem;
    }
    .founder-email a {
      color: var(--text-muted);
      text-decoration: none;
    }
    .founder-email a:hover {
      color: var(--primary);
    }
    .founder-divider {
      height: 1px;
      width: 100%;
      background: var(--border-subtle);
      margin-bottom: 1.25rem;
    }
    .founder-bio {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.7;
      text-align: left;
      width: 100%;
    }
    .about-goal {
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2.5rem;
    }
    .about-goal-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    .about-body {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      color: var(--text-muted);
      line-height: 1.8;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .about-body p { font-family: 'DM Sans', sans-serif; font-size: 1.0625rem; }
    .about-left-accent {
      border-left: 3px solid var(--primary);
      padding-left: 1.25rem;
      color: rgba(255,255,255,0.72);
      font-style: italic;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      line-height: 1.7;
    }

    /* ─────────────────────────────
       BOOK A MEETING
    ───────────────────────────── */
    .book-section {
      padding: 6rem 2rem;
      background: var(--c700);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .book-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,230,186,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .book-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .book-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c300);
      margin-bottom: 1.25rem;
    }
    .book-h2 {
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1.125rem;
    }
    .book-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      background: var(--white);
      color: var(--c700);
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      font-weight: 700;
      padding: 1rem 2.25rem;
      border-radius: 10px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }
    .btn-white:hover {
      background: var(--c100);
      color: var(--c800);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .book-note {
      margin-top: 1.125rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
    }

    /* ─────────────────────────────
       FOOTER
    ───────────────────────────── */
    .footer {
      padding: 2rem 2rem;
      border-top: 1px solid var(--border-dim);
      background: rgba(0,0,0,0.2);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-logo img { height: 20px; width: auto; display: block; }
    .footer-cities {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: var(--text-faint);
      text-align: center;
      flex: 1;
    }
    .footer-copy {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: var(--text-faint);
      text-align: center;
    }

    /* ─────────────────────────────
       RESPONSIVE
    ───────────────────────────── */
    @media (max-width: 1024px) {
      .problem-grid   { grid-template-columns: 1fr; }
      .how-steps      { grid-template-columns: 1fr; }
      .how-steps::before { display: none; }
      .services-grid  { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid   { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-3px); }
      .social-grid    { grid-template-columns: 1fr; }
      .founders-grid  { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .float-cta { display: none; }
      .services-grid  { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .hero-stats { flex-direction: column; border-radius: 12px; }
      .hero-stat + .hero-stat::before { top: 0; bottom: auto; left: 20%; right: 20%; width: auto; height: 1px; }
      .social-grid    { grid-template-columns: 1fr; }
      .footer-inner   { flex-direction: column; text-align: center; gap: 0.75rem; }
    }

    /* ═══════════════════════════════════════════
       LIGHT THEME VARIABLES
    ═══════════════════════════════════════════ */
    [data-theme="light"] {
      --page-bg:       #F8FAFC;
      --nav-surface:   rgba(248,250,252,0.93);
      --mob-surface:   rgba(248,250,252,0.97);
      --surface-1:     rgba(0,0,0,0.04);
      --surface-2:     rgba(0,0,0,0.02);
      --border-subtle: rgba(0,0,0,0.10);
      --border-dim:    rgba(0,0,0,0.06);
      --text-muted:    rgba(15,23,42,0.55);
      --text-faint:    rgba(15,23,42,0.38);
      --text-dim:      rgba(15,23,42,0.72);
      --green-glow:    rgba(0,110,89,0.08);
      --green-border:  rgba(0,110,89,0.28);
      --green-glow-md: rgba(0,128,103,0.20);
    }

    /* Base text */
    [data-theme="light"] body { color: #1F2937; }

    /* Logo swap — !important beats .nav-logo img specificity */
    .logo-light { display: none !important; }
    [data-theme="light"] .logo-dark  { display: none !important; }
    [data-theme="light"] .logo-light { display: block !important; }

    /* Nav */
    [data-theme="light"] .nav         { border-bottom-color: rgba(0,110,89,0.18); }
    [data-theme="light"] .nav-links a { color: rgba(31,41,55,0.65); }
    [data-theme="light"] .nav-links a:hover { color: #1F2937; }
    [data-theme="light"] .nav-links a.active { color: var(--c700); }
    [data-theme="light"] .nav-hamburger span { background: #1F2937; }
    [data-theme="light"] .mobile-menu { border-bottom-color: rgba(0,0,0,0.10); }
    [data-theme="light"] .mobile-menu a { color: rgba(31,41,55,0.80); border-bottom-color: rgba(0,0,0,0.06); }

    /* Hero */
    [data-theme="light"] .hero {
      background-image:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,110,89,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 75%, rgba(0,77,62,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 15% 75%, rgba(0,128,103,0.05) 0%, transparent 55%);
    }
    [data-theme="light"] .hero-h1  { color: #1F2937; }
    [data-theme="light"] .hero-p   { color: rgba(15,23,42,0.65); }
    [data-theme="light"] .hero-fade { background: linear-gradient(to bottom, transparent, var(--page-bg)); }
    [data-theme="light"] .hero-stats { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.10); }
    [data-theme="light"] .hero-stat + .hero-stat::before { background: rgba(0,0,0,0.10); }

    /* Buttons */
    [data-theme="light"] .btn-outline {
      color: rgba(31,41,55,0.80);
      border-color: rgba(31,41,55,0.22);
    }
    [data-theme="light"] .btn-outline:hover {
      border-color: rgba(31,41,55,0.45);
      background: rgba(31,41,55,0.05);
    }

    /* Problem section */
    [data-theme="light"] .problem-section {
      background: #ECF5EF;
      border-color: rgba(0,110,89,0.12);
    }
    [data-theme="light"] .problem-section::before { background: rgba(0,0,0,0.02); }
    [data-theme="light"] .pull-quote blockquote   { color: rgba(31,41,55,0.88); }

    /* Services */
    [data-theme="light"] .services-section {
      background: rgba(0,0,0,0.03);
      border-color: rgba(0,0,0,0.06);
    }

    /* Pricing */
    [data-theme="light"] .pricing-price { color: #1F2937; }

    /* Social proof */
    [data-theme="light"] .social-section {
      background: rgba(0,0,0,0.04);
      border-color: rgba(0,0,0,0.06);
    }
    [data-theme="light"] .quote-text { color: rgba(31,41,55,0.88); }

    /* About */
    [data-theme="light"] .about-left-accent { color: rgba(31,41,55,0.72); }

    /* Footer */
    [data-theme="light"] .footer {
      background: rgba(0,0,0,0.04);
      border-color: rgba(0,0,0,0.06);
    }

    /* ═══════════════════════════════════════════
       THEME TOGGLE BUTTON
    ═══════════════════════════════════════════ */
    .theme-toggle-wrapper {
      position: relative;
    }
    .theme-toggle-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      color: var(--text-dim);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .theme-toggle-btn:hover {
      border-color: var(--green-border);
      color: var(--white);
    }
    [data-theme="light"] .theme-toggle-btn:hover { color: #1F2937; }

    /* Icon visibility — driven by data-theme-pref on <html> */
    .theme-icon                                  { display: none; }
    html:not([data-theme-pref]) .theme-icon-dark { display: block; }
    html[data-theme-pref="dark"]   .theme-icon-dark   { display: block; }
    html[data-theme-pref="light"]  .theme-icon-light  { display: block; }
    html[data-theme-pref="system"] .theme-icon-system { display: block; }

    /* ═══════════════════════════════════════════
       THEME PANEL
    ═══════════════════════════════════════════ */
    .theme-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: 316px;
      background: #1C2333;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 12px;
      padding: 1rem 1rem 1.25rem;
      box-shadow: 0 24px 64px rgba(0,0,0,0.60), 0 4px 16px rgba(0,0,0,0.40);
      z-index: 200;
      display: none;
    }
    .theme-panel.open {
      display: block;
      animation: themePanelIn 0.14s ease both;
    }
    @keyframes themePanelIn {
      from { opacity: 0; transform: translateY(-8px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .theme-panel-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #F5F5F5;
      margin-bottom: 0.2rem;
    }
    .theme-panel-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.40);
      margin-bottom: 0.875rem;
    }
    .theme-panel-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 0.875rem;
    }
    .theme-panel-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }
    .theme-option {
      display: flex;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      text-align: center;
    }
    .theme-preview-wrap {
      border-radius: 6px 6px 0 0;
      overflow: hidden;
      border: 1.5px solid rgba(255,255,255,0.10);
      border-bottom: 0;
      transition: border-color 0.18s;
    }
    .theme-preview-wrap svg {
      display: block;
      width: 100%;
      height: auto;
    }
    .theme-option-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: #D4D4D4;
      background: #252F40;
      border: 1.5px solid rgba(255,255,255,0.10);
      border-top: 0;
      padding: 0.4rem 0.5rem;
      border-radius: 0 0 6px 6px;
      transition: border-color 0.18s, background 0.18s, color 0.18s;
    }
    .theme-option:hover .theme-preview-wrap,
    .theme-option:hover .theme-option-label { border-color: rgba(255,255,255,0.28); }
    .theme-option.active .theme-preview-wrap,
    .theme-option.active .theme-option-label { border-color: #3B82F6; }
    .theme-option.active .theme-option-label {
      background: rgba(59,130,246,0.20);
      color: #93C5FD;
    }

    /* ─────────────────────────────
       LANGUAGE TOGGLE
    ───────────────────────────── */
    .lang-toggle {
      display: flex;
      align-items: center;
      background: var(--surface-1);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .lang-opt {
      padding: 0.45rem 0.65rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-dim);
      background: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      line-height: 1;
    }
    .lang-opt.active {
      background: var(--primary);
      color: var(--white);
    }
    .lang-sep {
      font-size: 0.75rem;
      color: var(--border-subtle);
      pointer-events: none;
      user-select: none;
    }
  #cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, calc(100vw - 2rem));
    background: var(--nav-surface, rgba(31,41,55,0.97));
    border: 1px solid var(--green-border);
    border-radius: 14px;
    padding: 1.125rem 1.375rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #cookie-banner.cookie-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    pointer-events: none;
  }
  .cookie-text {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-dim, rgba(255,255,255,0.72));
    margin: 0;
  }
  .cookie-actions {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
  }
  .cookie-decline, .cookie-accept {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .cookie-decline:hover, .cookie-accept:hover { opacity: 0.85; }
  .cookie-decline {
    background: var(--surface-1, rgba(255,255,255,0.08));
    color: var(--text-muted, rgba(255,255,255,0.55));
  }
  .cookie-accept {
    background: var(--primary, #006E59);
    color: #fff;
  }
  @media (max-width: 540px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
  }

/* ── Multi-page additions ── */
.page-main { padding-top: 68px; }
.page-hero {
  padding: 4.5rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: 'Platypi', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1F2937;
  margin-bottom: 1rem;
}
.page-hero .page-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(15,23,42,0.65);
  max-width: 42rem;
}
.fit-section, .problem-prose-section, .content-section {
  padding: 4rem 1.5rem;
}
.fit-inner, .problem-prose-inner, .content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fit-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fit-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(15,23,42,0.78);
}
.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c700);
}
.problem-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0 2.5rem;
}
.problem-paragraphs p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(15,23,42,0.72);
}
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.process-strip-item {
  font-size: 0.975rem;
  line-height: 1.55;
  color: rgba(15,23,42,0.78);
}
.process-strip-num {
  display: block;
  font-family: 'Platypi', serif;
  font-weight: 700;
  color: var(--c700);
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.service-seo {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--c700);
  font-weight: 500;
}
.pricing-tax-note {
  font-size: 0.8125rem;
  color: rgba(15,23,42,0.5);
  margin: 0.35rem 0 0.75rem;
}
.pricing-trial {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(15,23,42,0.68);
  margin: 0.15rem 0 0.1rem;
  line-height: 1.4;
}
.pricing-fiscal {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.55);
  margin-top: 0.75rem;
  font-style: italic;
}
.pricing-grid.pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  align-items: stretch;
}
.catchup-block {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(0,110,89,0.2);
  border-radius: 14px;
  background: rgba(0,110,89,0.04);
}
.catchup-block h2 {
  font-size: 1.375rem;
  color: #1F2937;
  margin-bottom: 0.75rem;
}
.catchup-price {
  font-family: 'Platypi', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c800);
  margin: 1rem 0;
}
.catchup-block ul {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.catchup-block li {
  padding-left: 1.35rem;
  position: relative;
  color: rgba(15,23,42,0.72);
  line-height: 1.5;
}
.catchup-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--c700);
}
.faq-section { margin-top: 3.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: 'Platypi', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--c700);
  border-bottom: 2px solid var(--c700);
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -0.2rem;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.faq-item p {
  font-size: 0.975rem;
  line-height: 1.65;
  color: rgba(15,23,42,0.65);
  padding: 0 0 1.15rem;
  margin: 0;
}
.faq-item h3 {
  font-size: 1.0625rem;
  color: #1F2937;
  margin-bottom: 0.5rem;
}
.approach-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.approach-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(15,23,42,0.72);
}
.contact-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.contact-primary {
  margin: 2rem 0 1.5rem;
}
.contact-secondary {
  margin-bottom: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-secondary a {
  color: var(--c700);
  font-weight: 600;
}
.contact-secondary p {
  margin-top: 0.35rem;
  color: rgba(15,23,42,0.6);
  font-size: 0.9375rem;
}
.contact-reassure {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: rgba(15,23,42,0.55);
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin: 1rem 0;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(15,23,42,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--c700); }
.nav-links a.active { color: var(--c700); font-weight: 600; }
.btn-outline-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .pricing-grid.pricing-grid-3 { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Article page ── */
.article-hero {
      padding: 10.5rem 2rem 3.5rem;
      background-color: var(--page-bg);
      background-image:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,110,89,0.20) 0%, transparent 65%);
      text-align: center;
    }
    .article-hero-inner { max-width: 780px; margin: 0 auto; }
    .article-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-dim);
      margin-bottom: 2rem;
      transition: color 0.2s;
    }
    .article-back:hover { color: var(--primary); }
    .article-kicker {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      margin-bottom: 1.25rem;
    }
    .article-title {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .article-meta {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

    /* ─────────────────────────────
       ARTICLE BODY
    ───────────────────────────── */
    .article-body {
      padding: 1rem 2rem 5rem;
      background: var(--page-bg);
    }
    .article-body-inner { max-width: 720px; margin: 0 auto; }
    .article-section { margin-top: 3.25rem; }
    .article-section:first-child { margin-top: 0; }
    .article-h2 {
      font-size: clamp(1.375rem, 2.5vw, 1.75rem);
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .article-p {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      color: var(--text-dim);
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .article-list {
      margin: 0 0 1.25rem;
      padding-left: 0;
    }
    .article-list li {
      position: relative;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0625rem;
      color: var(--text-dim);
      line-height: 1.75;
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .article-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.6rem;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--primary);
    }
    .article-card {
      border-left: 3px solid var(--primary);
      background: var(--surface-1);
      border-radius: 0 12px 12px 0;
      padding: 1.5rem 1.75rem;
      margin-bottom: 1.25rem;
    }
    .article-card h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .article-card p {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9688rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }
.article-closing {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.8;
  font-weight: 600;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

[data-theme="light"] .article-hero {
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,110,89,0.10) 0%, transparent 65%);
}
[data-theme="light"] .article-title { color: #1F2937; }
[data-theme="light"] .article-h2 { color: #1F2937; }
[data-theme="light"] .article-card h3 { color: #1F2937; }
[data-theme="light"] .article-closing { color: #1F2937; }
[data-theme="light"] .article-closing { border-top-color: rgba(0,0,0,0.08); }

a.nav-cta { border: none; font: inherit; }
[data-theme="light"] .footer-links a { color: rgba(15,23,42,0.55); }
[data-theme="light"] .footer-links a:hover { color: var(--c700); }

/* ── Services ladder ── */
.page-hero--gradient {
  max-width: none;
  padding: 5.5rem 1.5rem 3.5rem;
  background-color: var(--page-bg);
  background-image: radial-gradient(ellipse 90% 70% at 50% -15%, rgba(0,110,89,0.13) 0%, transparent 70%);
  border-bottom: 1px solid rgba(0,110,89,0.12);
}
.page-hero--gradient > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.content-section--tight { padding-top: 2.5rem; }

.service-ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: service;
}
.service-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.service-step:first-child { border-top: none; padding-top: 0.5rem; }
.service-step-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.service-step-num {
  font-family: 'Platypi', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(0,110,89,0.28);
  transition: color 0.25s;
}
.service-step:hover .service-step-num { color: var(--c700); }
.service-step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-step-outcome {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--c800);
  margin-bottom: 0.5rem;
}
.service-step-body h2 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #1F2937;
  margin-bottom: 0.625rem;
}
.service-step-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(15,23,42,0.72);
}
.service-price-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c700);
  transition: gap 0.2s, color 0.2s;
}
.service-price-anchor svg { flex-shrink: 0; }
.service-price-anchor:hover { gap: 0.65rem; color: var(--c800); }

.service-step--addon {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(0,110,89,0.2);
  border-left: 3px solid var(--c700);
  border-radius: 0 14px 14px 0;
  background: rgba(0,110,89,0.04);
}
.service-step--addon .service-step-rail {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-step--addon .service-step-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c700);
}

.service-mid-cta {
  margin: 0.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
  .service-step { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .service-step-rail { flex-direction: row; align-items: center; gap: 0.875rem; }
  .service-step--addon { padding: 1.5rem; }
}

/* ── Mobile sticky CTA bar ── */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  gap: 0.625rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--nav-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--green-border);
}
.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background 0.2s;
}
.sticky-cta-primary { background: var(--c700); color: var(--white); }
.sticky-cta-primary:active { background: var(--c800); }
.sticky-cta-secondary {
  background: #fff;
  border: 1px solid var(--green-border);
  color: var(--c700);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  #cookie-banner { bottom: 5.25rem; }
}

/* ── Pricing card emphasis and fit labels ── */
/* scale() shifted the featured card's CTA off the shared baseline */
.pricing-card.featured,
.pricing-card.featured:hover {
  transform: none;
  border-color: var(--green-border);
  box-shadow: 0 10px 34px rgba(0,110,89,0.10);
}
.pricing-card.featured:hover { transform: translateY(-3px); }
.pricing-name {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.pricing-name .pricing-badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
  background: var(--c700);
}
.pricing-fit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c700);
  padding-left: 0.625rem;
  border-left: 2px solid var(--green-border);
  margin-bottom: 1rem;
}
.pricing-norisk {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(15,23,42,0.5);
  text-align: center;
  margin-top: 0.625rem;
}
.catchup-cta { margin-top: 1.5rem; }

/* ── "How it works" strip (Tarifs + Contact) ── */
.next-steps {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: rgba(15,23,42,0.02);
}
.next-steps-h2 {
  font-size: 1.25rem;
  color: #1F2937;
  margin-bottom: 1.5rem;
}
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.next-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  font-family: 'Platypi', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c700);
  margin-bottom: 0.75rem;
}
.next-step-t {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.35rem;
}
.next-step-d {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(15,23,42,0.65);
}

/* ── About: facts strip, credentials, founder phone ── */
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin: 2rem 0 0;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0,110,89,0.2);
  border-left: 3px solid var(--c700);
  border-radius: 0 14px 14px 0;
  background: rgba(0,110,89,0.04);
}
.about-facts-label {
  grid-column: 1 / -1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c700);
  margin-bottom: 0.25rem;
}
.about-fact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(15,23,42,0.72);
}
.about-fact strong { color: #1F2937; font-weight: 600; }
.credential-chip {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c700);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.founder-phone {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}
.founder-phone a { color: var(--c700); font-weight: 600; }
.founder-phone a:hover { color: var(--c800); }
/* --text-muted is only ~4.0:1 on white; match the rest of the body copy */
.founder-bio { color: rgba(15,23,42,0.72); }
.about-norisk {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(15,23,42,0.55);
  margin-top: 0.75rem;
}

/* ── Contact: phone block, submit reassurance, fallback ── */
.contact-phones {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-phones strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #1F2937;
  margin-bottom: 0.2rem;
}
.contact-phones > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: rgba(15,23,42,0.65);
}
.contact-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.875rem;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--green-border);
  border-radius: 10px;
  background: var(--green-glow);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c700);
  transition: border-color 0.2s, background 0.2s;
}
.contact-phone:hover { border-color: var(--c700); background: rgba(0,110,89,0.09); }
.contact-phone-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.contact-phone-name {
  font-weight: 500;
  color: rgba(15,23,42,0.6);
}

/* ── Footer phone ── */
.footer-contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
}
.footer-contact a { color: var(--c700); font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--c800); }

@media (max-width: 720px) {
  .next-steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .next-steps { padding: 1.5rem; }
  .about-facts { grid-template-columns: 1fr; padding: 1.5rem; }
  .contact-phone-list { flex-direction: column; }
  .contact-phone {
    flex: 1 1 auto;
    width: 100%;
    align-items: flex-start;
  }
  .contact-phone-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}
