    /* ── Reset & base ────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --lime: #c6f135;
      --dark: #111111;
      --mid: #555555;
      --border: #e5e5e5;
      --bg: #ffffff;
      --muted: #777777;
      --light: #f5f5f5;
      --font-body: 'Inter', sans-serif;
      --font-display: 'Space Grotesk', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--dark);
      line-height: 1.5;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    ul { list-style: none; }

    /* ── Animations ──────────────────────────────────── */
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ── Navbar ──────────────────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 1px 0 var(--border);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 32px;
      max-width: 1440px;
      margin: 0 auto;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
    }
    .logo-image {
      display: block;
      width: auto;
      height: 52px;
      object-fit: contain;
    }
    .logo--footer .logo-image {
      height: 56px;
    }
    .logo-circle {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s;
    }
.nav-links a:hover { color: var(--dark); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-switch a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
}
.lang-switch a.active {
  background: var(--dark);
  color: #fff;
}
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--dark);
      color: #fff;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 100px;
      transition: background 0.2s, color 0.2s;
    }
    .nav-cta:hover { background: var(--lime); color: var(--dark); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }
    .mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 24px 32px;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      font-family: var(--font-display);
}
.mobile-menu .lang-switch {
  display: inline-flex;
  margin-top: 4px;
}
    .mobile-menu .nav-cta { margin-top: 20px; display: inline-flex; }

    /* ── Vertical social sidebar ─────────────────────── */
    .sidebar {
      position: fixed;
      left: 0; top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .sidebar a {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      padding: 10px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--muted);
      line-height: 1;
      transition: color 0.2s;
    }
    .sidebar a:hover { color: var(--dark); }
    .sidebar-line {
      width: 1px; height: 48px;
      background: var(--border);
      margin: 4px auto;
    }
    .sidebar-label {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      padding: 10px 16px;
      font-size: 10px;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    /* ── Column grid overlay ─────────────────────────── */
    .col-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding-left: 186px;
    }
    .col-grid span {
      border-left: 1px solid rgba(0,0,0,0.05);
      height: 100%;
    }
    .col-grid span:last-child { border-right: 1px solid rgba(0,0,0,0.05); }

    /* ── Hero ────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: var(--bg);
    }
    .hero-glow {
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(55px);
      opacity: 0.28;
      z-index: 1;
    }
    .hero-glow-left {
      left: -170px;
      top: 90px;
      background: radial-gradient(circle at center, rgba(198, 241, 53, 0.8) 0%, rgba(198, 241, 53, 0) 70%);
    }
    .hero-glow-right {
      right: -150px;
      top: 120px;
      background: radial-gradient(circle at center, rgba(17, 17, 17, 0.25) 0%, rgba(17, 17, 17, 0) 72%);
    }
    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 10;
      padding: 120px 24px 32px;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #6c6c6c;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 14px;
      margin-bottom: 24px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(8px);
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 6px rgba(198, 241, 53, 0.2);
      flex-shrink: 0;
    }
    .hero-starburst {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 320px; height: 320px;
      pointer-events: none;
      opacity: 0.62;
      animation: spin-slow 32s linear infinite;
    }
    .hero-dot {
      position: absolute;
      border-radius: 50%;
      background: var(--dark);
    }
    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      max-width: 700px;
      text-wrap: balance;
      position: relative;
      z-index: 2;
    }
    .hero-h1-single {
      margin-top: 4px;
      white-space: nowrap;
    }
    .hero-highlight {
      position: relative;
      z-index: 1;
    }
    .hero-highlight::after {
      content: "";
      position: absolute;
      left: -10px;
      right: -10px;
      bottom: 4px;
      height: 0.22em;
      background: linear-gradient(90deg, rgba(198, 241, 53, 0.2), rgba(198, 241, 53, 0.7), rgba(198, 241, 53, 0.22));
      border-radius: 999px;
      z-index: -1;
    }
    .hero-sub {
      margin-top: 20px;
      font-size: 20px;
      color: var(--muted);
      max-width: 620px;
      line-height: 1.55;
      position: relative;
      z-index: 2;
    }
    .hero-btns {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      z-index: 2;
    }
    .btn-dark {
      background: var(--dark);
      color: #fff;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 100px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-dark:hover { background: var(--lime); color: var(--dark); }
    .btn-outline {
      border: 1px solid var(--border);
      color: var(--dark);
      font-size: 14px;
      font-weight: 500;
      padding: 14px 28px;
      border-radius: 100px;
      transition: border-color 0.2s;
    }
    .btn-outline:hover { border-color: var(--dark); }
    .hero-word {
      width: 100%;
      overflow: hidden;
      pointer-events: none;
      margin-bottom: -12px;
      transition: transform 0.5s ease-out;
    }
    .hero-word p {
      font-family: var(--font-display);
      font-size: clamp(80px, 18vw, 220px);
      font-weight: 800;
      color: var(--lime);
      letter-spacing: -0.03em;
      line-height: 1;
      white-space: nowrap;
      user-select: none;
      margin-left: -0.02em;
    }

    /* ── Marquee ─────────────────────────────────────── */
    .marquee-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      background: var(--bg);
      padding: 12px 0;
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      margin: 0 28px;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .marquee-dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--lime);
      flex-shrink: 0;
    }

    /* ── About ───────────────────────────────────────── */
    #about {
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }
    .about-photo {
      position: relative;
      overflow: hidden;
    }
    .about-photo img {
      filter: grayscale(100%);
      height: 100%;
      object-fit: cover;
    }
    .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .about-text h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }
    .about-text p {
      margin-top: 24px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 400px;
    }
    .about-text p strong { color: var(--dark); }
    .btn-lime {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 100px;
      margin-top: 32px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-lime:hover { background: var(--dark); color: #fff; }
    .about-overflow {
      position: absolute;
      bottom: -20px; right: -8px;
      pointer-events: none;
      user-select: none;
      font-family: var(--font-display);
      font-size: clamp(60px, 12vw, 160px);
      font-weight: 800;
      color: var(--lime);
      letter-spacing: -0.03em;
      line-height: 1;
      opacity: 0.9;
    }

    /* ── Ticker (about) ──────────────────────────────── */
    .ticker-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 16px 32px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .ticker-bar svg { flex-shrink: 0; }
    .ticker-sep { width: 64px; height: 1px; background: var(--dark); }

    /* ── Services ────────────────────────────────────── */
    #services {
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }
    .services-inner {
      position: relative;
      z-index: 1;
      padding: 80px 64px 24px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--border);
    }
    .service-card {
      padding: 40px;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }
    .service-card:nth-child(3n) { border-right: none; }
    .service-card:hover { background: var(--light); }
    .service-num {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 800;
      line-height: 1;
      color: rgba(198, 241, 53, 0.3);
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      margin-top: 16px;
    }
    .service-card p {
      margin-top: 10px;
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted);
    }
    .services-overflow-wrap {
      position: relative;
      overflow: hidden;
      padding-bottom: 8px;
    }
    .stamp-badge {
      position: absolute;
      right: 12%; top: 8px;
      z-index: 10;
      width: 112px; height: 112px;
      animation: spin-slow 12s linear infinite;
    }
    .explore-cta {
      position: absolute;
      right: 32px; bottom: 70px;
      z-index: 10;
      width: 128px; height: 128px;
      border-radius: 50%;
      background: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1.4;
      transition: transform 0.2s;
    }
    .explore-cta:hover { transform: scale(1.05); }
    .overflow-word {
      width: 100%;
      overflow: hidden;
      pointer-events: none;
    }
    .overflow-word p {
      font-family: var(--font-display);
      font-size: clamp(80px, 18vw, 220px);
      font-weight: 800;
      color: var(--lime);
      letter-spacing: -0.03em;
      line-height: 1;
      white-space: nowrap;
      user-select: none;
      margin-left: -0.02em;
    }

    /* ── Care Plans ──────────────────────────────────── */
    #care-plans {
      background: var(--bg);
      overflow: hidden;
    }
    .care-intro {
      padding: 80px 64px 48px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .care-intro-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
    }
    .section-label {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .section-h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-wrap: balance;
      max-width: 560px;
    }
    .care-intro-right p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 320px;
    }
    .care-callout {
      margin: 0 64px 32px;
      background: var(--dark);
      color: #fff;
      border-radius: 20px;
      padding: 48px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .care-callout .sub { font-size: 12px; font-family: var(--font-display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
    .care-callout h3 {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 800;
      line-height: 1.25;
    }
    .care-callout h3 em { color: var(--lime); font-style: normal; }
    .care-callout p { font-size: 14px; line-height: 1.7; color: #aaa; max-width: 280px; }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin: 0 64px 80px;
      border: 1px solid var(--border);
      gap: 1px;
      background: var(--border);
    }
    .plan-card {
      background: var(--bg);
      padding: 40px;
      display: flex;
      flex-direction: column;
    }
    .plan-card.highlighted { background: var(--dark); color: #fff; }
    .plan-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
    .plan-header h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
    }
    .plan-card.highlighted .plan-header h3 { color: #fff; }
    .plan-subtitle { font-size: 13px; margin-top: 4px; color: var(--muted); }
    .plan-card.highlighted .plan-subtitle { color: rgba(255,255,255,0.6); }
    .badge-popular {
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .plan-price {
      margin-top: 32px;
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .plan-price strong {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
    }
    .plan-card.highlighted .plan-price strong { color: #fff; }
    .plan-price span { font-size: 14px; color: var(--muted); }
    .plan-card.highlighted .plan-price span { color: rgba(255,255,255,0.5); }
    .plan-features {
      margin-top: 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .plan-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
    }
    .feature-check {
      flex-shrink: 0;
      width: 16px; height: 16px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .plan-card:not(.highlighted) .feature-check { background: var(--dark); }
    .plan-card.highlighted .feature-check { background: var(--lime); }
    .plan-card:not(.highlighted) .plan-feature span { color: var(--muted); }
    .plan-card.highlighted .plan-feature span { color: rgba(255,255,255,0.85); }
    .plan-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 40px;
      padding: 14px;
      border-radius: 100px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
    }
    .plan-card:not(.highlighted) .plan-btn { background: var(--dark); color: #fff; }
    .plan-card:not(.highlighted) .plan-btn:hover { background: var(--lime); color: var(--dark); }
    .plan-card.highlighted .plan-btn { background: var(--lime); color: var(--dark); }
    .plan-card.highlighted .plan-btn:hover { background: #fff; color: var(--dark); }

    /* ── Why ─────────────────────────────────────────── */
    .why-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-cell {
      padding: 42px 48px 46px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(42px, 4.2vw, 78px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    .stat-cell:nth-child(odd) .stat-num { color: var(--dark); }
    .stat-cell:nth-child(even) .stat-num { color: var(--lime); }
    .stat-label {
      margin-top: 14px;
      font-size: 15px;
      color: var(--muted);
      letter-spacing: 0.01em;
    }
    .why-inner {
      padding: 80px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-reasons {
      border: 1px solid var(--border);
    }
    .why-reason {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 32px;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
      cursor: default;
    }
    .why-reason:last-child { border-bottom: none; }
    .why-reason:hover { background: var(--light); }
    .reason-check {
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--lime);
      display: flex; align-items: center; justify-content: center;
    }
    .why-reason strong {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
    }
    .why-reason .arrow {
      margin-left: auto;
      color: var(--border);
      font-size: 18px;
      transition: color 0.15s;
    }
    .why-reason:hover .arrow { color: var(--dark); }

    /* ── Footer ──────────────────────────────────────── */
    #contact {
      background: var(--bg);
      overflow: hidden;
      border-top: 1px solid var(--border);
    }
    .footer-cta {
      position: relative;
      padding: 80px 64px 0;
      overflow: hidden;
    }
    .footer-cta-badge {
      position: absolute;
      right: 64px; top: 80px;
      width: 96px; height: 96px;
    }
    .badge-rotating-text {
      transform-origin: 60px 60px;
      animation: spin-slow 12s linear infinite;
    }
    .footer-cta p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .footer-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .footer-overflow {
      display: flex;
      overflow: hidden;
      pointer-events: none;
      margin-top: 16px;
      margin-bottom: 26px;
    }
    .footer-overflow span {
      font-family: var(--font-display);
      font-size: clamp(60px, 14vw, 200px);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      user-select: none;
    }
    .footer-offices {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding: 48px 64px;
      border-top: 1px solid var(--border);
    }
    .office-block p { font-size: 14px; line-height: 1.7; color: var(--muted); }
    .office-block a {
      text-decoration: none !important;
      color: #111;
    }
    .office-block a:hover {
      color: #444;
    }
    .legal-links {
      line-height: 2;
      max-width: 360px;
    }
    .office-block strong {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      display: block;
      margin-bottom: 8px;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      padding: 24px 64px;
      border-top: 1px solid var(--border);
    }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
    .footer-nav a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
    .footer-nav a:hover { color: var(--dark); }
    .footer-copy { font-size: 12px; color: var(--muted); }

    /* ── Request drawer ─────────────────────────────── */
    .request-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, 0.42);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
      z-index: 120;
    }
    .request-drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(520px, 100vw);
      background: linear-gradient(180deg, #0d1118 0%, #0a0d12 100%);
      border-left: 1px solid rgba(198, 241, 53, 0.25);
      box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
      transform: translateX(100%);
      transition: transform 0.28s ease;
      z-index: 121;
      padding: 40px 30px 30px;
      overflow-y: auto;
    }
    .request-open .request-drawer-overlay {
      opacity: 1;
      pointer-events: auto;
    }
    .request-open .request-drawer { transform: translateX(0); }
    .request-open { overflow: hidden; }
    .request-close {
      position: absolute;
      top: 12px;
      right: 14px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(198, 241, 53, 0.35);
      border-radius: 50%;
      background: #0f141c;
      color: #fff;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .request-kicker {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(198, 241, 53, 0.85);
      margin: 2px 0 10px;
    }
    .request-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 5.2vw, 44px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      color: #fff;
    }
    .request-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.65;
      max-width: 370px;
    }
    .request-form {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }
    .request-form label {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.58);
      display: grid;
      gap: 8px;
    }
    .request-form input,
    .request-form textarea {
      font-family: var(--font-body);
      font-size: 15px;
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 12px;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .request-form input:focus,
    .request-form textarea:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 4px rgba(198, 241, 53, 0.2);
    }
    .request-form input::placeholder,
    .request-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.45);
    }
    .request-form textarea {
      resize: vertical;
      min-height: 108px;
    }
    .request-form label.request-consent {
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
      text-transform: none;
      letter-spacing: normal;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.76);
      line-height: 1.55;
      margin-top: 0;
    }
    .request-form label.request-consent input {
      appearance: none;
      margin: 3px 0 0;
      width: 16px;
      height: 16px;
      padding: 0;
      border-radius: 5px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.05);
      position: relative;
      cursor: pointer;
      box-shadow: none;
    }
    .request-form label.request-consent input:checked {
      background: var(--lime);
      border-color: var(--lime);
    }
    .request-form label.request-consent input:checked::after {
      content: "";
      position: absolute;
      left: 5px;
      top: 2px;
      width: 4px;
      height: 8px;
      border: solid #111;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }
    .request-form label.request-consent a {
      color: #fff;
      text-decoration: underline;
    }
    .request-submit {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: center;
      margin-top: 8px;
      border: none;
      cursor: pointer;
      background: var(--lime);
      color: #111;
    }
    .request-submit:hover {
      background: #fff;
      color: #111;
    }
    .request-feedback {
      margin: 4px 2px 0;
      font-size: 13px;
      line-height: 1.4;
      min-height: 18px;
    }
    .request-feedback.is-ok {
      color: rgba(198, 241, 53, 0.95);
    }
    .request-feedback.is-error {
      color: #ff8f8f;
    }

    /* ── Responsive ──────────────────────────────────── */
    @media (max-width: 1200px) {
      .about-text { padding: 60px 48px; }
      .services-inner { padding: 60px 40px 16px; }
      .plans-grid, .care-callout { margin-left: 40px; margin-right: 40px; }
      .why-inner, .footer-cta, .footer-offices, .footer-bottom, .care-intro { padding-left: 40px; padding-right: 40px; }
    }
    @media (max-width: 1024px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .sidebar { display: none; }
      .col-grid { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .about-photo { height: 400px; }
      .about-text { padding: 48px 32px; }
      .hero-sub { font-size: 18px; max-width: 560px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card:nth-child(2n) { border-right: none; }
      .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
      .service-card:nth-child(2n):not(:nth-child(3n)) { border-right: none; }
      .plans-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-cell:nth-child(2) { border-right: none; }
      .stat-cell:nth-child(4) { border-right: none; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-offices { grid-template-columns: repeat(2, 1fr); }
      .care-intro-top { flex-direction: column; align-items: flex-start; }
      .care-callout { flex-direction: column; }
    }
    @media (max-width: 640px) {
      .navbar-inner { padding: 16px 20px; }
      .logo-image { height: 44px; }
      .logo--footer .logo-image { height: 48px; }
      .hero-content { padding: 100px 20px 24px; }
      .hero-eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 0.1em;
      }
      .hero-sub { font-size: 16px; max-width: 100%; }
      .hero-h1-single {
        white-space: normal;
      }
      .hero-word { margin-bottom: -4px; }
      .hero-glow-right { display: none; }
      .services-inner { padding: 48px 20px 12px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none !important; }
      .plans-grid, .care-callout { margin-left: 20px; margin-right: 20px; }
      .about-text, .why-inner, .footer-cta, .footer-offices, .footer-bottom, .care-intro { padding-left: 20px; padding-right: 20px; }
      .footer-offices { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-cell {
        padding: 28px 20px 30px;
        min-height: 165px;
      }
      .stat-num {
        white-space: normal;
        font-size: clamp(34px, 9.5vw, 52px);
      }
      .stat-label { font-size: 14px; }
      .ticker-bar { display: none; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .plans-grid { gap: 1px; }
      .care-callout { padding: 32px 24px; }
      .request-drawer {
        width: 100vw;
        padding: 34px 18px 20px;
      }
    }
