@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
      --bg: #f8fafc;
      --panel: rgba(255, 255, 255, 0.78);
      --panel-strong: rgba(255, 255, 255, 0.92);
      --line: rgba(15, 23, 42, 0.08);
      --text: #1f2937;
      --muted: #64748b;
      --primary: #1e3a8a;
      --secondary: #4f46e5;
      --accent: #00c896;
      --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
      --shadow-soft: 0 16px 50px rgba(30, 58, 138, 0.08);
      --radius: 24px;
      --radius-sm: 18px;
      --container: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(0, 200, 150, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 35%, #eef2ff 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

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

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 100;
      padding: 10px 14px;
      border-radius: 8px;
      color: white;
      background: var(--primary);
      transform: translateY(-150%);
      transition: transform 160ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--line);
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .eyebrow::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #60a5fa);
      box-shadow: 0 0 0 6px rgba(0, 200, 150, 0.10);
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-heading {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 28px;
    }

    .section-heading.center {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .section-heading h1,
    .section-heading h2,
    .hero h1,
    .mission-title,
    .cta-banner h2 {
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin: 0;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 3vw, 3rem);
    }

    .section-heading h1,
    .mission-title {
      font-size: clamp(2rem, 3.6vw, 3.6rem);
    }

    .mission-title {
      margin-top: 16px;
    }

    .section-heading p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .blog-list-card {
      overflow: hidden;
    }

    .blog-list-image {
      width: calc(100% + 48px);
      max-width: none;
      height: 190px;
      object-fit: cover;
      margin: -24px -24px 22px;
      border-radius: 18px 18px 0 0;
    }

    .blog-card-meta {
      margin: -6px 0 12px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .blog-post-page {
      background: #f4f4f4;
    }

    .blog-post-shell {
      padding: 56px 0 80px;
    }

    .blog-post {
      width: min(100%, 760px);
      margin: 0 auto;
      padding: 36px 44px 48px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.12);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    }

    .blog-post-header {
      margin-bottom: 24px;
    }

    .blog-post-kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: #64748b;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .blog-post h1 {
      margin: 0;
      color: #111827;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .blog-post-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
      color: #64748b;
      font-size: 0.92rem;
    }

    .blog-post-hero {
      width: 100%;
      height: auto;
      margin: 24px 0 26px;
    }

    .blog-post-content {
      color: #111827;
      font-size: 1rem;
      line-height: 1.68;
    }

    .blog-post-content p {
      margin: 0 0 18px;
    }

    .blog-post-content h2 {
      margin: 30px 0 12px;
      color: #111827;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(1.35rem, 2.5vw, 1.8rem);
      line-height: 1.2;
    }

    .blog-post-content h3 {
      margin: 24px 0 8px;
      color: #111827;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: 1.12rem;
      line-height: 1.35;
    }

    .blog-post-content a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .blog-post-content ul {
      margin: 0 0 20px;
      padding-left: 24px;
    }

    .blog-post-table-wrap {
      margin: 22px 0 28px;
      overflow-x: auto;
    }

    .blog-post-table {
      width: 100%;
      min-width: 560px;
      border-collapse: collapse;
      color: #111827;
      font-size: 0.96rem;
    }

    .blog-post-table th,
    .blog-post-table td {
      padding: 10px 12px;
      border: 1px solid #cbd5e1;
      text-align: left;
      vertical-align: top;
    }

    .blog-post-table th {
      background: #f8fafc;
      font-weight: 700;
    }

    .blog-post-content li {
      margin-bottom: 8px;
    }

    .blog-post-next {
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid #d1d5db;
      font-size: 1.05rem;
    }

    .blog-post-next a {
      color: #111827;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .blog-share {
      display: flex;
      gap: 24px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid #d1d5db;
      color: #111827;
      font-weight: 700;
    }

    .blog-share a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      color: #111827;
      text-decoration: none;
    }

    .blog-share a:hover,
    .blog-share a:focus-visible {
      color: var(--secondary);
    }

    @media (max-width: 640px) {
      .blog-post-shell {
        padding: 28px 0 48px;
      }

      .blog-post {
        padding: 26px 20px 34px;
      }

      .blog-post h1 {
        font-size: clamp(1.8rem, 8vw, 2.45rem);
      }

      .blog-post-content {
        font-size: 1rem;
        line-height: 1.65;
      }
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(248, 250, 252, 0.72);
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--primary);
    }

    .brand-badge {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .brand-logo {
      width: 188px;
      height: auto;
      display: block;
      object-fit: contain;
      filter: none;
    }

    .nav .brand-logo {
      width: 220px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 28px;
      flex: 1;
      min-width: 0;
      color: var(--muted);
      font-weight: 600;
      flex-wrap: nowrap;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 10px 0;
      white-space: nowrap;
      color: var(--primary);
      transition: color 220ms ease;
      font-size: 0.98rem;
      line-height: 1;
    }

    .nav-links > a::after,
    .nav-dropdown-toggle::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 1px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 220ms ease;
    }

    .nav-links > a:hover,
    .nav-links > a:focus-visible,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus-visible,
    .nav-links a[aria-current="page"],
    .nav-dropdown.has-current .nav-dropdown-toggle {
      color: var(--secondary);
    }

    .nav-links > a:hover::after,
    .nav-links > a:focus-visible::after,
    .nav-links a[aria-current="page"]::after,
    .nav-dropdown-toggle:hover::after,
    .nav-dropdown-toggle:focus-visible::after,
    .nav-dropdown.has-current .nav-dropdown-toggle::after {
      transform: scaleX(1);
    }

    .nav-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .nav-dropdown-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0;
      border: 0;
      background: transparent;
      color: var(--primary);
      font: inherit;
      font-size: 0.98rem;
      font-weight: 600;
      cursor: pointer;
    }

    .nav-dropdown-toggle .chevron {
      width: 7px;
      height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 220ms ease;
    }

    .nav-dropdown.open .chevron {
      transform: rotate(225deg) translate(-1px, -1px);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: -18px;
      min-width: 210px;
      padding: 8px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 45px rgba(30, 58, 138, 0.14);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
      z-index: 5;
    }

    .nav-dropdown-menu::before {
      content: "";
      position: absolute;
      top: -7px;
      left: 28px;
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.96);
      border-left: 1px solid rgba(148, 163, 184, 0.18);
      border-top: 1px solid rgba(148, 163, 184, 0.18);
      transform: rotate(45deg);
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-menu a {
      display: flex;
      width: 100%;
      padding: 11px 12px;
      border-radius: 10px;
      color: var(--primary);
      transition: color 180ms ease, background 180ms ease;
    }

    .nav-dropdown-menu a::after { display: none; }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible,
    .nav-dropdown-menu a[aria-current="page"] {
      color: var(--secondary);
      background: rgba(79, 70, 229, 0.07);
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 12px;
      border: 1px solid rgba(30, 58, 138, 0.12);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--primary);
      font: inherit;
      font-size: 0.86rem;
      font-weight: 700;
      cursor: pointer;
    }

    .nav-toggle-bars,
    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      display: block;
      width: 17px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 220ms ease;
    }

    .nav-toggle-bars { position: relative; }
    .nav-toggle-bars::before,
    .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
    .nav-toggle-bars::before { top: -5px; }
    .nav-toggle-bars::after { top: 5px; }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-5px) rotate(-45deg); }

    .nav-actions .btn {
      border-radius: 12px;
      font-size: 0.96rem;
      padding: 12px 17px;
      box-shadow: 0 12px 28px rgba(79, 70, 229, 0.20);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 18px 36px rgba(79, 70, 229, 0.28);
    }

    .btn-secondary {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.8);
      border-color: rgba(30, 58, 138, 0.12);
      box-shadow: var(--shadow-soft);
    }

    .nav-actions .btn {
      font-size: 0.92rem;
      padding: 11px 15px;
    }

    .hero {
      position: relative;
      height: 100vh;
      min-height: 100vh;
      padding: 0;
      overflow: hidden;
      background: #ffffff;
      isolation: isolate;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      z-index: 0;
      opacity: 1;
      pointer-events: none;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      z-index: 1;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      height: 100%;
      min-height: 100vh;
      display: flex;
      align-items: flex-start;
      padding: clamp(82px, 9vh, 112px) 0 clamp(54px, 6vh, 78px);
    }

    .hero-content {
      width: min(100%, 700px);
      color: white;
      text-align: left;
      text-shadow: 0 10px 26px rgba(3, 10, 30, 0.28);
    }

    .hero-content .eyebrow {
      color: #173a7a;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 34px rgba(3, 10, 30, 0.10);
      border-color: rgba(255, 255, 255, 0.48);
      backdrop-filter: blur(18px);
    }

    .hero-title {
      margin: 18px 0 0;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(3rem, 5.4vw, 5.4rem);
      line-height: 0.96;
      letter-spacing: -0.06em;
      max-width: 9.5ch;
    }

    .hero-subtitle {
      margin: 18px 0 0;
      max-width: 42ch;
      font-size: clamp(0.98rem, 1.35vw, 1.12rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.88);
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 34px rgba(3, 10, 30, 0.16);
      font-weight: 700;
    }

    .hero-pill .check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.18);
      color: #d8ecff;
      font-size: 0.82rem;
      flex: none;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
      align-items: center;
    }

    .hero-actions .btn {
      min-width: 190px;
      justify-content: center;
      backdrop-filter: blur(18px);
      padding: 12px 18px;
    }

    .hero-actions .btn-primary {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.88), rgba(37, 99, 235, 0.76));
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: 0 20px 50px rgba(3, 10, 30, 0.22);
    }

    .hero-actions .btn-secondary {
      color: white;
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: 0 18px 40px rgba(3, 10, 30, 0.14);
    }

    .hero-rating {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(16px);
      color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 14px 30px rgba(3, 10, 30, 0.10);
      width: fit-content;
      font-weight: 700;
    }

    .hero-rating .stars {
      color: #fbbf24;
      letter-spacing: 2px;
    }

    .hero-rating .google-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #60a5fa, #22c55e);
      box-shadow: 0 0 0 5px rgba(255,255,255,0.06);
    }

    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      z-index: 3;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .scroll-indicator .mouse {
      width: 28px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.34);
      display: grid;
      place-items: start center;
      padding-top: 8px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
    }

    .scroll-indicator .mouse::before {
      content: "";
      width: 4px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      animation: scrollDot 1.6s ease-in-out infinite;
    }

    .hero-call {
      position: absolute;
      right: 24px;
      bottom: 24px;
      z-index: 4;
      min-width: 136px;
      justify-content: center;
      background: linear-gradient(135deg, #1e3a8a, #123aa4);
      color: white;
      box-shadow: 0 18px 36px rgba(30, 58, 138, 0.28);
      backdrop-filter: blur(16px);
    }

    .hero-call:hover {
      color: white;
    }

    .method-preview {
      margin-top: -1px;
      padding-top: 88px;
      padding-bottom: 96px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 34%, rgba(241, 245, 255, 0.98) 100%);
      overflow: hidden;
      isolation: isolate;
    }

    .method-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 26%),
        radial-gradient(circle at left center, rgba(0, 200, 150, 0.08), transparent 28%);
      pointer-events: none;
    }

    .method-preview-shell {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: start;
      padding: 30px;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(148, 163, 184, 0.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .method-preview-copy {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .method-preview-copy h2 {
      margin: 0;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2.35rem, 4vw, 4.3rem);
      line-height: 1.02;
      letter-spacing: -0.06em;
      color: var(--primary);
      max-width: 12ch;
    }

    .method-preview-copy p {
      margin: 0;
      max-width: 38ch;
      color: var(--muted);
      line-height: 1.8;
      font-size: 1.03rem;
    }

    .method-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .method-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(30, 58, 138, 0.08);
      border: 1px solid rgba(30, 58, 138, 0.10);
      color: var(--primary);
      font-weight: 700;
      white-space: nowrap;
      box-shadow: var(--shadow-soft);
    }

    .method-cta {
      width: fit-content;
      min-width: 180px;
    }

    .method-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-top: 2px;
    }

    .method-call {
      min-width: 160px;
      background: linear-gradient(135deg, #1e3a8a, #123aa4);
      color: white;
      box-shadow: 0 18px 36px rgba(30, 58, 138, 0.28);
    }

    .method-call:hover {
      color: white;
    }

    .method-preview-steps {
      display: grid;
      gap: 16px;
    }

    .method-step {
      position: relative;
      overflow: hidden;
      padding: 22px 22px 20px;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82));
      border: 1px solid rgba(148, 163, 184, 0.16);
      box-shadow: var(--shadow-soft);
    }

    .method-step::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.10), transparent 70%);
      pointer-events: none;
    }

    .method-step-number {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    .method-step-number::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
      box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.08);
      flex: none;
    }

    .method-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.98rem;
    }

    .brain-mapping {
      position: relative;
      padding-top: 0;
      margin-top: -1px;
      background:
        linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0.98) 38%, rgba(241, 245, 249, 1) 100%);
    }

    .brain-mapping-shell {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .brain-mapping-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
    }

    .brain-mapping-copy {
      display: grid;
      gap: 18px;
    }

    .brain-mapping-copy h2 {
      margin: 0;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2.2rem, 3.8vw, 4rem);
      line-height: 1.03;
      letter-spacing: -0.05em;
      color: var(--primary);
      max-width: 12ch;
    }

    .brain-mapping-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.85;
      font-size: 1.03rem;
    }

    .brain-mapping-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 4px;
    }

    .brain-point {
      padding: 16px;
      border-radius: 22px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(148,163,184,0.16);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 8px;
    }

    .brain-point strong {
      color: #0f172a;
      font-size: 0.98rem;
    }

    .brain-point span {
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.95rem;
    }

    .brain-mapping-visual {
      position: relative;
      min-height: 520px;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.86), transparent 20%),
        linear-gradient(180deg, rgba(226,232,240,0.92), rgba(226,232,240,0.58));
      border: 1px solid rgba(148, 163, 184, 0.16);
      box-shadow: var(--shadow-soft);
    }

    .brain-mapping-visual .asset-frame,
    .brain-mapping-visual .asset-frame img {
      border-radius: inherit;
    }

    .brain-mapping-visual .asset-frame {
      inset: 0;
    }

    .brain-mapping-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.18));
      pointer-events: none;
    }

    .brain-mapping-badge {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      z-index: 2;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.42);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
      color: #0f172a;
      font-weight: 700;
      display: grid;
      gap: 4px;
    }

    .brain-mapping-badge span {
      color: var(--muted);
      font-weight: 500;
      line-height: 1.5;
    }

    .brain-mapping-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 6px;
    }

    .brain-mapping-footer .btn {
      min-width: 180px;
    }

    /* Brain Mapping Fee Schedule / Pricing Card */
    .brain-pricing-card {
      margin-top: 36px;
      scroll-margin-top: 110px;
      padding: 38px 36px 30px;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
      border: 1px solid rgba(148, 163, 184, 0.20);
      box-shadow: var(--shadow);
      position: relative;
    }

    .pricing-card-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 34px;
    }

    .pricing-card-header .section-kicker {
      display: inline-block;
      margin-bottom: 10px;
      background: rgba(79, 70, 229, 0.08);
      color: var(--secondary);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      padding: 6px 16px;
      border-radius: 999px;
    }

    .pricing-card-header h2 {
      margin: 0 0 12px;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2rem, 3.2vw, 2.7rem);
      line-height: 1.15;
      letter-spacing: -0.04em;
      color: var(--primary);
    }

    .pricing-card-header p {
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .pricing-card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      align-items: stretch;
    }

    .pricing-plan-box {
      display: flex;
      flex-direction: column;
      padding: 32px 30px 28px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.24);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
      position: relative;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .pricing-plan-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 48px rgba(30, 58, 138, 0.12);
      border-color: rgba(79, 70, 229, 0.35);
    }

    .pricing-plan-box.featured {
      background: linear-gradient(180deg, #ffffff 0%, rgba(240, 253, 250, 0.7) 100%);
      border: 2px solid rgba(0, 200, 150, 0.55);
      box-shadow: 0 18px 45px rgba(0, 200, 150, 0.12);
    }

    .pricing-plan-box.featured:hover {
      box-shadow: 0 24px 55px rgba(0, 200, 150, 0.22);
      border-color: rgba(0, 200, 150, 0.85);
    }

    .plan-popular-badge {
      position: absolute;
      top: -13px;
      right: 28px;
      background: linear-gradient(135deg, #00c896, #059669);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      box-shadow: 0 4px 14px rgba(0, 200, 150, 0.38);
    }

    .plan-header {
      margin-bottom: 6px;
    }

    .plan-tag {
      display: inline-block;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 8px;
    }

    .pricing-plan-box.featured .plan-tag {
      color: #0d9488;
    }

    .plan-title {
      margin: 0 0 8px;
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.02em;
    }

    .plan-description {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      min-height: 48px;
    }

    .plan-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 3px;
      margin: 20px 0 22px;
      padding: 14px 0;
      border-top: 1px solid rgba(148, 163, 184, 0.16);
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .price-currency {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
    }

    .price-amount {
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      font-family: Manrope, Inter, sans-serif;
      letter-spacing: -0.03em;
    }

    .price-period {
      font-size: 0.92rem;
      color: var(--muted);
      font-weight: 500;
      margin-left: 6px;
    }

    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
      display: flex;
      flex-direction: column;
      gap: 13px;
      flex-grow: 1;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.93rem;
      color: #334155;
      line-height: 1.5;
    }

    .plan-features li .check-icon {
      flex-shrink: 0;
      margin-top: 2px;
      color: #00c896;
    }

    .plan-action {
      margin-top: auto;
    }

    .plan-btn {
      width: 100%;
      text-align: center;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 13px 24px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.98rem;
    }

    .pricing-card-footer {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px dashed rgba(148, 163, 184, 0.28);
    }

    .pricing-assurance-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #475569;
      font-size: 0.92rem;
      line-height: 1.6;
      text-align: center;
      background: rgba(241, 245, 249, 0.65);
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 16px;
      padding: 14px 20px;
    }

    .pricing-assurance-badge svg {
      color: #059669;
      flex-shrink: 0;
    }

    .brain-map-case-study {
      background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    }

    .brain-map-case-study .section-heading {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .brain-map-case-study .section-heading h2 {
      color: var(--primary);
    }

    .brain-map-example-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .brain-map-example-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(148, 163, 184, 0.2);
      box-shadow: var(--shadow-soft);
    }

    .brain-map-example-media {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 248px;
      padding: 18px;
      background: #ffffff;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }

    .brain-map-example-media img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 360px;
      object-fit: contain;
    }

    .brain-map-example-body {
      display: grid;
      gap: 12px;
      padding: 26px 28px 30px;
    }

    .brain-map-example-step {
      color: var(--secondary);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
    }

    .brain-map-example-body h3 {
      margin: 0;
      color: var(--primary);
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.35rem;
      line-height: 1.25;
    }

    .brain-map-example-body p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.75;
    }

    .brain-map-case-study-note {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      align-items: baseline;
      justify-content: center;
      max-width: 840px;
      margin: 26px auto 0;
      padding: 16px 20px;
      border-radius: 18px;
      background: rgba(30, 58, 138, 0.06);
      border: 1px solid rgba(30, 58, 138, 0.1);
      color: var(--muted);
      text-align: center;
      line-height: 1.6;
    }

    .brain-map-case-study-note strong {
      color: var(--primary);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .trust-card,
    .service-card,
    .condition-card,
    .why-card,
    .gallery-card,
    .faq-item,
    .testimonial-card {
      background: var(--panel);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(16px);
    }

    .trust-card {
      padding: 18px 20px;
      display: grid;
      gap: 10px;
      min-height: 132px;
      text-align: center;
      justify-items: center;
      transition: transform 200ms ease, box-shadow 200ms ease;
    }

    .trust-card:hover,
    .service-card:hover,
    .condition-card:hover,
    .why-card:hover,
    .gallery-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .trust-value {
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.03em;
    }

    .trust-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--secondary);
      background: rgba(79, 70, 229, 0.08);
      border: 1px solid rgba(79, 70, 229, 0.12);
      font-size: 1.05rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .service-card,
    .condition-card,
    .why-card,
    .gallery-card {
      padding: 20px;
      min-height: 210px;
      display: grid;
      gap: 14px;
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }

    .service-icon,
    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(30,58,138,0.08), rgba(79,70,229,0.12));
      color: var(--secondary);
      font-size: 1.35rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    }

    .card-title {
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .card-text {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.98rem;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      color: var(--primary);
      margin-top: auto;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 4%;
      right: 4%;
      top: 44px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(30,58,138,0.12), rgba(79,70,229,0.3), rgba(0,200,150,0.32), rgba(30,58,138,0.12));
    }

    .step {
      position: relative;
      padding-top: 76px;
      text-align: center;
    }

    .step-dot {
      position: absolute;
      top: 28px;
      left: 50%;
      transform: translateX(-50%);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
      box-shadow: 0 12px 24px rgba(79, 70, 229, 0.28);
      border: 4px solid #fff;
    }

    .step-illus {
      width: 78px;
      height: 78px;
      margin: 0 auto 14px;
      border-radius: 24px;
      background: radial-gradient(circle at top, rgba(255,255,255,0.9), rgba(79,70,229,0.12));
      border: 1px solid rgba(148,163,184,0.16);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .step h3 {
      margin: 0 0 8px;
      font-family: Poppins, Inter, sans-serif;
      font-size: 1rem;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.65;
    }

    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .condition-card {
      min-height: 160px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62)),
        radial-gradient(circle at top right, rgba(79,70,229,0.14), transparent 36%);
    }

    .condition-tag {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(30, 58, 138, 0.08);
      color: var(--primary);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .doctor-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 24px;
      align-items: stretch;
    }

    .doctor-content {
      order: 1;
    }

    .doctor-photo {
      order: 2;
    }

    .doctor-photo {
      display: flex;
      flex-direction: column;
      border-radius: 28px;
      background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .doctor-photo .asset-frame {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f172a;
      padding: 14px 14px 0 14px;
    }

    .doctor-photo .asset-frame img {
      width: 100%;
      height: auto;
      max-height: 560px;
      object-fit: contain;
      display: block;
      border-radius: 18px;
    }

    .doctor-photo::before {
      display: none;
    }

    .doctor-badge {
      position: relative;
      left: auto;
      bottom: auto;
      right: auto;
      z-index: 1;
      margin: 14px;
      padding: 16px 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: white;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .doctor-badge strong {
      display: block;
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.35rem;
      margin-bottom: 6px;
    }

    .doctor-content {
      padding: 28px;
      border-radius: calc(var(--radius) + 10px);
      background: var(--panel-strong);
      border: 1px solid rgba(148,163,184,0.14);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .mini-stat {
      padding: 16px;
      border-radius: 18px;
      background: rgba(30,58,138,0.06);
      border: 1px solid rgba(30,58,138,0.08);
    }

    .mini-stat .num {
      display: block;
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.3rem;
      color: var(--primary);
      font-weight: 800;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .testimonial-card {
      padding: 24px;
      min-height: 240px;
      display: grid;
      gap: 14px;
      background:
        radial-gradient(circle at top right, rgba(79,70,229,0.08), transparent 34%),
        var(--panel);
    }

    .testimonial-head {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .avatar {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.88), transparent 20%),
        linear-gradient(145deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 24px rgba(79,70,229,0.26);
    }

    .testimonial-name {
      margin: 0;
      font-weight: 800;
    }

    .testimonial-meta {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 16px;
    }

    .gallery-card {
      min-height: 260px;
      position: relative;
      overflow: hidden;
      color: white;
      border-radius: 20px;
      border-color: rgba(255,255,255,0.14);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
    }

    .gallery-card img,
    .asset-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .gallery-overlay {
      position: relative;
      z-index: 1;
      margin-top: auto;
      display: grid;
      gap: 8px;
    }

    .gallery-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 24%),
        linear-gradient(160deg, rgba(30,58,138,0.72), rgba(79,70,229,0.62), rgba(0,200,150,0.42));
      z-index: 0;
    }

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

    .gallery-card.small { min-height: 172px; }

    .gallery-card:nth-child(2),
    .gallery-card:nth-child(5) {
      background:
        linear-gradient(160deg, rgba(15,23,42,0.55), rgba(30,58,138,0.40)),
        radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 24%);
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      padding: 6px 18px;
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 18px 6px;
      border: 0;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      text-align: left;
      font-weight: 700;
    }

    .faq-button span:last-child {
      color: var(--primary);
      font-size: 1.2rem;
    }

    .faq-panel {
      max-height: 0;
      overflow: hidden;
      color: var(--muted);
      line-height: 1.8;
      transition: max-height 220ms ease;
      padding-right: 22px;
    }

    .faq-item.active .faq-panel {
      max-height: 220px;
      padding-bottom: 18px;
    }

    .faq-item.active .faq-button span:last-child {
      transform: rotate(45deg);
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 42px;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.24), transparent 24%),
        radial-gradient(circle at 80% 30%, rgba(0,200,150,0.22), transparent 20%),
        linear-gradient(135deg, var(--primary), var(--secondary) 58%, #0f766e);
      color: white;
      box-shadow: 0 30px 80px rgba(30, 58, 138, 0.35);
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      inset: -20% -10%;
      background:
        radial-gradient(circle at 55% 40%, rgba(255,255,255,0.18), transparent 18%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 30%);
      filter: blur(16px);
      animation: drift 14s ease-in-out infinite alternate;
    }

    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: center;
    }

    .cta-banner p {
      margin: 12px 0 0;
      max-width: 60ch;
      color: rgba(255,255,255,0.86);
      line-height: 1.8;
    }

    .contact-shell {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-copy {
      padding: 30px;
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
      border: 1px solid rgba(148, 163, 184, 0.16);
      box-shadow: var(--shadow-soft);
      display: grid;
      align-content: start;
      gap: 18px;
    }

    .contact-copy h1,
    .contact-copy h2 {
      margin: 0;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2.2rem, 3.8vw, 3.6rem);
      line-height: 1.03;
      letter-spacing: -0.05em;
      color: var(--primary);
      max-width: 12ch;
    }

    .contact-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      max-width: 55ch;
    }

    .contact-copy a {
      color: var(--primary);
      font-weight: 700;
    }

    .contact-points {
      display: grid;
      gap: 14px;
      margin-top: 6px;
    }

    .contact-point {
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(30, 58, 138, 0.05);
      border: 1px solid rgba(30, 58, 138, 0.08);
      display: grid;
      gap: 6px;
    }

    .contact-point strong {
      color: #0f172a;
      font-size: 0.98rem;
    }

    .contact-point span {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .contact-form-card {
      border-radius: 30px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .contact-jotform {
      display: block;
      width: 100%;
      min-height: 760px;
      border: 0;
      background: #fff;
    }

    .contact-steps-card {
      display: grid;
      gap: 42px;
    }

    .contact-step {
      min-width: 0;
    }

    .contact-step + .contact-step {
      padding-top: 36px;
      border-top: 1px solid rgba(148, 163, 184, 0.22);
    }

    .contact-step h2 {
      margin: 0 0 20px;
      color: #111827;
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.35rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
    }

    .contact-jotform-intake {
      min-height: 900px;
    }

    .thank-you-section {
      min-height: 60vh;
      display: grid;
      place-items: center;
    }

    .thank-you-card {
      max-width: 680px;
      margin: 0 auto;
      padding: 56px 44px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .thank-you-card h1 {
      margin: 18px 0 12px;
      color: var(--primary);
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      line-height: 1.05;
    }

    .thank-you-card p {
      margin: 0 auto 26px;
      max-width: 48ch;
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-form {
      display: grid;
      gap: 18px;
    }

    .contact-form-head {
      text-align: center;
      display: grid;
      gap: 8px;
      padding-bottom: 6px;
    }

    .contact-form-head h3 {
      margin: 0;
      color: var(--primary);
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(1.8rem, 2.8vw, 2.35rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .contact-form-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-form-head a {
      color: var(--primary);
      font-weight: 700;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 18px;
    }

    .form-grid label,
    .office-field {
      display: grid;
      gap: 8px;
    }

    .form-grid label span,
    .office-field legend {
      color: #334155;
      font-size: 0.92rem;
      font-weight: 500;
    }

    .form-grid label em {
      color: #ef4444;
      font-style: normal;
    }

    .form-grid input,
    .form-grid textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid rgba(148, 163, 184, 0.32);
      background: #fff;
      color: var(--text);
      outline: none;
      font: inherit;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .form-grid input::placeholder,
    .form-grid textarea::placeholder {
      color: #94a3b8;
    }

    .form-grid input:focus,
    .form-grid textarea:focus {
      border-color: rgba(79,70,229,0.55);
      box-shadow: 0 0 0 4px rgba(79,70,229,0.10);
    }

    .form-grid textarea {
      resize: vertical;
      min-height: 150px;
      border-radius: 10px;
    }

    .form-full {
      grid-column: 1 / -1;
    }

    .office-field {
      margin: 0;
      padding: 0;
      border: 0;
    }

    .office-field legend {
      padding: 0;
      margin-bottom: 2px;
    }

    .radio-line {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 0.96rem;
    }

    .radio-line input {
      width: 16px;
      height: 16px;
      margin: 0;
      accent-color: var(--primary);
      box-shadow: none;
    }

    .form-submit {
      width: 160px;
      margin: 0 auto;
      padding-inline: 24px;
    }

    .form-note {
      margin: -4px 0 0;
      text-align: center;
      font-size: 0.78rem;
      color: #94a3b8;
    }

    .brain-orb {
      width: 100%;
      min-height: 220px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.18);
      background:
        radial-gradient(circle at center, rgba(255,255,255,0.24), transparent 24%),
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    }

    .brain-orb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.92;
    }

    .brain-orb::before,
    .brain-orb::after {
      content: "";
      position: absolute;
      inset: 18%;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.35);
      animation: pulse 5s ease-in-out infinite;
    }

    .brain-orb::after {
      inset: 30%;
      border-color: rgba(255,255,255,0.22);
      animation-delay: 1s;
    }

    .footer {
      padding: 30px 0 52px;
      color: var(--muted);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 20px;
      padding-top: 24px;
      border-top: 1px solid rgba(148, 163, 184, 0.18);
    }

    .footer h4 {
      color: var(--text);
      margin: 0 0 14px;
      font-family: Poppins, Inter, sans-serif;
    }

    .footer a, .footer p { color: var(--muted); line-height: 1.8; margin: 0; }

    .footer .brand-logo {
      width: 228px;
    }

    .footer .hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer .hero-actions .btn-primary {
      min-width: 190px;
      justify-content: center;
      color: white;
    }

    .footer .hero-actions .btn-primary:hover {
      color: white;
    }

    .footer .hero-actions .btn-secondary {
      min-width: 190px;
      justify-content: center;
      color: var(--primary);
    }

    .footer .hero-actions .btn-secondary:hover {
      color: var(--primary);
    }

    .footer .hero-actions .btn-primary {
      background: linear-gradient(135deg, #1e3a8a, #123aa4);
      box-shadow: 0 18px 36px rgba(30, 58, 138, 0.28);
    }

    .newsletter {
      margin-top: 12px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .newsletter input {
      flex: 1 1 220px;
      padding: 14px 16px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.20);
      background: rgba(255,255,255,0.82);
      outline: none;
    }

    .section-kicker {
      margin-bottom: 18px;
    }

    .muted {
      color: var(--muted);
    }

    .centered-note {
      margin-top: 18px;
      color: var(--muted);
      text-align: center;
    }

    .floating-cta {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 60;
      box-shadow: var(--shadow);
    }

    @keyframes pulse {
      0%, 100% { transform: scale(0.98); opacity: 0.68; }
      50% { transform: scale(1.04); opacity: 1; }
    }

    @keyframes drift {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(18px, -18px, 0) scale(1.06); }
    }

    @keyframes scrollDot {
      0% { transform: translateY(0); opacity: 0.35; }
      45% { opacity: 1; }
      100% { transform: translateY(14px); opacity: 0; }
    }

    @media (max-width: 1100px) {
      .brain-mapping-grid {
        grid-template-columns: 1fr;
      }

      .brain-map-example-grid {
        grid-template-columns: 1fr;
      }

      .brain-mapping-visual {
        min-height: 420px;
      }

      .doctor-grid,
      .cta-grid,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .contact-shell {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-grid,
      .testimonials-grid,
      .why-grid,
      .conditions-grid,
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .timeline {
        grid-template-columns: repeat(2, 1fr);
      }

      .timeline::before {
        display: none;
      }

      .method-preview-shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .container { width: min(var(--container), calc(100% - 28px)); }
      .nav-inner { position: relative; flex-wrap: wrap; }
      .nav-links {
        display: none;
        order: 4;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 4px;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
      }
      .nav-links.is-open { display: flex; }
      .nav-links > a,
      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 4px;
      }
      .nav-links > a::after,
      .nav-dropdown-toggle::after { bottom: 5px; }
      .nav-dropdown { display: block; }
      .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 4px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
      }
      .nav-dropdown.open .nav-dropdown-menu { display: block; }
      .nav-dropdown-menu::before { display: none; }
      .nav-dropdown-menu a { padding: 11px 10px; }
      .nav-actions { margin-left: auto; }
      .nav-actions .btn { display: none; }
      .nav-toggle { display: inline-flex; order: 3; }
      .brand-logo { width: 180px; }
      .nav .brand-logo { width: 194px; }
      .footer .brand-logo { width: 200px; }
      .brain-mapping-shell {
        padding: 18px;
        border-radius: 28px;
      }
      .brain-mapping-points {
        grid-template-columns: 1fr;
      }
      .brain-mapping-visual {
        min-height: 300px;
        border-radius: 24px;
      }
      .brain-pricing-card {
        padding: 28px 18px 22px;
        border-radius: 28px;
        margin-top: 24px;
      }
      .pricing-card-header {
        margin-bottom: 24px;
      }
      .pricing-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .pricing-plan-box {
        padding: 24px 20px;
      }
      .pricing-assurance-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.88rem;
      }
      .contact-form-card,
      .contact-copy {
        padding: 20px;
        border-radius: 24px;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-submit {
        width: 100%;
      }
      .hero-inner {
        padding: 86px 0 68px;
      }
      .hero-content {
        width: 100%;
      }
      .hero-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
        max-width: 100%;
      }
      .hero-subtitle {
        max-width: 100%;
      }
      .hero-actions .btn {
        width: 100%;
        min-width: 0;
      }
      .hero-call {
        right: 14px;
        bottom: 14px;
        min-width: 124px;
      }
      .method-preview {
        padding-top: 72px;
        padding-bottom: 72px;
      }
      .method-preview-shell {
        padding: 20px;
        border-radius: 28px;
      }
      .method-preview-copy h2 {
        max-width: 100%;
        font-size: clamp(2.1rem, 10vw, 3.4rem);
      }
      .method-preview-copy p {
        max-width: 100%;
      }
      .method-cta {
        width: 100%;
      }
      .services-grid,
      .trust-grid,
      .testimonials-grid,
      .why-grid,
      .conditions-grid,
      .gallery-grid,
      .timeline,
      .stat-row {
        grid-template-columns: 1fr;
      }

      .section { padding: 72px 0; }
      .section-heading { flex-direction: column; align-items: start; }
      .cta-banner { padding: 28px; }
      .floating-cta { right: 14px; bottom: 14px; }
    }

    /* Homepage hero refresh: preserve the existing palette while matching the new reference layout. */
    .hero {
      height: auto;
      min-height: 680px;
      overflow: hidden;
      background:
        radial-gradient(circle at 82% 22%, rgba(79, 70, 229, 0.18), transparent 28%),
        radial-gradient(circle at 55% 80%, rgba(0, 200, 150, 0.08), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #eef2ff 58%, #dbeafe 100%);
    }

    .hero::before {
      background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.68) 42%, rgba(219,234,254,0.18) 100%);
      z-index: 1;
    }

    .hero-inner {
      height: auto;
      min-height: 0;
      padding: 82px 0 32px;
    }

    .hero-layout {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
      align-items: center;
      gap: 22px;
    }

    .hero-content {
      width: min(100%, 620px);
      color: var(--primary);
      text-shadow: none;
    }

    .hero-content .eyebrow {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(30, 58, 138, 0.10);
      box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
    }

    .hero-title {
      margin-top: 22px;
      color: var(--primary);
      font-size: clamp(3.25rem, 5.4vw, 5.6rem);
      line-height: 0.98;
      max-width: 9.5ch;
    }

    .hero-subtitle {
      color: #526783;
      max-width: 43ch;
      text-shadow: none;
    }

    .hero-actions {
      margin-top: 28px;
    }

    .hero-actions .btn {
      min-width: 174px;
      padding: 13px 18px;
    }

    .hero-actions .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      box-shadow: 0 16px 32px rgba(79, 70, 229, 0.22);
    }

    .hero-actions .btn-secondary {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.68);
      border-color: rgba(30, 58, 138, 0.16);
      box-shadow: 0 10px 24px rgba(30, 58, 138, 0.08);
    }

    .hero-play-icon {
      display: inline-grid;
      place-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      color: var(--secondary);
      background: rgba(79, 70, 229, 0.12);
      font-size: 0.65rem;
    }

    .hero-visual {
      position: relative;
      min-height: 315px;
      display: grid;
      place-items: center;
      z-index: 2;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 12% 4% 8% 14%;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.36);
      filter: blur(28px);
      z-index: -1;
    }

    .hero-visual-glow {
      position: absolute;
      width: 170px;
      height: 170px;
      top: 16%;
      right: 22%;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.65);
      box-shadow: 0 0 70px 30px rgba(255, 255, 255, 0.46);
      animation: pulse 5s ease-in-out infinite;
    }

    .hero-visual img,
    .hero-visual-media {
      position: relative;
      width: min(100%, 560px);
      height: 315px;
      max-height: none;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: 72% center;
      border-radius: 34px;
      opacity: 0.96;
      filter: saturate(0.9) contrast(0.96);
      mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
    }

    .hero-benefits {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 0 auto 34px;
      padding: 18px 22px;
      border: 1px solid rgba(255, 255, 255, 0.84);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 18px 50px rgba(30, 58, 138, 0.12);
      backdrop-filter: blur(18px);
    }

    .hero-benefit {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
      color: var(--primary);
    }

    .hero-benefit-icon {
      display: inline-grid;
      place-items: center;
      flex: none;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(79, 70, 229, 0.18);
      border-radius: 11px;
      color: var(--secondary);
      background: rgba(239, 246, 255, 0.82);
      font-weight: 800;
    }

    .hero-benefit strong,
    .hero-benefit small {
      display: block;
      white-space: nowrap;
    }

    .hero-benefit strong { font-size: 0.88rem; }
    .hero-benefit small { margin-top: 3px; color: var(--muted); font-size: 0.72rem; }

    .hero-intro {
      padding-top: 28px;
      padding-bottom: 28px;
      background: transparent;
    }

    .hero-intro-card {
      padding: 26px 34px 30px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    .hero-intro-card p {
      max-width: 1040px;
      margin: 0 auto;
      color: var(--text);
      font-size: clamp(1.2rem, 2.1vw, 1.75rem);
      line-height: 1.38;
    }

    .hero-intro-card strong { color: var(--text); }

    .hero-intro-card .hero-intro-closing {
      margin-top: 38px;
      color: var(--text);
    }

    .hero-intro-image-wrap {
      margin: 24px auto 0;
      max-width: 340px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    }

    .hero-intro-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .hero-intro-cta {
      min-width: 240px;
      margin-top: 26px;
      border: 2px solid var(--secondary);
      border-radius: 10px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 8px 18px rgba(79, 70, 229, 0.16);
    }

    .hero-intro-cta:hover,
    .hero-intro-cta:focus-visible {
      color: var(--text);
      background: rgba(255, 255, 255, 1);
      border-color: var(--primary);
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 850ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    #our-method .method-visual {
      transform: translateX(-30px);
    }

    #our-method .method-visual.is-visible {
      transform: translateX(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-item,
      .reveal-item.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    .method-preview-copy .method-cta {
      min-width: 180px;
      justify-self: center;
      border: 2px solid var(--secondary);
      border-radius: 10px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 8px 18px rgba(79, 70, 229, 0.16);
    }

    .method-preview-copy .method-cta:hover,
    .method-preview-copy .method-cta:focus-visible {
      color: var(--text);
      background: rgba(255, 255, 255, 1);
      border-color: var(--primary);
    }

    .modalities-intro {
      padding-top: 56px;
      background: var(--bg);
    }

    .modalities-heading {
      width: min(100%, 740px);
      margin: 0 auto 38px;
      padding: 18px 24px;
      border-radius: 0 0 20px 20px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
      text-align: center;
    }

    .modalities-heading h2 {
      margin: 0;
      color: var(--text);
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
    }

    .modalities-list {
      display: grid;
      gap: 34px;
    }

    .modality-row {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
      gap: 34px;
      align-items: center;
    }

    .modality-row-reverse { grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr); }
    .modality-row-reverse .modality-copy { order: 2; }
    .modality-row-reverse .modality-visual { order: 1; }

    .modality-copy h3 {
      margin: 0 0 10px;
      color: var(--primary);
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    }

    .modality-copy p {
      margin: 0;
      color: var(--text);
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .modality-visual {
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }

    .modality-visual img {
      width: 100%;
      max-height: 280px;
      object-fit: contain;
      border-radius: 16px;
    }

    .population-mission {
      padding-top: 64px;
      background: var(--bg);
    }

    .population-block,
    .mission-block {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 42px;
      align-items: center;
    }

    .mission-block { margin-top: 70px; }

    .population-copy,
    .mission-copy {
      max-width: 560px;
    }

    .population-copy h2,
    .mission-copy h2 {
      margin: 0 0 8px;
      color: var(--text);
      font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.05;
    }

    .population-kicker {
      margin: 0 0 18px;
      color: var(--primary);
      font-weight: 700;
    }

    .population-copy p,
    .mission-copy p {
      margin: 0 0 16px;
      color: var(--text);
      line-height: 1.65;
    }

    .population-visual,
    .mission-visual {
      overflow: visible;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .population-visual img,
    .mission-visual img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 380px;
      object-fit: contain;
    }

    .population-cta { margin-top: 8px; }

    .mission-socials {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-top: 28px;
    }

    .footer-socials {
      display: flex;
      gap: 14px;
      margin-top: 16px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      font-weight: 800;
      line-height: 1;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .social-link:hover,
    .social-link:focus-visible {
      transform: translateY(-3px);
      opacity: 0.82;
    }

    .social-instagram { color: #e1306c; border: 3px solid currentColor; }
    .social-facebook { color: #1877f2; border-radius: 50%; background: currentColor; font-size: 1.8rem; }
    .social-facebook span { color: white; transform: translateY(2px); font-family: Arial, sans-serif; }
    .social-linkedin { color: #0a66c2; border-radius: 6px; background: currentColor; font-size: 1.05rem; }
    .social-linkedin span { color: white; font-family: Arial, sans-serif; }

    .social-instagram-mark {
      position: relative;
      width: 20px;
      height: 20px;
      border: 2px solid currentColor;
      border-radius: 6px;
    }

    .social-instagram-mark::before {
      content: "";
      position: absolute;
      inset: 4px;
      border: 2px solid currentColor;
      border-radius: 50%;
    }

    .social-instagram-mark::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 3px;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
    }

    @media (max-width: 760px) {
      .modalities-intro { padding-top: 42px; }
      .modalities-heading { margin-bottom: 28px; }
      .modality-row,
      .modality-row-reverse { grid-template-columns: 1fr; gap: 18px; }
      .modality-row-reverse .modality-copy,
      .modality-row-reverse .modality-visual { order: initial; }
      .modality-visual { min-height: 160px; }
      .population-block,
      .mission-block { grid-template-columns: 1fr; gap: 24px; }
      .mission-block { margin-top: 44px; }
      .mission-visual { order: 2; }
      .mission-copy { order: 1; }
      .population-visual img,
      .mission-visual img { height: 260px; }
    }

    @media (max-width: 900px) {
      .hero-layout { grid-template-columns: 1fr 0.9fr; }
      .hero-title { font-size: clamp(2.8rem, 6vw, 4.6rem); }
      .hero-visual { min-height: 390px; }
      .hero-benefit strong { font-size: 0.78rem; }
    }

    @media (max-width: 760px) {
      .hero-intro { padding: 22px 0; }
      .hero-intro-card { padding: 22px 18px 24px; border-radius: 20px; }
      .hero-intro-card p { font-size: 1.08rem; line-height: 1.5; }
      .hero-intro-card .hero-intro-closing { margin-top: 26px; }
      .hero-intro-cta { width: 100%; margin-top: 22px; }
    }

    @media (max-width: 760px) {
      .hero { min-height: 0; }
      .hero-inner { padding: 56px 0 18px; }
      .hero-layout { grid-template-columns: 1fr; gap: 10px; }
      .hero-content { width: 100%; }
      .hero-title { font-size: clamp(2.8rem, 12vw, 4.1rem); }
      .hero-visual { min-height: 0; margin-top: -18px; }
      .hero-visual img,
      .hero-visual-media { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: fill; object-position: center center; border-radius: 24px; }
      .hero-benefits { grid-template-columns: repeat(2, 1fr); padding: 16px; }
      .hero-benefit strong { font-size: 0.78rem; }
    }

    /* Keep the complete hero above the fold on desktop. */
    @media (min-width: 761px) {
      .hero {
        /* Keep the benefits row in normal flow so it cannot cover the hero CTAs. */
        height: auto;
        min-height: calc(100vh - 90px);
        overflow: visible;
      }

      .hero-inner {
        height: auto;
        min-height: 0;
        padding: 28px 0 22px;
      }

      .hero-layout {
        min-height: 560px;
        height: auto;
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
        gap: 18px;
      }

      .hero-content {
        align-self: center;
      }

      .hero-title {
        margin-top: 14px;
        max-width: 12ch;
        font-size: clamp(2.8rem, 4vw, 4.6rem);
        line-height: 0.96;
      }

      .hero-subtitle {
        margin-top: 12px;
        line-height: 1.5;
      }

      .hero-actions {
        margin-top: 18px;
      }

      .hero-visual {
        min-height: 0;
        height: 100%;
        width: 100%;
        align-self: stretch;
        margin-right: calc((100vw - var(--container)) / -2);
      }

      .hero-visual img,
      .hero-visual-media {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
        object-fit: fill;
        object-position: center center;
        mask-image: none;
      }

      .hero-benefits {
        margin-top: 8px;
        margin-bottom: 14px;
        padding: 14px 20px;
      }
    }

    /* About Us Sequence Cards */
    .about-sequence-section {
      padding: 48px 0 96px;
      background: var(--bg);
    }

    .about-sequence-container {
      display: flex;
      flex-direction: column;
      gap: 56px;
      max-width: 860px;
      margin: 0 auto;
    }

    .about-card {
      background: #ffffff;
      border-radius: 28px;
      box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(226, 232, 240, 0.9);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    }

    .about-card-body {
      padding: 40px 44px;
      width: 100%;
    }

    .about-card-title {
      font-family: Poppins, Inter, sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about-card-desc {
      font-size: 1.12rem;
      line-height: 1.7;
      color: #334155;
      margin-bottom: 20px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-card-notice {
      font-size: 1.08rem;
      font-weight: 700;
      line-height: 1.6;
      color: #0f172a;
      margin-bottom: 28px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-card-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .btn-pill-purple {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 36px;
      border-radius: 14px;
      border: 2.5px solid #8b5cf6;
      background: #ffffff;
      color: #1e1b4b;
      font-weight: 700;
      font-size: 1.05rem;
      min-width: 260px;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 4px 14px rgba(139, 92, 246, 0.12);
    }

    .btn-pill-purple:hover {
      background: #8b5cf6;
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.28);
      transform: translateY(-2px);
    }

    .about-card-img-wrap {
      width: 100%;
      max-height: 480px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #f8fafc;
    }

    .about-card-img-wrap img {
      width: 100%;
      height: auto;
      max-height: 480px;
      object-fit: cover;
      display: block;
    }

    .location-img-wrap {
      padding: 18px 14px 0;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    }

    .premium-info-card {
      max-width: 680px;
      margin: 0 auto;
    }

    .premium-card-body {
      padding: 24px 28px;
      background: linear-gradient(180deg, rgba(30, 58, 138, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
      border-radius: 24px;
      border: 1px solid rgba(99, 102, 241, 0.18);
    }

    .premium-card-image-wrap {
      width: 100%;
      max-width: 260px;
      margin: 0 auto 18px;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    }

    .premium-card-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .premium-card-title {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #0f172a;
    }

    .premium-card-text {
      font-size: 1rem;
      line-height: 1.75;
      color: #334155;
      max-width: 620px;
      margin: 0 auto;
    }

    .portrait-wrap {
      padding: 28px 24px 0;
      background: transparent;
      max-height: 520px;
    }

    .portrait-wrap img {
      max-height: 460px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border-radius: 16px;
    }

    .about-card-bio {
      font-size: 1rem;
      line-height: 1.65;
      color: #334155;
      text-align: center;
      max-width: 760px;
      margin: 0 auto 18px;
    }

    .about-card-list {
      padding-left: 0;
      list-style-position: inside;
      margin-bottom: 22px;
    }

    .about-card-list li + li {
      margin-top: 4px;
    }

    .doctor-profile-card .about-card-body {
      text-align: center;
    }

    .about-card-subtitle {
      margin: 28px auto 14px;
      color: #163c72;
      font-size: 1.35rem;
      line-height: 1.6;
    }

    .about-card-group-title {
      margin: 18px auto 8px;
      color: #334155;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    @media (max-width: 640px) {
      .about-card-bio {
        font-size: 1rem;
        line-height: 1.65;
      }

      .about-card-subtitle {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .about-card-body {
        padding: 28px 20px;
      }
      .about-card-title {
        font-size: 1.6rem;
      }
      .btn-pill-purple {
        width: 100%;
        min-width: 0;
      }
    }

    .about-card-img-grid {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 14px 14px 0 14px;
      background: #f8fafc;
    }

    .about-card-img-grid img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }

    @media (max-width: 640px) {
      .about-card-img-grid {
        grid-template-columns: 1fr;
      }
      .about-card-img-grid img {
        height: 220px;
      }
    }

    /* Team Members Section */
    .about-team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      width: 100%;
    }

    .team-card {
      padding: 32px 24px 28px;
    }

    .team-photo-wrap {
      width: 190px;
      height: 220px;
      margin: 0 auto 20px;
      border-radius: 18px;
      overflow: hidden;
      background: #f1f5f9;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-member-name {
      font-family: Poppins, Inter, sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 16px;
    }

    .team-member-bio {
      font-size: 1.02rem;
      line-height: 1.65;
      color: #334155;
      margin: 0;
    }

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

    /* Google Map Card Section */
    .map-card {
      width: 100%;
      padding: 32px 0 28px;
    }

    .map-card-header {
      padding: 0 24px;
      width: 100%;
    }

    .map-embed-wrapper {
      width: 100%;
      height: 460px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(226, 232, 240, 0.8);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      background: #f1f5f9;
    }

    .map-embed-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .map-card-footer {
      padding: 12px 24px 0;
      width: 100%;
    }

    .step-illus-image {
      overflow: hidden;
      padding: 0;
    }

    .step-illus-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }

    .service-icon-image {
      overflow: hidden;
      padding: 0;
      background: #f1f4ff;
    }

    .service-icon-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }

    .condition-card-image {
      width: 58px;
      height: 58px;
      object-fit: cover;
      border-radius: 16px;
      background: #f1f4ff;
      border: 1px solid rgba(41, 72, 200, 0.10);
    }

    .why-icon-image {
      overflow: hidden;
      padding: 0;
      background: #f1f4ff;
    }

    .why-icon-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }

    .nav-actions {
      position: relative;
      left: 10px;
    }

    /* Hugh's page embed needs a little more room for the navigation row. */
    .page-hugh .nav-links {
      gap: 20px;
    }

    .page-hugh .nav-links a,
    .page-hugh .nav-dropdown-toggle {
      font-size: 0.92rem;
    }

    .page-hugh .nav-actions {
      left: 0;
    }

    /* Keep the full navigation from colliding with the consultation CTA. */
    @media (max-width: 1180px) {
      .nav-inner {
        position: relative;
        flex-wrap: wrap;
      }

      .nav-links {
        display: none;
        order: 4;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 4px;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
      }

      .page-hugh .nav-links { gap: 0; }

      .nav-links.is-open { display: flex; }

      .nav-links > a,
      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 4px;
      }

      .nav-links > a::after,
      .nav-dropdown-toggle::after { bottom: 5px; }

      .nav-dropdown { display: block; }

      .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 4px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
      }

      .nav-dropdown.open .nav-dropdown-menu { display: block; }
      .nav-dropdown-menu::before { display: none; }
      .nav-dropdown-menu a { padding: 11px 10px; }
      .nav-actions { margin-left: auto; left: 0; }
      .nav-actions .btn { display: none; }
      .nav-toggle { display: inline-flex; order: 3; }
      .nav .brand-logo { width: 194px; }
    }

    /* Premium typography for the homepage introduction */
    .hero-intro-card p {
      font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
      font-weight: 400;
      letter-spacing: -0.018em;
      line-height: 1.42;
    }

    .hero-intro-card strong {
      font-family: Manrope, "DM Sans", Inter, sans-serif;
      font-weight: 700;
      letter-spacing: -0.028em;
    }

    .hero-intro-card .hero-intro-closing {
      font-family: Manrope, "DM Sans", Inter, sans-serif;
      font-size: clamp(1.18rem, 1.8vw, 1.48rem);
      font-weight: 600;
      letter-spacing: -0.028em;
    }

    .hero-intro-cta {
      font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .jotform-agent-embed {
      width: min(100%, 760px);
      height: 620px;
      margin: 0 auto 44px;
      overflow: hidden;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 16px 42px rgba(30, 64, 175, 0.12);
    }

    .jotform-agent-embed iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }
