/* ── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #F8F6F1;
      color: #1A1A1A;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── TOKENS ────────────────────────────────────────────────── */
    :root {
      --navy:       #0F2744;
      --navy-mid:   #1A3A5C;
      --sage:       #5C8A6E;
      --sage-light: #7AAD8C;
      --cream:      #F8F6F1;
      --white:      #FFFFFF;
      --border:     #E2DDD4;
      --slate:      #4A6280;
      --text:       #1A1A1A;
      --text-mid:   #4A4A4A;
    }

    /* ── NAV ───────────────────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 68px;
    }
    .nav-logo img {
      height: 40px;
      width: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--slate);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav-phone {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--slate);
    }
    .nav-cta {
      background: var(--sage);
      color: var(--white);
      font-size: 0.83rem;
      font-weight: 600;
      padding: 9px 20px;
      border-radius: 5px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--sage-light); }
    .nav-hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
      background: none;
      border: none;
      z-index: 200;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 5%;
      flex-direction: column;
      gap: 4px;
      z-index: 99;
      box-shadow: 0 8px 24px rgba(15,39,68,0.1);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      display: block;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--sage); }
    .mobile-nav-cta {
      margin-top: 12px;
      background: var(--sage);
      color: var(--white) !important;
      padding: 14px 20px !important;
      border-radius: 6px;
      text-align: center;
      border-bottom: none !important;
    }
    .mobile-nav-cta:hover { background: var(--sage-light); color: var(--white) !important; }

    /* ── HERO ──────────────────────────────────────────────────── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    .hero-left {
      background: var(--navy);
      padding: 72px 5% 72px 5%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.67rem;
      font-weight: 700;
      color: var(--sage-light);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.6rem, 4vw, 3.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 8px;
    }
    .hero-h1-italic {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.6rem, 4vw, 3.8rem);
      font-weight: 600;
      color: var(--sage-light);
      line-height: 1.1;
      letter-spacing: -0.025em;
      display: block;
      margin-bottom: 28px;
    }
    .sage-rule {
      width: 44px;
      height: 3px;
      background: var(--sage);
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .hero-sub {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.58);
      line-height: 1.78;
      margin-bottom: 36px;
      max-width: 440px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--sage);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }
    .btn-ghost {
      color: rgba(255,255,255,0.65);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .btn-ghost:hover { color: var(--white); }
    .btn-ghost .arr { color: var(--sage); transition: transform 0.2s; }
    .btn-ghost:hover .arr { transform: translateX(3px); }

    .hero-right {
      background: var(--navy-mid);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 44px;
    }
    .hero-geo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .vert-cards {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      width: 100%;
      max-width: 320px;
    }
    .vc {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      transition: border-color 0.2s, background 0.2s;
    }
    .vc:hover {
      border-color: rgba(92,138,110,0.4);
      background: rgba(92,138,110,0.08);
    }
    .vc.featured {
      border-color: rgba(92,138,110,0.45);
      background: rgba(92,138,110,0.12);
    }
    .vc-icon {
      width: 28px;
      height: 28px;
      background: rgba(92,138,110,0.2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }
    .vc-name {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }
    .vc.featured .vc-name { color: var(--sage-light); }
    .vc-desc {
      font-size: 0.67rem;
      color: rgba(255,255,255,0.42);
      line-height: 1.5;
    }

    /* ── TRUST SECTION ─────────────────────────────────────────── */
    .trust-section {
      background: var(--navy);
      padding: 52px 5%;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .trust-card {
      background: var(--white);
      border: 1px solid rgba(255,255,255,0.09);
      border-top: 3px solid var(--sage);
      border-radius: 10px;
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .trust-icon {
      width: 32px;
      height: 32px;
      background: rgba(92,138,110,0.18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }
    .trust-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .trust-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--sage-light);
      line-height: 1.3;
    }
    .trust-desc {
      font-size: 0.71rem;
      color: var(--slate);
      line-height: 1.55;
    }

    /* ── SHARED SECTION STYLES ─────────────────────────────────── */
    .section { padding: 72px 5%; }
    .section-white { background: var(--white); }
    .section-cream { background: var(--cream); }
    .section-navy { background: var(--navy); }
    .sec-eye {
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 14px;
      display: block;
    }
    .section-navy .sec-eye { color: var(--sage-light); }
    .sec-h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3vw, 2.4rem);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      max-width: 640px;
    }
    .section-navy .sec-h2 { color: var(--white); }
    .sec-sub {
      font-size: 0.97rem;
      color: var(--slate);
      line-height: 1.75;
      max-width: 600px;
      margin-bottom: 48px;
    }

    /* ── PROBLEM ───────────────────────────────────────────────── */
    .section-problem {
      position: relative;
      background-image: linear-gradient(rgba(248,246,241,0.94), rgba(248,246,241,0.94)), url('assets/images/dentist-kids-texture.jpg');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
    }
    .three-col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .col-card {
      background: var(--white);
      border-radius: 10px;
      border: 1px solid var(--border);
      border-top: 3px solid var(--sage);
      padding: 26px;
    }
    .section-cream .col-card { background: var(--white); }
    .section-white .col-card { background: var(--cream); }
    .col-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .col-body {
      font-size: 0.83rem;
      color: var(--slate);
      line-height: 1.7;
    }
    .col-body strong { color: var(--navy); font-weight: 600; }
    .section-footer {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      font-size: 0.93rem;
      font-weight: 500;
      color: var(--navy);
    }
    .section-footer span { color: var(--sage); }

    /* ── TIMELINE ──────────────────────────────────────────────── */
    .tl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .tl-steps {
      display: flex;
      flex-direction: column;
    }
    .tl-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .tl-step:last-child { border-bottom: none; }
    .tl-dot {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .tl-dot.done {
      background: #F0F4F2;
      border: 1.5px solid var(--sage);
      color: var(--sage);
    }
    .tl-dot.now {
      background: var(--sage);
      color: var(--white);
    }
    .tl-dot.next {
      background: var(--cream);
      border: 1.5px solid var(--border);
      color: var(--slate);
    }
    .tl-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 3px;
      line-height: 1.4;
    }
    .tl-title.muted { color: var(--slate); }
    .tl-desc {
      font-size: 0.78rem;
      color: var(--slate);
      line-height: 1.55;
    }
    .tl-badge {
      background: var(--sage);
      color: var(--white);
      font-size: 0.62rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-left: 8px;
      vertical-align: middle;
    }
    .tl-insight {
      background: var(--navy);
      border-radius: 14px;
      padding: 32px;
    }
    .tl-insight-label {
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-bottom: 14px;
      display: block;
    }
    .tl-insight-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.55;
      margin-bottom: 16px;
      font-style: italic;
    }
    .tl-insight-body {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.48);
      line-height: 1.7;
    }

    /* ── WHAT WE BUILD ─────────────────────────────────────────── */
    .section-build {
      position: relative;
      background-image: radial-gradient(rgba(15,39,68,0.055) 1.6px, transparent 1.6px);
      background-size: 22px 22px;
      background-position: 0 0;
    }
    .build-highlight {
      background: var(--navy);
      border-radius: 10px;
      padding: 22px 26px;
      margin-bottom: 36px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .build-highlight-icon {
      width: 36px;
      height: 36px;
      background: rgba(92,138,110,0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .build-highlight-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
    }
    .build-highlight-text strong { color: var(--sage-light); font-weight: 600; }
    .build-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .build-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .build-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--sage);
      line-height: 1;
    }
    .build-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }
    .build-body {
      font-size: 0.82rem;
      color: var(--slate);
      line-height: 1.65;
      flex: 1;
    }
    .build-tag {
      display: inline-block;
      background: #F0F4F2;
      color: var(--sage);
      font-size: 0.67rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      width: fit-content;
    }

    /* ── SPECIALTIES ───────────────────────────────────────────── */
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .spec-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 26px;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    a.spec-card { display: block; }
    .spec-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--sage);
      transform: scaleX(0);
      transition: transform 0.25s;
      transform-origin: left;
    }
    .spec-card:hover {
      box-shadow: 0 8px 32px rgba(15,39,68,0.08);
      transform: translateY(-2px);
    }
    .spec-card:hover::before { transform: scaleX(1); }
    .spec-icon {
      width: 46px;
      height: 46px;
      background: #F0F4F2;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .spec-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .spec-desc {
      font-size: 0.83rem;
      color: var(--slate);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .spec-link {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--sage);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── PROCESS ───────────────────────────────────────────────── */
    .proc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 52px;
      position: relative;
    }
    .proc-grid::before {
      content: '';
      position: absolute;
      top: 26px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: rgba(255,255,255,0.08);
    }
    .proc-step { padding: 0 8px; }
    .proc-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(92,138,110,0.15);
      border: 1px solid rgba(92,138,110,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--sage-light);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .proc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .proc-desc {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.48);
      line-height: 1.65;
    }

    /* ── PORTFOLIO ─────────────────────────────────────────────── */
    .port-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .port-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    a.port-card { display: block; cursor: pointer; }
    .port-card:hover {
      box-shadow: 0 12px 40px rgba(15,39,68,0.1);
      transform: translateY(-3px);
    }
    .port-thumb.live-riverside { background: linear-gradient(135deg, #0F2744, #1B6CA8); }
    .port-thumb.live-lakeview  { background: linear-gradient(135deg, #4A90C4, #7BC4A0); }
    .port-thumb.live-peak      { background: linear-gradient(135deg, #1F3B2C, #4A7C5C); }
    .port-live-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(255,255,255,0.95);
      color: var(--navy);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px 4px 8px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .port-live-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }
    .port-live-brand {
      text-align: center;
      padding: 0 22px;
    }
    .port-live-name {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 8px;
    }
    .port-live-tag {
      font-size: 0.72rem;
      font-style: italic;
      color: rgba(255,255,255,0.65);
      line-height: 1.4;
    }
    .port-thumb {
      height: 160px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .port-thumb.dental   { background: linear-gradient(135deg, #0F4C75, #1B6CA8); }
    .port-thumb.chiro    { background: linear-gradient(135deg, #2D4A3E, #4A7C5C); }
    .port-thumb.therapy  { background: linear-gradient(135deg, #3D2B55, #6B4E8A); }
    .port-thumb.eye      { background: linear-gradient(135deg, #1A3A5C, #2E6DA4); }
    .port-thumb.psych    { background: linear-gradient(135deg, #3D2B1F, #7B4F38); }
    .port-thumb.spec     { background: linear-gradient(135deg, #1C3A4A, #2E7D8C); }
    .port-mock {
      position: absolute;
      inset: 16px;
      background: rgba(255,255,255,0.1);
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 12px;
    }
    .mock-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.3); }
    .mock-bar.s { width: 50%; }
    .mock-bar.m { width: 75%; }
    .mock-bar.f { width: 100%; }
    .mock-body {
      flex: 1;
      background: rgba(255,255,255,0.07);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mock-body span {
      font-size: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .port-info { padding: 16px 18px; }
    .port-tag {
      font-size: 0.67rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--sage);
      margin-bottom: 4px;
    }
    .port-name {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 3px;
    }
    .port-loc { font-size: 0.76rem; color: var(--slate); }
    .port-view {
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--sage);
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── PRICING ───────────────────────────────────────────────── */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }
    .price-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px;
      position: relative;
    }
    .price-card.featured {
      background: var(--navy);
      border-color: var(--navy);
      transform: scale(1.02);
      box-shadow: 0 20px 60px rgba(15,39,68,0.2);
    }
    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--sage);
      color: var(--white);
      font-size: 0.67rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      white-space: nowrap;
    }
    .price-tier {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--slate);
      margin-bottom: 8px;
    }
    .price-card.featured .price-tier { color: var(--sage-light); }
    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 6px;
    }
    .price-card.featured .price-amount { color: var(--white); }
    .price-tagline {
      font-size: 0.82rem;
      color: var(--slate);
      margin-bottom: 22px;
      line-height: 1.5;
    }
    .price-card.featured .price-tagline { color: rgba(255,255,255,0.5); }
    .price-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 26px;
    }
    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.83rem;
      color: var(--text-mid);
      line-height: 1.4;
    }
    .price-card.featured .price-features li { color: rgba(255,255,255,0.72); }
    .pf-check {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      color: var(--sage);
      margin-top: 1px;
    }
    .price-card.featured .pf-check { color: var(--sage-light); }
    .price-btn {
      width: 100%;
      padding: 13px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
      border: 1.5px solid var(--navy);
      color: var(--navy);
    }
    .price-btn:hover { background: var(--navy); color: var(--white); }
    .price-card.featured .price-btn {
      background: var(--sage);
      color: var(--white);
      border-color: var(--sage);
    }
    .price-card.featured .price-btn:hover { background: var(--sage-light); }
    .price-plan {
      font-size: 0.76rem;
      color: var(--slate);
      margin-top: 14px;
      line-height: 1.6;
    }
    .price-card.featured .price-plan { color: rgba(255,255,255,0.38); }
    .price-note {
      text-align: center;
      margin-top: 32px;
      font-size: 0.88rem;
      color: var(--slate);
    }
    .price-note strong { color: var(--navy); }

    /* ── ABOUT ─────────────────────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-visual {
      background: var(--navy);
      border-radius: 16px;
      padding: 36px;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .about-geo {
      position: absolute;
      right: -40px;
      top: -40px;
      opacity: 0.07;
    }
    .about-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }
    .about-role {
      font-size: 0.8rem;
      color: var(--sage-light);
      font-weight: 500;
      margin-bottom: 28px;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .about-stat {
      background: rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 14px;
    }
    .about-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
    }
    .about-stat-label {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.42);
      line-height: 1.4;
    }
    .about-p {
      font-size: 0.93rem;
      color: var(--text-mid);
      line-height: 1.78;
      margin-bottom: 16px;
    }
    .about-p:last-child { margin-bottom: 0; }

    /* ── CTA ───────────────────────────────────────────────────── */
    .cta-section {
      background: var(--navy);
      padding: 80px 5%;
      text-align: center;
    }
    .cta-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-sub {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.52);
      margin-bottom: 44px;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .cta-form {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .cta-input {
      padding: 13px 18px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      min-width: 185px;
      outline: none;
      transition: border-color 0.2s;
    }
    .cta-input::placeholder { color: rgba(255,255,255,0.35); }
    .cta-input:focus { border-color: rgba(92,138,110,0.6); }
    .cta-select {
      padding: 13px 18px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.55);
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      min-width: 200px;
      outline: none;
      cursor: pointer;
    }
    .cta-select option { background: var(--navy); color: var(--white); }
    .cta-btn {
      background: var(--sage);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 13px 28px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .cta-btn:hover { background: var(--sage-light); }
    .cta-note {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }
    .cta-btn:disabled { opacity: 0.6; cursor: default; }
    .cta-success {
      display: none;
      flex-direction: column;
      align-items: center;
      max-width: 460px;
      margin: 0 auto;
      padding: 8px 0 4px;
    }
    .cta-success.show { display: flex; }
    .cta-success-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--sage);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .cta-success-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }
    .cta-success-body {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }

    /* ── FOOTER ────────────────────────────────────────────────── */
    footer {
      background: #080F1A;
      padding: 56px 5% 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo img { height: 36px; width: auto; margin-bottom: 14px; }
    .footer-tagline {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.65;
      margin-bottom: 14px;
      max-width: 240px;
    }
    .footer-phone {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      font-weight: 500;
    }
    .footer-col h4 {
      font-size: 0.67rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.28);
      margin-bottom: 16px;
    }
    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col li {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      cursor: pointer;
      transition: color 0.2s;
    }
    .footer-col li:hover { color: rgba(255,255,255,0.8); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-copy {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.22);
    }

    /* ── RESPONSIVE ────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { min-height: 320px; }
      .trust-grid { grid-template-columns: repeat(3, 1fr); }
      .three-col { grid-template-columns: 1fr 1fr; }
      .tl-grid { grid-template-columns: 1fr; gap: 40px; }
      .build-grid { grid-template-columns: 1fr 1fr; }
      .spec-grid { grid-template-columns: 1fr 1fr; }
      .proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .proc-grid::before { display: none; }
      .port-grid { grid-template-columns: 1fr 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
      .about-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-phone { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .hero-h1 { font-size: 2.2rem; }
      .hero-h1-italic { font-size: 2.2rem; }
      .section { padding: 48px 5%; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .three-col { grid-template-columns: 1fr; }
      .build-grid { grid-template-columns: 1fr; }
      .spec-grid { grid-template-columns: 1fr; }
      .proc-grid { grid-template-columns: 1fr; }
      .port-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-form { flex-direction: column; align-items: center; }
      .cta-input, .cta-select { min-width: 280px; width: 100%; max-width: 360px; }
      .trust-card { padding: 14px 12px; }
      .trust-num { font-size: 1.3rem; }
      .trust-label { font-size: 0.68rem; }
      .trust-desc { display: none; }
      .hero-right { min-height: 260px; }
      .price-grid { gap: 16px; }
      .about-stats { grid-template-columns: 1fr 1fr; }
    }

/* ── SUBPAGE HERO (specialty & contact pages) ─────────────────── */
.subpage-hero {
  background: var(--navy);
  padding: 64px 5% 56px;
  position: relative;
  overflow: hidden;
}
.subpage-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.subpage-hero-geo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.subpage-crumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.subpage-crumb a { color: var(--sage-light); font-weight: 600; }
.subpage-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.subpage-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 30px;
}

/* ── RESOURCE GUIDE BLOCK ──────────────────────────────────────── */
.resource-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 640px;
}
.resource-icon {
  width: 56px;
  height: 56px;
  background: #F0F4F2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-text-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.resource-text-body {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 12px;
}
.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: default;
}
@media (max-width: 640px) {
  .resource-block { flex-direction: column; align-items: flex-start; }
}

/* ── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-field { margin-bottom: 18px; }
.contact-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--sage); }
.contact-field textarea { resize: vertical; min-height: 110px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #F0F4F2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-body { font-size: 0.88rem; color: var(--slate); line-height: 1.6; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
