    :root {
      --ink: #071824;
      --ink-2: #153044;
      --muted: #6c7c88;
      --muted-2: #91a2ad;
      --paper: #f7fbfc;
      --white: #ffffff;
      --line: rgba(21, 48, 68, 0.13);
      --glass: rgba(255, 255, 255, 0.72);
      --teal: #2cc7b8;
      --teal-dark: #108f87;
      --blue: #0e7abf;
      --gold: #d7aa55;
      --shadow: 0 26px 70px rgba(7, 24, 36, 0.13);
      --shadow-soft: 0 16px 38px rgba(7, 24, 36, 0.09);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 15% 10%, rgba(44,199,184,0.18), transparent 28rem),
        radial-gradient(circle at 92% 4%, rgba(14,122,191,0.12), transparent 24rem),
        linear-gradient(180deg, #f9fdfe 0%, #eef8fa 48%, #fbfdfd 100%);
      line-height: 1.55;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font: inherit; }

    .shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(22px);
      background: rgba(247, 251, 252, 0.72);
      border-bottom: 1px solid rgba(21,48,68,.08);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
      font-size: 1.36rem;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 18px 28px rgba(16, 143, 135, 0.24);
      background:
        linear-gradient(145deg, rgba(255,255,255,.28), transparent 32%),
        linear-gradient(135deg, #0f9a91, #2cc7b8 52%, #0e7abf);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::before {
      content: "";
      width: 19px;
      height: 25px;
      background: #fff;
      border-radius: 58% 58% 72% 72%;
      clip-path: path("M9.5 1 C15 -1 20 4 18 11 C16 18 15 25 12 24 C10 23 11 17 9.5 17 C8 17 9 23 7 24 C4 25 3 18 1 11 C-1 4 4 -1 9.5 1Z");
      opacity: .96;
    }

    .brand small {
      display: block;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: .62rem;
      color: var(--muted);
      margin-top: -4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px;
      border-radius: 999px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(21,48,68,.08);
      box-shadow: 0 10px 30px rgba(7,24,36,.05);
    }

    .nav-links a {
      padding: 10px 15px;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 650;
      color: rgba(7,24,36,.78);
      transition: .22s ease;
    }

    .nav-links a:hover { background: rgba(44,199,184,.12); color: var(--ink); }

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

    .btn {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 760;
      letter-spacing: -0.02em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #0c7c79, #24c4b5 52%, #0e7abf);
      box-shadow: 0 18px 34px rgba(16,143,135,.24);
    }
    .btn-dark { color: #fff; background: var(--ink); box-shadow: 0 16px 32px rgba(7,24,36,.18); }
    .btn-ghost { color: var(--ink); background: rgba(255,255,255,.72); border: 1px solid var(--line); }

    .hero {
      padding: 80px 0 44px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(380px, .88fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid rgba(44,199,184,.24);
      background: rgba(255,255,255,.66);
      color: #10736c;
      border-radius: 999px;
      font-weight: 800;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      box-shadow: 0 10px 24px rgba(7,24,36,.05);
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 7px rgba(44,199,184,.16);
    }

    h1, h2, h3 { line-height: 1.03; letter-spacing: -0.055em; margin: 0; }
    h1 {
      margin-top: 22px;
      font-size: clamp(3.1rem, 7vw, 6.4rem);
      max-width: 820px;
    }
    .serif { font-family: "Playfair Display", Georgia, serif; font-weight: 700; letter-spacing: -0.045em; }
    .gradient-text {
      background: linear-gradient(120deg, #0a756f, #11a399 42%, #0e7abf);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      margin: 24px 0 0;
      max-width: 650px;
      font-size: 1.12rem;
      color: #425767;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 26px; }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 650px;
      margin-top: 32px;
    }

    .trust-chip {
      border-radius: 22px;
      padding: 16px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(21,48,68,.08);
      box-shadow: 0 14px 32px rgba(7,24,36,.05);
    }
    .trust-chip strong { display: block; font-size: 1.25rem; letter-spacing: -0.05em; }
    .trust-chip span { color: var(--muted); font-size: .86rem; font-weight: 650; }

    .hero-card {
      border-radius: 42px;
      position: relative;
      min-height: 650px;
      overflow: hidden;
      background: #dcecef;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 650px;
      object-fit: cover;
      transform: scale(1.02);
      filter: saturate(.95) contrast(1.04);
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7,24,36,.05), transparent 42%, rgba(7,24,36,.48)),
        radial-gradient(circle at 78% 18%, rgba(44,199,184,.26), transparent 18rem);
      z-index: 1;
    }

    .floating-note {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      padding: 19px;
      border-radius: 28px;
      color: #fff;
      background: rgba(7,24,36,.72);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,.18);
    }
    .floating-note strong { display: block; font-size: 1.02rem; margin-bottom: 4px; }
    .floating-note span { color: rgba(255,255,255,.74); font-size: .9rem; }

    .booking-card {
      position: absolute;
      z-index: 3;
      top: 28px;
      left: -36px;
      width: 260px;
      padding: 18px;
      border-radius: 28px;
      background: rgba(255,255,255,.84);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(255,255,255,.58);
      box-shadow: 0 24px 52px rgba(7,24,36,.16);
    }
    .booking-card .mini-label { color: var(--muted); font-weight: 750; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
    .booking-card strong { display: block; margin: 5px 0 8px; font-size: 1.36rem; letter-spacing: -0.05em; }
    .booking-card p { margin: 0; color: #526979; font-size: .88rem; }

    .section { padding: 76px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 28px;
    }
    .section-head h2 { font-size: clamp(2.25rem, 4.4vw, 4.1rem); max-width: 690px; }
    .section-head p { margin: 0; max-width: 410px; color: #526979; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .service-card {
      min-height: 278px;
      border-radius: 30px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(21,48,68,.08);
      padding: 24px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .service-card::after {
      content: "";
      position: absolute;
      inset: auto -26px -46px auto;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle, rgba(44,199,184,.22), transparent 70%);
    }
    .icon-pill {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(44,199,184,.16), rgba(14,122,191,.1));
      color: #0d8179;
      margin-bottom: 54px;
    }
    .icon-pill svg { width: 27px; height: 27px; }
    .service-card h3 { font-size: 1.34rem; margin-bottom: 10px; letter-spacing: -0.04em; }
    .service-card p { margin: 0; color: #5b6f7b; font-size: .96rem; }

    .experience {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: stretch;
    }
    .image-tile {
      min-height: 560px;
      border-radius: 38px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }
    .image-tile img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
    .image-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,24,36,.44)); }

    .feature-panel {
      border-radius: 38px;
      background: #071824;
      color: #fff;
      padding: clamp(26px, 4vw, 48px);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .feature-panel::before {
      content: "";
      position: absolute;
      inset: -20% -10% auto auto;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(44,199,184,.26), transparent 66%);
    }
    .feature-panel h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); position: relative; }
    .feature-panel p { color: rgba(255,255,255,.7); max-width: 610px; position: relative; }
    .feature-list { display: grid; gap: 13px; margin-top: 30px; position: relative; }
    .feature-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
    }
    .check {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(44,199,184,.15);
      color: #66e9dd;
      font-weight: 900;
    }
    .feature-item strong { display: block; margin-bottom: 4px; }
    .feature-item span { color: rgba(255,255,255,.64); }

    .doctors-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .doctor-card {
      border-radius: 32px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(21,48,68,.08);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .doctor-card img { width: 100%; aspect-ratio: 1 / .82; object-fit: cover; }
    .doctor-card .doc-body { padding: 22px; }
    .doctor-card h3 { font-size: 1.38rem; margin-bottom: 5px; }
    .doctor-card span { color: #0c877e; font-weight: 800; font-size: .9rem; }
    .doctor-card p { color: #5f7280; margin: 12px 0 0; }

    .pricing {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
    }
    .price-card {
      border-radius: 34px;
      padding: 28px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(21,48,68,.08);
      box-shadow: var(--shadow-soft);
    }
    .price-card.highlight {
      background: linear-gradient(145deg, #092034, #0b3a49 62%, #0e6c76);
      color: #fff;
      transform: translateY(-10px);
    }
    .price-card h3 { font-size: 1.42rem; margin-bottom: 8px; }
    .price-card p { color: #5c6f7c; min-height: 52px; }
    .price-card.highlight p { color: rgba(255,255,255,.68); }
    .price { font-size: 2.2rem; font-weight: 850; letter-spacing: -0.06em; margin: 18px 0; }
    .price small { font-size: .88rem; color: var(--muted); letter-spacing: 0; }
    .price-card.highlight .price small { color: rgba(255,255,255,.58); }
    .price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; color: #526979; }
    .price-card.highlight ul { color: rgba(255,255,255,.75); }
    .price-card li::before { content: "✓"; color: var(--teal-dark); font-weight: 900; margin-right: 8px; }
    .price-card.highlight li::before { color: #71eadf; }

    .booking-section {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 22px;
      align-items: stretch;
      padding-bottom: 96px;
    }
    .contact-card, .form-card {
      border-radius: 38px;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(21,48,68,.08);
      box-shadow: var(--shadow-soft);
      padding: clamp(24px, 4vw, 42px);
    }
    .contact-card h2, .form-card h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); margin-bottom: 14px; }
    .contact-card p { color: #526979; }
    .contact-lines { display: grid; gap: 14px; margin-top: 26px; }
    .contact-line {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 22px;
      background: rgba(14,122,191,.05);
      border: 1px solid rgba(21,48,68,.07);
    }
    .contact-icon { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: rgba(44,199,184,.13); color: #0e8179; }
    .contact-line strong { display: block; }
    .contact-line span { color: #607381; font-size: .92rem; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-weight: 800; font-size: .84rem; color: #344c5d; }
    .field input, .field select, .field textarea {
      width: 100%;
      border: 1px solid rgba(21,48,68,.14);
      border-radius: 18px;
      padding: 14px 15px;
      background: rgba(255,255,255,.78);
      outline: none;
      color: var(--ink);
      transition: border .2s ease, box-shadow .2s ease;
    }
    .field textarea { resize: vertical; min-height: 118px; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(44,199,184,.64); box-shadow: 0 0 0 4px rgba(44,199,184,.13); }
    .form-status { min-height: 24px; color: #0d8179; font-weight: 750; margin-top: 12px; }

    footer {
      background: #071824;
      color: #fff;
      padding: 48px 0;
    }
    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
      align-items: center;
    }
    footer p { color: rgba(255,255,255,.62); max-width: 540px; margin: 10px 0 0; }
    .footer-links { display: flex; gap: 15px; flex-wrap: wrap; color: rgba(255,255,255,.7); font-weight: 650; }

    .chat-launcher {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 100;
      width: 64px;
      height: 64px;
      border: 0;
      border-radius: 24px;
      color: #fff;
      cursor: pointer;
      box-shadow: 0 22px 44px rgba(7,24,36,.24);
      background: linear-gradient(135deg, #0e7abf, #24c4b5);
      display: grid;
      place-items: center;
    }
    .chat-launcher svg { width: 30px; height: 30px; }
    .chat-panel {
      position: fixed;
      right: 22px;
      bottom: 98px;
      z-index: 101;
      width: min(420px, calc(100vw - 28px));
      height: min(680px, calc(100vh - 122px));
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(21,48,68,.12);
      border-radius: 34px;
      box-shadow: 0 30px 88px rgba(7,24,36,.26);
      display: none;
      overflow: hidden;
    }
    .chat-panel.open { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
    .chat-head {
      padding: 18px;
      background: linear-gradient(135deg, #071824, #0b3a49 68%, #0e7abf);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .chat-title { display: flex; align-items: center; gap: 12px; }
    .ai-badge {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
    }
    .chat-title strong { display: block; letter-spacing: -0.03em; }
    .chat-title span { color: rgba(255,255,255,.64); font-size: .82rem; }
    .chat-close { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; width: 40px; height: 40px; cursor: pointer; }

    .chat-body {
      overflow-y: auto;
      min-height: 0;
      padding: 18px;
      background:
        radial-gradient(circle at 0 0, rgba(44,199,184,.13), transparent 20rem),
        #f7fbfc;
      display: flex;
      flex-direction: column;
      gap: 12px;
      scroll-behavior: smooth;
    }
    .message {
      max-width: 86%;
      padding: 12px 14px;
      border-radius: 20px;
      font-size: .94rem;
      line-height: 1.55;
      white-space: pre-wrap;
      overflow-wrap: anywhere;
    }
    .message.bot { align-self: flex-start; background: #fff; border: 1px solid rgba(21,48,68,.08); color: #284253; border-bottom-left-radius: 8px; }
    .message.user { align-self: flex-end; color: #fff; background: linear-gradient(135deg, #0e7abf, #24bbae); border-bottom-right-radius: 8px; }
    .quick-prompts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
    .quick-prompts button {
      border: 1px solid rgba(21,48,68,.1);
      background: #fff;
      color: #334c5d;
      border-radius: 999px;
      padding: 8px 10px;
      cursor: pointer;
      font-size: .78rem;
      font-weight: 750;
    }

    .message p {
      margin: 0 0 9px;
    }

    .message p:last-child {
      margin-bottom: 0;
    }

    .message ul {
      margin: 0;
      padding-left: 1.05rem;
      display: grid;
      gap: 7px;
    }

    .message li {
      margin: 0;
      padding-left: 2px;
    }

    .message strong {
      font-weight: 850;
      color: inherit;
    }

    .typing { opacity: .68; font-style: italic; }
    .chat-foot {
      border-top: 1px solid rgba(21,48,68,.09);
      padding: 12px;
      background: #fff;
    }
    .chat-form { display: grid; grid-template-columns: 1fr 46px; gap: 8px; align-items: end; }
    .chat-input {
      border: 1px solid rgba(21,48,68,.14);
      border-radius: 20px;
      min-height: 46px;
      max-height: 120px;
      resize: none;
      padding: 12px 14px;
      outline: none;
    }
    .chat-send {
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 18px;
      background: var(--ink);
      color: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
    }
    .chat-disclaimer { margin: 8px 4px 0; color: #7d8e99; font-size: .72rem; }

    .reveal { opacity: 0; transform: translateY(18px); transition: .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1050px) {
      .hero-grid, .experience, .booking-section { grid-template-columns: 1fr; }
      .hero-card, .hero-card img, .image-tile, .image-tile img { min-height: 520px; }
      .booking-card { left: 24px; }
      .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .doctors-grid, .pricing { grid-template-columns: 1fr; }
      .price-card.highlight { transform: none; }
      .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 88px; border-radius: 26px; padding: 12px; flex-direction: column; align-items: stretch; background: rgba(255,255,255,.96); }
      .nav-links.open { display: flex; }
      .nav-links a { border-radius: 18px; }
      .menu-btn { display: inline-flex; }
    }

    @media (max-width: 640px) {
      .shell { width: min(100% - 28px, var(--max)); }
      .nav { height: 74px; }
      .nav-actions .btn-primary { display: none; }
      h1 { font-size: clamp(2.65rem, 16vw, 4.8rem); }
      .hero { padding-top: 46px; }
      .hero-actions { flex-direction: column; }
      .btn { width: 100%; }
      .trust-row { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-head p { margin-top: 14px; }
      .form-grid { grid-template-columns: 1fr; }
      .chat-panel { right: 14px; bottom: 90px; height: min(660px, calc(100vh - 112px)); }
      .chat-launcher { right: 14px; bottom: 14px; }
      .booking-card { position: relative; top: auto; left: auto; width: auto; margin: -110px 18px 0; }
    }