:root {
    --teal: #0a9396;
    --teal-dark: #007a7d;
    --teal-deeper: #005f62;
    --teal-light: #94d2bd;
    --teal-pale: #e0f4f4;
    --teal-bg: #f0fafa;
    --navy: #0d1b2a;
    --navy-mid: #1b2e42;
    --white: #ffffff;
    --off-white: #f7fafa;
    --text-dark: #0d1b2a;
    --text-body: #2e4057;
    --text-muted: #6b8595;
    --border: #d4eaea;
    --red: #c0392b;
    --green-ok: #1a7a4a;
    --shadow: 0 4px 28px rgba(10, 147, 150, 0.10);
    --shadow-sm: 0 2px 12px rgba(10, 147, 150, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Noto Sans Devanagari', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* ─── STICKY NAV ─── */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 2px 20px rgba(10, 147, 150, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1.1rem;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav-call {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-nav-call:hover {
    background: var(--teal);
    color: white;
}

.btn-nav-primary {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--teal);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-nav-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3040 100%);
    min-height: 100svh;
    padding: 80px 20px 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 210, 189, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(10, 147, 150, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 147, 150, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 147, 150, 0.15);
    border: 1px solid rgba(10, 147, 150, 0.4);
    color: var(--teal-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--teal-light);
}

.hero h1 .sub-line {
    display: block;
    font-size: 0.62em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    letter-spacing: 0;
}

.hero-desc {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.75;
    font-family: 'Noto Sans Devanagari', sans-serif;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 8px 28px rgba(10, 147, 150, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(10, 147, 150, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: nowrap;
}

.stat {}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
}

/* FORM CARD */
.form-card {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 16px 16px 0 0;
}

.offer-strip {
    background: var(--red);
    color: white;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 22px;
    text-align: center;
}

.offer-strip .offer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.offer-strip .offer-price-big {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 3px;
}

.offer-strip .offer-note-small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 2px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.form-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    text-align: center;
}

.fgrp {
    margin-bottom: 13px;
}

.fgrp label {
    display: block;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fgrp input,
.fgrp select {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
}

.fgrp input:focus,
.fgrp select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.fgrp .input-icon-wrap {
    position: relative;
}

.fgrp .input-icon-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 0.8rem;
    pointer-events: none;
}

.fgrp .input-icon-wrap input,
.fgrp .input-icon-wrap select {
    padding-left: 32px;
}

.form-btn {
    width: 100%;
    background: var(--teal);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.form-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─── SECTION SKELETON ─── */
section {
    padding: 80px 40px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.sec-tag::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.sec-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.sec-heading.white {
    color: var(--white);
}

.sec-line {
    width: 48px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 28px;
}

.sec-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ─── TRUST ─── */
.trust-section {
    background: var(--teal-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.doc-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 100%;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
}

.doc-photo {
    background: linear-gradient(145deg, var(--teal-deeper), var(--teal-dark));
    height: 100%;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
}

.doc-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-avatar i {
    font-size: 1.6rem;
    color: white;
}

.doc-photo-note {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    text-align: center;
    padding: 0 6px;
}

.doc-body {
    padding: 16px;
}

.doc-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.doc-title {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.doc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.doc-tag {
    background: var(--teal-pale);
    color: var(--teal-deeper);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.trust-body {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.trust-tagline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px 22px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
}

.trust-tagline i {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trust-tagline p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.5;
}

/* ─── PROBLEM ─── */
.problem-section {
    background: var(--navy);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.sym-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.sym-card:hover {
    background: rgba(10, 147, 150, 0.1);
    border-color: rgba(10, 147, 150, 0.4);
    transform: translateY(-2px);
}

.sym-icon {
    width: 42px;
    height: 42px;
    background: rgba(10, 147, 150, 0.18);
    border: 1px solid rgba(10, 147, 150, 0.35);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sym-icon i {
    color: var(--teal-light);
    font-size: 1rem;
}

.sym-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
    padding-top: 3px;
}

.punchline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.35);
    border-radius: 10px;
    padding: 22px 24px;
}

.punchline i {
    color: #e88;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.punchline p {
    font-size: 0.95rem;
    color: #f4a89a;
    font-weight: 500;
    line-height: 1.65;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.punchline strong {
    color: #ffbcb0;
}

/* ─── SERVICES ─── */
.services-section {
    background: var(--white);
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.svc-block {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.svc-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.svc-image-wrap {
    position: relative;
}

.svc-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.svc-image-badge {
    position: absolute;
    bottom: 14px;
    left: 18px;
    background: white;
    color: var(--teal-deeper);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    letter-spacing: -0.01em;
}

.svc-body {
    padding: 24px;
}

.svc-body-sub {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--teal);
    margin-bottom: 8px;
}

.svc-body-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Retina conditions list */
.svc-conditions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-condition {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--teal-bg);
    border-radius: 9px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.svc-condition:hover {
    border-color: var(--teal-light);
}

.svc-condition img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.svc-condition-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.svc-condition-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Cataract perks */
.svc-perks-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-perk {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 14px;
    background: var(--teal-bg);
    border-radius: 9px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.svc-perk:hover {
    border-color: var(--teal-light);
}

.svc-perk-check {
    width: 26px;
    height: 26px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-perk-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.svc-perk-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.4;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 6px;
}

.perk {
    background: var(--teal-bg);
    border-radius: 7px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-body);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.perk i {
    color: var(--teal);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ─── TECHNOLOGY ─── */
.tech-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.tech-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(10, 147, 150, 0.2);
    border-radius: 11px;
    padding: 22px 18px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tech-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.tech-card:hover {
    background: rgba(10, 147, 150, 0.08);
    border-color: rgba(10, 147, 150, 0.5);
    transform: translateY(-3px);
}

.tech-icon {
    width: 44px;
    height: 44px;
    background: rgba(10, 147, 150, 0.18);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tech-icon i {
    color: var(--teal-light);
    font-size: 1.1rem;
}

.tech-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.tech-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.tech-closing {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.tech-closing em {
    color: var(--teal-light);
    font-style: normal;
    font-weight: 700;
}

/* ─── WHY ─── */
.why-section {
    background: var(--teal-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.why-card {
    background: white;
    border-radius: 14px;
    padding: 36px 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 147, 150, 0.14);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--teal-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 16px;
    transition: background 0.25s;
}

.why-card:hover .why-card-icon-wrap {
    background: var(--teal-pale);
}

.why-card-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ─── PROCESS ─── */
.process-section {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--teal-pale);
    z-index: 0;
}

.steps::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    width: 0%;
    height: 2px;
    background: var(--teal);
    z-index: 0;
    animation: progress-line 2s 0.5s ease forwards;
}

@keyframes progress-line {
    to {
        width: 75%;
    }
}

.step {
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 52px;
    height: 52px;
    background: white;
    border: 2.5px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 0 0 5px var(--teal-pale);
}

.step-circle i {
    color: var(--teal);
    font-size: 1rem;
}

.step-num-badge {
    position: absolute;
    top: -6px;
    right: calc(50% - 32px);
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
}

.step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* ─── OFFER ─── */
.offer-section {
    background: var(--red);
    padding: 60px 40px;
    text-align: center;
}

.offer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.price-box {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 12px;
    padding: 16px 28px;
    margin-bottom: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.price-old {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
}

.price-new {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-lbl {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
}

.offer-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    color: var(--red);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* ─── LOCATION ─── */
.location-section {
    background: var(--off-white);
    text-align: center;
}

.map-placeholder {
    background: linear-gradient(145deg, var(--teal-deeper), var(--teal-dark));
    border-radius: 14px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto;
    max-width: 720px;
    border: 1px solid rgba(10, 147, 150, 0.3);
    flex-direction: column;
    gap: 10px;
}

.map-placeholder i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.map-addr {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    text-align: center;
    padding: 0 24px;
    line-height: 1.65;
}

.map-addr strong {
    color: white;
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.city-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.city-pill i {
    font-size: 0.65rem;
    color: var(--teal);
}

.city-pill.main {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.city-pill.main i {
    color: white;
}

/* ─── FINAL CTA ─── */
.final-cta-section {
    background: linear-gradient(140deg, var(--navy), var(--navy-mid));
    padding: 80px 40px;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.final-cta-section h2 em {
    color: var(--teal-light);
    font-style: normal;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.97rem;
    margin-bottom: 32px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(10, 147, 150, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.btn-cta-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
}

.btn-cta-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
    background: #07111e;
    padding: 28px 40px;
    text-align: center;
    border-top: 1px solid rgba(10, 147, 150, 0.2);
}

footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.76rem;
    line-height: 2;
}

footer a {
    color: var(--teal-light);
    text-decoration: none;
}

footer strong {
    color: var(--teal-light);
}

/* ─── FLOAT WA ─── */
.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}

.float-wa:hover {
    transform: scale(1.1);
}

.float-wa i {
    color: white;
    font-size: 1.5rem;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65);
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-child>* {
    animation: fadeUp 0.65s ease both;
}

.anim-child>*:nth-child(1) {
    animation-delay: 0.05s;
}

.anim-child>*:nth-child(2) {
    animation-delay: 0.18s;
}

.anim-child>*:nth-child(3) {
    animation-delay: 0.3s;
}

.anim-child>*:nth-child(4) {
    animation-delay: 0.42s;
}

.anim-child>*:nth-child(5) {
    animation-delay: 0.54s;
}

.form-card {
    animation: fadeUp 0.7s 0.25s ease both;
}

/* ─── RESPONSIVE ─── */

/* Tablet: 768px and up — restore desktop hero + vertical doc card */
@media (min-width: 768px) {
    .hero {
        padding: 110px 40px 80px;
        align-items: center;
    }

    .hero-inner {
        grid-template-columns: 1fr 420px;
        gap: 64px;
    }

    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-ctas {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        justify-content: flex-start;
    }

    .hero-stats {
        gap: 32px;
        margin-top: 40px;
    }

    .stat-num {
        font-size: 1.9rem;
    }

    .form-card {
        padding: 32px 28px;
        max-width: 420px;
    }

    .trust-grid {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }

    .doc-card {
        display: block;
        max-width: 300px;
    }

    .doc-photo {
        height: 280px;
        min-height: unset;
        gap: 12px;
    }

    .doc-avatar {
        width: 96px;
        height: 96px;
    }

    .doc-avatar i {
        font-size: 2.4rem;
    }

    .doc-photo-note {
        font-size: 0.72rem;
    }

    .doc-body {
        padding: 22px;
    }

    .doc-name {
        font-size: 1.1rem;
    }

    .doc-title {
        font-size: 0.78rem;
    }
}

/* Large desktop */
@media (min-width: 960px) {
    .trust-grid {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }

    .doc-card {
        max-width: 320px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .svc-grid { grid-template-columns: 1fr; }
}

/* Mobile-only overrides */
@media (max-width: 767px) {
    .hero{
        margin-top: 30px;
    }

    section {
        padding: 56px 20px;
    }

    .sticky-bar {
        padding: 10px 18px;
    }

    .btn-nav-call {
        display: none;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-card img{
        height: 180px;
    }

    .tech-card {
        padding: 11px 9px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .steps::before,
    .steps::after {
        display: none;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── HERO LAYOUT ── */
.hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3040 100%);
    min-height: 100vh;
    padding: 110px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── BOOKING CARD ── */
.booking-card-wrap {
    scroll-margin-top: 80px;
}

.booking-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.booking-card-header {
    background: linear-gradient(135deg, var(--teal-deeper), var(--teal-dark));
    padding: 22px 24px;
}

.booking-offer-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-offer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}

.booking-offer-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.booking-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 11px 20px;
    background: #f7fafa;
    border-bottom: 1px solid var(--border);
}

.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.booking-trust-item i {
    color: var(--teal);
    font-size: 0.75rem;
}

.booking-trust-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

.booking-widget-wrap {
    padding: 0;
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 100px 24px 60px;
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 6vw, 2.8rem);
    }

    .booking-card-wrap {
        width: 100%;
    }

    .booking-card {
        /* On mobile let the widget determine height naturally */
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

    .booking-trust-strip {
        padding: 10px 14px;
        gap: 4px;
    }

    .booking-trust-item {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 48px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .booking-offer-title {
        font-size: 1rem;
    }

    .booking-trust-strip {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .booking-trust-divider {
        display: none;
    }
}

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    width: 100%;
    max-width: 400px;
}

.hero-visual-img-wrap {
    height: 380px;
    overflow: hidden;
}

.hero-visual-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-visual-info {
    padding: 18px 20px;
    background: white;
}

.hero-visual-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.hero-visual-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-visual-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-visual-tags span {
    background: var(--teal-pale);
    color: var(--teal-deeper);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

/* Floating badges */
.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    min-width: 140px;
}

.hero-float-badge i {
    font-size: 1.1rem;
    color: var(--teal);
    flex-shrink: 0;
}

.hero-float-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-float-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-float-badge--patients {
    top: 24px;
    left: -28px;
}

.hero-float-badge--rating {
    bottom: 100px;
    left: -36px;
}

.hero-float-badge--exp {
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
}

/* ── BOOKING SECTION ── */
.booking-section {
    background: var(--teal-bg);
    padding: 80px 40px;
    scroll-margin-top: 80px;
}

.booking-section-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

.booking-section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.booking-section-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.bk-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bk-perk-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-perk-icon i {
    color: var(--teal-dark);
    font-size: 0.85rem;
}

.bk-perk-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.bk-perk-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.4;
}

.booking-section-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.booking-section-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.booking-section-contact a:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.booking-section-contact a i.fa-whatsapp {
    color: #25D366;
}

.booking-section-widget {
    position: sticky;
    top: 96px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .booking-section-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .booking-section-widget {
        position: static;
    }

    .hero-visual-card {
        max-width: 100%;
    }

    .hero-visual-img-wrap {
        height: 300px;
    }

    .hero-float-badge--patients { left: -10px; top: 16px; }
    .hero-float-badge--rating   { left: -10px; bottom: 80px; }
    .hero-float-badge--exp      { right: -10px; }
}

@media (max-width: 600px) {
    .booking-section {
        padding: 56px 20px;
    }

    .hero-float-badge {
        display: none;
    }

    .hero-visual-img-wrap {
        height: 260px;
    }
}

.trust-section {
    background: var(--teal-bg);
    padding: 80px 40px;
}

.trust-top {
    max-width: 720px;
    margin-bottom: 36px;
}

.trust-body {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.trust-credentials {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.trust-cred-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    transition: background 0.2s;
}

.trust-cred-card:hover {
    background: var(--teal-bg);
}

.trust-cred-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.trust-cred-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-cred-icon i {
    color: var(--teal-dark);
    font-size: 0.95rem;
}

.trust-cred-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
    line-height: 1.3;
}

.trust-cred-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-tagline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border-radius: 10px;
    padding: 18px 22px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
}

.trust-tagline i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-tagline p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 860px) {
    .trust-credentials {
        flex-direction: column;
    }

    .trust-cred-divider {
        width: auto;
        height: 1px;
    }

    .trust-top {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 56px 20px;
    }
}

.testimonials-section {
    background: var(--off-white);
    padding: 80px 40px;
}

.testimonial-carousel {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.testimonial-slide img {
    width: 100%;
    aspect-ratio: 1372 / 1316;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10,147,150,0.10);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: scale(1.08);
}

.testimonial-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}

.t-dot.active {
    background: var(--teal);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 860px) {
    .testimonials-section { padding: 60px 24px; }
}

@media (max-width: 540px) {
    .testimonials-section { padding: 56px 16px; }
    .testimonial-btn { width: 36px; height: 36px; font-size: 0.75rem; }
}

/* ── PROMO VIDEO ── */
.promo-video-section {
    background: var(--white);
    padding: 80px 40px;
}

.promo-video-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.promo-video-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.promo-video-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.promo-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.promo-point-icon i {
    color: var(--teal);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.promo-point-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Video frame — vertical 9:16 ratio */
.promo-video-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.promo-video-frame {
    width: 100%;
    /* 9:16 aspect ratio for vertical/Shorts video */
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(10,147,150,0.18);
    position: relative;
    background: var(--navy);
}

.promo-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.promo-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ff0000;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

.promo-video-badge i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 860px) {
    .promo-video-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-video-wrap {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-video-section {
        padding: 56px 20px;
    }

    .promo-video-wrap {
        max-width: 280px;
    }
}