    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:       #1a7a4a;
      --green-light: #4caf7d;
      --green-pale:  #e6f4ec;
      --green-dim:   #d0eadb;
      --white:       #ffffff;
      --surface:     #f5f7f5;
      --text:        #111512;
      --muted:       #6b7a6e;
      --border:      #e2e8e3;
      --radius:      12px;
      --radius-sm:   8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 68px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em;
      color: var(--green); text-decoration: none;
      display: flex; align-items: center; gap: 8px;
    }
    .nav-logo-mark {
      width: 28px; height: 28px; background: var(--green);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-logo-mark svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 400; color: var(--muted);
      text-decoration: none; transition: color .15s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      font-size: 0.85rem; font-weight: 600;
      color: var(--white); background: var(--green);
      border: none; padding: 0.55rem 1.25rem; cursor: pointer;
      border-radius: 999px; transition: background .15s, transform .15s;
      text-decoration: none;
    }
    .nav-cta:hover { background: #158a52; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding: 68px 5vw 0;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 5vw 5rem 3vw;
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green-pale); color: var(--green);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
      padding: 0.35rem 0.85rem; border-radius: 999px;
      margin-bottom: 1.8rem; width: fit-content;
    }
    .hero-pill span { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
    .hero-title {
      font-size: clamp(2.6rem, 4.5vw, 4.2rem);
      font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
      color: var(--text); margin-bottom: 1.4rem;
    }
    .hero-title .accent { color: var(--green); }
    .hero-subtitle {
      font-size: 1rem; font-weight: 300; line-height: 1.75;
      color: var(--muted); max-width: 400px; margin-bottom: 2.5rem;
    }
    .hero-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .btn-primary {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem; font-weight: 600; color: var(--white);
      background: var(--green); border: none; padding: 0.8rem 1.8rem;
      cursor: pointer; border-radius: 999px; transition: background .15s, transform .15s;
      text-decoration: none;
    }
    .btn-primary:hover { background: #158a52; transform: translateY(-1px); }
    .btn-ghost {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem; font-weight: 500; color: var(--text);
      background: transparent; border: 1.5px solid var(--border);
      padding: 0.8rem 1.8rem; cursor: pointer; border-radius: 999px;
      transition: border-color .15s, background .15s; text-decoration: none;
    }
    .btn-ghost:hover { border-color: var(--green); background: var(--green-pale); }

    .hero-stats {
      display: flex; gap: 2rem;
    }
    .hero-stat { display: flex; flex-direction: column; gap: 2px; }
    .hero-stat-num {
      font-size: 1.8rem; font-weight: 700; letter-spacing: -0.04em;
      color: var(--text);
    }
    .hero-stat-num span { color: var(--green); }
    .hero-stat-label { font-size: 0.78rem; font-weight: 400; color: var(--muted); }

    .hero-right {
      background: var(--surface);
      border-left: 1px solid var(--border);
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      padding: 4rem 3vw; gap: 1.5rem;
      position: relative; overflow: hidden;
    }
    /* Abstract blob */
    .hero-blob {
      position: absolute; top: -80px; right: -80px;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 40% 40%, var(--green-dim) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-card {
      background: var(--white); border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 1.5rem 1.75rem; width: 100%; max-width: 340px;
      position: relative; z-index: 1;
      transition: transform .2s, box-shadow .2s;
    }
    .hero-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
    .card-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 1rem;
    }
    .card-icon {
      width: 40px; height: 40px; background: var(--green-pale);
      border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    }
    .card-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }
    .card-badge {
      font-size: 0.72rem; font-weight: 600; color: var(--green);
      background: var(--green-pale); padding: 0.25rem 0.6rem; border-radius: 999px;
    }
    .card-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
    .card-sub { font-size: 0.8rem; font-weight: 300; color: var(--muted); }
    .card-bar {
      margin-top: 1rem; height: 4px; background: var(--green-pale);
      border-radius: 2px; overflow: hidden;
    }
    .card-bar-fill { height: 100%; background: var(--green); border-radius: 2px; }

    .hero-mini-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
      width: 100%; max-width: 340px; position: relative; z-index: 1;
    }
    .mini-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-sm); padding: 1rem 1.1rem;
      transition: transform .2s;
    }
    .mini-card:hover { transform: translateY(-2px); }
    .mini-card-num {
      font-size: 1.5rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text);
    }
    .mini-card-num span { color: var(--green); }
    .mini-card-label { font-size: 0.72rem; font-weight: 400; color: var(--muted); margin-top: 2px; }

    /* ── SERVICES ── */
    .services { padding: 6rem 5vw; background: var(--white); }
    .section-eyebrow {
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
      letter-spacing: -0.03em; line-height: 1.15;
      color: var(--text);
    }
    .section-header-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem;
    }
    .section-note {
      font-size: 0.88rem; font-weight: 300; color: var(--muted);
      max-width: 220px; text-align: right; line-height: 1.6;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    }
    .service-card {
      background: var(--surface); border-radius: var(--radius);
      border: 1px solid var(--border); padding: 1.75rem;
      transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
      cursor: default;
    }
    .service-card:hover {
      background: var(--white); border-color: var(--green-light);
      transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,122,74,0.08);
    }
    .svc-icon {
      width: 44px; height: 44px; border-radius: var(--radius-sm);
      background: var(--green-pale); display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .svc-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; }
    .svc-num { font-size: 0.72rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; letter-spacing: 0.06em; }
    .svc-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
    .svc-desc { font-size: 0.83rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

    /* ── WHY ── */
    .why { padding: 6rem 5vw; background: var(--surface); }
    .why-inner {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center;
    }
    .why-text { font-size: 0.92rem; font-weight: 300; color: var(--muted); line-height: 1.8; margin: 1.2rem 0 2rem; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-item {
      background: var(--white); border-radius: var(--radius);
      border: 1px solid var(--border); padding: 1.5rem;
      transition: box-shadow .2s, transform .2s;
    }
    .why-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .why-icon {
      width: 38px; height: 38px; background: var(--green-pale); border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
    }
    .why-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }
    .why-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
    .why-item p { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.65; }

    /* ── DOCTORS ── */
    .doctors { padding: 6rem 5vw; background: var(--white); }
    .doctors-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
      margin-top: 3rem;
    }
    .doctor-card {
      border-radius: var(--radius); border: 1px solid var(--border);
      overflow: hidden; background: var(--white);
      transition: transform .2s, box-shadow .2s;
    }
    .doctor-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.09); }
    .doctor-avatar {
      height: 200px; background: var(--green-pale);
      display: flex; align-items: flex-end; justify-content: center;
      position: relative; overflow: hidden;
    }
    .avatar-silhouette {
      width: 100px; height: 130px;
      position: absolute; bottom: 0;
    }
    .avatar-circle {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--green-dim); position: absolute;
      top: 40px; left: 50%; transform: translateX(-50%);
    }
    .avatar-body {
      width: 90px; height: 80px; border-radius: 50% 50% 0 0;
      background: var(--green-dim); position: absolute;
      bottom: 0; left: 50%; transform: translateX(-50%);
    }
    .doctor-color-bar {
      height: 3px; width: 100%;
    }
    .doctor-info { padding: 1.25rem 1.25rem 1.5rem; }
    .doctor-name { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
    .doctor-spec { font-size: 0.78rem; font-weight: 500; color: var(--green); margin-bottom: 0.6rem; }
    .doctor-exp { font-size: 0.75rem; font-weight: 300; color: var(--muted); }

    /* colour accents per card */
    .dc-1 .doctor-avatar { background: #e6f4ec; }
    .dc-1 .avatar-circle, .dc-1 .avatar-body { background: #c3e8d2; }
    .dc-1 .doctor-color-bar { background: #1a7a4a; }

    .dc-2 .doctor-avatar { background: #e8f0fb; }
    .dc-2 .avatar-circle, .dc-2 .avatar-body { background: #c4d8f5; }
    .dc-2 .doctor-color-bar { background: #4a7fc1; }
    .dc-2 .doctor-spec { color: #4a7fc1; }

    .dc-3 .doctor-avatar { background: #fdf2e6; }
    .dc-3 .avatar-circle, .dc-3 .avatar-body { background: #f6d8ac; }
    .dc-3 .doctor-color-bar { background: #c97b2a; }
    .dc-3 .doctor-spec { color: #c97b2a; }

    .dc-4 .doctor-avatar { background: #f2e6f8; }
    .dc-4 .avatar-circle, .dc-4 .avatar-body { background: #ddb8ee; }
    .dc-4 .doctor-color-bar { background: #8a4ab8; }
    .dc-4 .doctor-spec { color: #8a4ab8; }

    .dc-5 .doctor-avatar { background: #e6f0f8; }
    .dc-5 .avatar-circle, .dc-5 .avatar-body { background: #b8d4ee; }
    .dc-5 .doctor-color-bar { background: #2a6fa8; }
    .dc-5 .doctor-spec { color: #2a6fa8; }

    .dc-6 .doctor-avatar { background: #fce9e9; }
    .dc-6 .avatar-circle, .dc-6 .avatar-body { background: #f5c0c0; }
    .dc-6 .doctor-color-bar { background: #b83a3a; }
    .dc-6 .doctor-spec { color: #b83a3a; }

    .dc-7 .doctor-avatar { background: #e6faf4; }
    .dc-7 .avatar-circle, .dc-7 .avatar-body { background: #b5edd8; }
    .dc-7 .doctor-color-bar { background: #1a9068; }
    .dc-7 .doctor-spec { color: #1a9068; }

    .dc-8 .doctor-avatar { background: #faf5e6; }
    .dc-8 .avatar-circle, .dc-8 .avatar-body { background: #ecdeb5; }
    .dc-8 .doctor-color-bar { background: #8a6c1a; }
    .dc-8 .doctor-spec { color: #8a6c1a; }

    /* ── CONTACT ── */
    .contact { padding: 6rem 5vw; background: var(--surface); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: 0; }
    .contact-block { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
    .contact-block:first-of-type { padding-top: 0; }
    .contact-label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem;
    }
    .contact-value { font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--text); }
    .contact-value a { color: var(--text); text-decoration: none; display: block; transition: color .15s; }
    .contact-value a:hover { color: var(--green); }

    .contact-form {
      background: var(--white); border-radius: var(--radius);
      border: 1px solid var(--border); padding: 2.25rem;
    }
    .contact-form h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 1.75rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.75rem; }
    .form-group label {
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; color: var(--muted);
    }
    .form-group input, .form-group textarea, .form-group select {
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; font-weight: 300; color: var(--text);
      background: var(--surface); border: 1.5px solid var(--border);
      border-radius: var(--radius-sm); padding: 0.7rem 1rem;
      outline: none; transition: border-color .15s, background .15s;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--green); background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group select { appearance: none; cursor: pointer; }
    .form-submit {
      width: 100%; font-family: 'Outfit', sans-serif;
      font-size: 0.9rem; font-weight: 600; color: var(--white);
      background: var(--green); border: none; padding: 0.85rem;
      border-radius: 999px; cursor: pointer; transition: background .15s, transform .15s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: #158a52; transform: translateY(-1px); }

    /* ── MAP ── */
    .map-bar {
      background: var(--text); padding: 1.5rem 5vw;
      display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    }
    .map-address {
      font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.7);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .map-address svg { width: 16px; height: 16px; stroke: var(--green-light); flex-shrink: 0; fill: none; stroke-width: 2; }
    .map-grid-area {
      height: 220px; background: #f0f3f0; position: relative; overflow: hidden;
    }
    .map-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 36px 36px;
    }
    .map-roads {
      position: absolute; inset: 0;
    }
    .road-h {
      position: absolute; left: 0; right: 0; height: 6px;
      background: rgba(255,255,255,0.8); border-radius: 1px;
    }
    .road-v {
      position: absolute; top: 0; bottom: 0; width: 6px;
      background: rgba(255,255,255,0.8); border-radius: 1px;
    }
    .map-pin-area {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .map-pulse {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .map-pulse::before {
      content: ''; position: absolute;
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(26,122,74,0.15);
      animation: pulse 2s ease-out infinite;
    }
    .map-pin-dot {
      width: 14px; height: 14px; background: var(--green); border-radius: 50%;
      border: 2.5px solid white;
      box-shadow: 0 2px 8px rgba(26,122,74,0.4);
      position: relative; z-index: 1;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(2.8); opacity: 0; }
    }
    .map-label {
      position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      background: var(--text); color: white; font-size: 0.78rem; font-weight: 400;
      padding: 0.45rem 1rem; border-radius: 999px; white-space: nowrap;
    }

    /* ── FOOTER ── */
    footer {
      padding: 2rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--border);
    }
    .footer-logo {
      font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--green);
    }
    .footer-copy { font-size: 0.78rem; font-weight: 300; color: var(--muted); }

    /* ── REVEAL ── */
    [data-reveal] {
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }
    [data-reveal].revealed { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { border-left: none; border-top: 1px solid var(--border); min-height: 320px; }
      .why-inner { grid-template-columns: 1fr; gap: 3rem; }
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .section-header-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
      .section-note { text-align: left; max-width: 100%; }
    }
    @media (max-width: 560px) {
      .nav-links { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .doctors-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { gap: 1.25rem; }
      .why-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
    