:root {
  --navy-950: #06182c;
  --navy-900: #081d35;
  --navy-800: #0c2945;
  --navy-700: #143c5b;
  --teal-600: #087f82;
  --teal-500: #12a3a0;
  --teal-400: #2ec4bd;
  --teal-100: #dff7f5;
  --teal-50: #effbf9;
  --ink: #102337;
  --muted: #607083;
  --line: #dce7ea;
  --surface: #f5f9f9;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(8, 29, 53, .07);
  --shadow-lg: 0 30px 80px rgba(8, 29, 53, .14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px; color: white; background: var(--navy-900); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.demo-bar { color: white; background: var(--navy-950); font-size: 12px; letter-spacing: .02em; }
.demo-bar__inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.demo-bar a { color: #b8f3ef; font-weight: 650; }
.demo-dot { width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 4px rgba(46, 196, 189, .12); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { border-color: rgba(8, 29, 53, .08); box-shadow: 0 10px 35px rgba(8, 29, 53, .06); }
.header-inner { height: var(--header-height); display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--navy-900); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--teal-500), var(--teal-600)); border-radius: 13px; box-shadow: 0 8px 22px rgba(18, 163, 160, .24); }
.brand-mark svg { width: 27px; height: 27px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 21px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; color: var(--teal-600); font-size: 9px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 28px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 10px 0; color: #46566a; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--teal-500); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy-900); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-cta { margin-left: 6px; }
.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: absolute; inset: 100% 0 auto; padding: 12px 0 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.mobile-nav[hidden] { display: none; }
.mobile-nav .container { display: grid; }
.mobile-nav a:not(.button) { padding: 13px 4px; border-bottom: 1px solid #edf2f3; font-weight: 650; }
.mobile-nav .button { margin-top: 18px; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 13px 22px; border: 0; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); box-shadow: 0 12px 28px rgba(8,127,130,.2); font-weight: 750; line-height: 1.2; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(8,127,130,.26); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .faq-item button:focus-visible { outline: 3px solid rgba(46,196,189,.4); outline-offset: 3px; }
.button--small { min-height: 44px; padding: 11px 17px; font-size: 14px; }
.button--ghost { color: var(--navy-900); background: rgba(255,255,255,.72); border: 1px solid rgba(8,29,53,.13); box-shadow: none; }
.button--ghost:hover { background: white; box-shadow: var(--shadow-sm); }
.button--dark { background: var(--navy-900); box-shadow: 0 12px 28px rgba(8,29,53,.16); }
.button--ghost-dark { color: var(--navy-900); background: transparent; border: 1px solid rgba(8,29,53,.2); box-shadow: none; }
.button--light { color: var(--navy-900); background: white; box-shadow: none; }
.button--full { width: 100%; }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; padding-top: 90px; background: linear-gradient(120deg, #f9fcfc 0%, #f4fbfa 60%, #eef8f8 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(rgba(8,127,130,.12) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, black, transparent 52%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow--one { width: 440px; height: 440px; top: -220px; left: -160px; background: rgba(46,196,189,.11); }
.hero-glow--two { width: 330px; height: 330px; right: -130px; bottom: -120px; background: rgba(46,196,189,.16); }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid #cdecea; border-radius: 999px; color: var(--teal-600); background: rgba(255,255,255,.7); font-size: 13px; font-weight: 750; }
.eyebrow-icon { font-size: 15px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy-900); font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(45px, 5.3vw, 75px); }
h1 span { color: var(--teal-600); }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); }
h3 { color: var(--navy-900); line-height: 1.25; }
.hero-lead { max-width: 610px; margin-bottom: 31px; color: #526477; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(8,29,53,.1); }
.hero-proof > div { display: flex; align-items: center; gap: 10px; }
.proof-icon { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal-600); background: var(--teal-100); border-radius: 50%; font-size: 12px; font-weight: 900; }
.hero-proof strong, .hero-proof small { display: block; line-height: 1.3; }
.hero-proof strong { color: var(--navy-900); font-size: 13px; }
.hero-proof small { color: var(--muted); font-size: 11px; }
.hero-visual { position: relative; padding: 16px 6px 35px 18px; }
.hero-image-wrap { position: relative; overflow: hidden; aspect-ratio: .93; border: 8px solid rgba(255,255,255,.8); border-radius: 80px 22px 80px 22px; box-shadow: var(--shadow-lg); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,29,53,.12), transparent 38%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.hero-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.7); border-radius: 16px; box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.hero-card--rating { left: -18px; bottom: 55px; }
.hero-card--available { right: -25px; top: 62px; }
.hero-card strong, .hero-card small { display: block; line-height: 1.4; }
.hero-card strong { color: var(--navy-900); font-size: 13px; }
.hero-card small { color: var(--muted); font-size: 10px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -7px; color: white; background: var(--navy-800); border: 2px solid white; border-radius: 50%; font-size: 8px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--teal-600); }
.avatar-stack span:last-child { background: #6b7e92; }
.stars { color: #eba83d; font-size: 12px; letter-spacing: 1px; }
.pulse { width: 10px; height: 10px; display: block; flex: 0 0 auto; border-radius: 50%; background: #34b678; box-shadow: 0 0 0 6px rgba(52,182,120,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(52,182,120,0); } }
.hero-note { position: absolute; right: 12px; bottom: 8px; margin: 0; color: #7a8996; font-size: 10px; }

.trust-strip { background: var(--navy-900); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 27px; padding-bottom: 27px; }
.trust-grid > div { padding: 3px 28px; border-left: 1px solid rgba(255,255,255,.12); }
.trust-grid > div:first-child { padding-left: 0; border-left: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 3px; color: white; font-size: 15px; }
.trust-grid span { color: #aebdcc; font-size: 11px; line-height: 1.4; }

.section-heading { margin-bottom: 54px; }
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-heading--split h2 { max-width: 670px; margin-bottom: 0; }
.section-heading--split > p { max-width: 490px; margin-bottom: 4px; color: var(--muted); }
.section-heading--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-heading--center p { color: var(--muted); }
.kicker { display: inline-block; margin-bottom: 15px; color: var(--teal-600); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.kicker--light { color: #80e4df; }

.services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 340px; display: flex; flex-direction: column; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .3s, border-color .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); border-color: #b9dedc; box-shadow: var(--shadow-lg); }
.service-number { position: absolute; top: 25px; right: 26px; color: #a8b7c2; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 28px; color: var(--teal-600); background: var(--teal-50); border: 1px solid #d5efed; border-radius: 17px; font-size: 27px; }
.service-card h3 { margin-bottom: 12px; font-size: 20px; }
.service-card p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding: 0; color: var(--teal-600); background: none; border: 0; font-size: 13px; font-weight: 800; cursor: pointer; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.service-card--accent { color: white; background: linear-gradient(145deg, var(--navy-900), #0b3553); border-color: transparent; }
.service-card--accent h3, .service-card--accent .text-link { color: white; }
.service-card--accent p { color: #bed0dc; }
.service-card--accent .service-icon { color: white; background: rgba(46,196,189,.18); border-color: rgba(255,255,255,.13); }
.service-card--accent .service-number { color: rgba(255,255,255,.45); }

.about { overflow: hidden; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 105px); align-items: center; }
.about-visual { position: relative; min-height: 570px; }
.about-visual::before { content: ""; position: absolute; width: 250px; height: 250px; left: -50px; bottom: -55px; border-radius: 50%; background: var(--teal-100); }
.about-image { position: absolute; inset: 0 35px 0 0; background: linear-gradient(rgba(8,29,53,.08), rgba(8,29,53,.08)), url("assets/clinic-hero.png") 72% center/cover; border-radius: 30px 80px 30px 80px; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; right: 0; bottom: 55px; width: 190px; padding: 22px; color: white; background: var(--teal-600); border: 7px solid var(--surface); border-radius: 21px; box-shadow: var(--shadow-sm); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-size: 17px; }
.about-badge span { margin-top: 4px; color: #c9f4f1; font-size: 11px; }
.about-copy .lead { color: var(--navy-700); font-size: 19px; font-weight: 600; }
.about-copy > p:not(.lead) { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 27px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; color: #354b5f; font-size: 14px; font-weight: 600; }
.check-list span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal-600); background: var(--teal-100); border-radius: 50%; font-size: 11px; }
.stat-wrap { margin-top: 85px; }
.stat-disclaimer { margin-bottom: 13px; color: #82909b; font-size: 10px; text-align: right; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.stats > div { padding: 27px 30px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats strong, .stats span { display: block; }
.stats strong { color: var(--teal-600); font-size: 32px; letter-spacing: -.04em; }
.stats span { color: var(--muted); font-size: 11px; }

.process { background: white; }
.process-grid { display: grid; grid-template-columns: 1fr 100px 1fr 100px 1fr; align-items: start; }
.process-step { text-align: center; }
.step-marker { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 25px; border: 1px solid #cae7e5; border-radius: 23px; color: var(--teal-600); background: var(--teal-50); transform: rotate(4deg); }
.step-marker span { font-size: 18px; font-weight: 850; transform: rotate(-4deg); }
.process-step h3 { margin-bottom: 9px; font-size: 19px; }
.process-step p { max-width: 260px; margin-inline: auto; color: var(--muted); font-size: 13px; }
.process-line { height: 1px; margin-top: 39px; background: repeating-linear-gradient(to right, #a8cfcc 0 7px, transparent 7px 14px); }

.team { background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 375px; background-image: url("assets/team.png"); background-size: 300% 100%; background-repeat: no-repeat; }
.team-photo--one { background-position: left center; }
.team-photo--two { background-position: center center; }
.team-photo--three { background-position: right center; }
.team-info { padding: 27px; }
.team-info > span { display: block; margin-bottom: 7px; color: var(--teal-600); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.team-info h3 { margin-bottom: 9px; font-size: 21px; }
.team-info p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.content-note { margin: 22px 0 0; color: #82909b; font-size: 10px; text-align: center; }

.testimonials { color: white; background: var(--navy-900); }
.testimonials h2 { color: white; }
.testimonials .section-heading p { color: #b3c2ce; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.quote-card blockquote { min-height: 125px; margin: 18px 0 24px; color: #e3edf2; font-size: 16px; line-height: 1.75; }
.quote-card footer { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.quote-card footer > span { width: 39px; height: 39px; display: grid; place-items: center; color: white; background: var(--teal-600); border-radius: 50%; font-size: 10px; font-weight: 800; }
.quote-card footer strong, .quote-card footer small { display: block; }
.quote-card footer strong { font-size: 13px; }
.quote-card footer small { color: #91a6b7; font-size: 10px; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { margin-bottom: 28px; color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 3px; border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq-plus { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid #cbdadd; border-radius: 50%; transition: background .25s, transform .25s; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; background: var(--navy-900); transform: translate(-50%, -50%); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s; }
.faq-item button[aria-expanded="true"] .faq-plus { background: var(--teal-100); border-color: var(--teal-100); transform: rotate(180deg); }
.faq-item button[aria-expanded="true"] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { margin: -5px 45px 25px 3px; color: var(--muted); font-size: 14px; }

.booking { background: linear-gradient(130deg, var(--navy-950), var(--navy-800)); }
.booking-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 105px); align-items: center; }
.booking-copy h2 { color: white; }
.booking-copy > p { color: #b4c6d3; }
.booking-points { display: grid; gap: 18px; margin-top: 35px; }
.booking-points > div { display: flex; align-items: center; gap: 15px; }
.booking-points > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: #9feae6; border: 1px solid rgba(46,196,189,.35); border-radius: 13px; font-size: 11px; font-weight: 800; }
.booking-points p { margin: 0; }
.booking-points strong, .booking-points small { display: block; }
.booking-points strong { color: white; font-size: 13px; }
.booking-points small { color: #90a8b8; font-size: 10px; }
.booking-form { padding: clamp(25px, 4vw, 42px); background: white; border-radius: var(--radius-lg); box-shadow: 0 35px 80px rgba(0,0,0,.22); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 26px; }
.form-heading h3 { margin: 0; font-size: 25px; }
.form-heading span { padding: 6px 9px; color: var(--teal-600); background: var(--teal-50); border-radius: 99px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-form label { display: block; margin-bottom: 15px; color: #30475a; font-size: 12px; font-weight: 700; }
.booking-form input:not([type="checkbox"]), .booking-form select, .booking-form textarea { width: 100%; display: block; margin-top: 7px; padding: 13px 14px; color: var(--ink); background: #f9fbfb; border: 1px solid #d8e3e5; border-radius: 10px; outline: none; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.booking-form input:not([type="checkbox"]), .booking-form select { min-height: 48px; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(18,163,160,.1); }
.booking-form input.invalid, .booking-form select.invalid { border-color: #d75454; }
.optional { color: #9aa7b1; font-weight: 500; }
.field-error { display: block; min-height: 14px; margin-top: 3px; color: #be3f3f; font-size: 10px; font-weight: 600; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; column-gap: 9px; align-items: start; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--teal-600); }
.consent span { font-weight: 500; line-height: 1.5; }
.consent a { color: var(--teal-600); text-decoration: underline; }
.consent .field-error { grid-column: 2; }
.form-status { display: none; margin: 15px 0 0; padding: 12px 14px; color: #176841; background: #e9f8f1; border-radius: 10px; font-size: 12px; font-weight: 650; }
.form-status.show { display: block; }
.form-disclaimer { margin: 12px 0 0; color: #8896a0; font-size: 9px; text-align: center; }

.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-cards article { display: flex; align-items: center; gap: 14px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--teal-600); background: var(--teal-50); border-radius: 12px; font-size: 18px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { margin-bottom: 3px; color: var(--muted); font-size: 9px; }
.contact-cards strong { color: var(--navy-900); font-size: 12px; line-height: 1.45; }
.demo-map { position: relative; min-height: 340px; overflow: hidden; background-color: #e3eeec; background-image: linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px); background-size: 38px 38px; border: 8px solid white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.road { position: absolute; display: block; background: white; border: 1px solid #d2dfde; box-shadow: 0 2px 4px rgba(0,0,0,.03); }
.road--one { width: 120%; height: 25px; top: 33%; left: -10%; transform: rotate(-12deg); }
.road--two { width: 25px; height: 120%; top: -10%; left: 66%; transform: rotate(18deg); }
.road--three { width: 90%; height: 13px; top: 72%; left: 0; transform: rotate(20deg); }
.road--four { width: 13px; height: 100%; top: 0; left: 27%; transform: rotate(-10deg); }
.map-pin { position: absolute; z-index: 2; top: 45%; left: 53%; transform: translate(-50%,-50%); }
.map-pin .brand-mark { position: relative; width: 56px; height: 56px; border: 5px solid white; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 15px 30px rgba(8,29,53,.2); }
.map-pin svg { transform: rotate(45deg); }
.map-label { position: absolute; z-index: 2; top: calc(45% + 45px); left: 53%; display: block; padding: 7px 12px; color: white; background: var(--navy-900); border-radius: 8px; transform: translateX(-50%); font-size: 10px; font-weight: 750; white-space: nowrap; }
.map-label small { display: block; color: #9fbbc9; font-size: 8px; font-weight: 500; }
.map-city { position: absolute; left: 20px; bottom: 15px; color: rgba(8,29,53,.27); font-size: 20px; font-weight: 900; letter-spacing: .14em; }

.final-cta { color: white; background: var(--teal-600); }
.final-cta__inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta span { color: #c8f5f2; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.final-cta h2 { max-width: 720px; margin: 10px 0 0; color: white; font-size: clamp(28px, 4vw, 44px); }
.final-cta .button span { color: inherit; font-size: inherit; letter-spacing: 0; }

.site-footer { padding-top: 72px; color: #aabac6; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.brand--light { color: white; }
.brand--light .brand-copy small { color: #66d4cf; }
.footer-brand p { max-width: 320px; margin-top: 20px; font-size: 13px; }
.footer-grid h3 { margin-bottom: 18px; color: white; font-size: 13px; }
.footer-grid > div:not(.footer-brand) a { display: block; margin: 9px 0; font-size: 12px; transition: color .2s; }
.footer-grid > div:not(.footer-brand) a:hover { color: #80e4df; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; font-size: 10px; }
.footer-bottom a { color: #7be0db; font-weight: 700; }

.whatsapp-float { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; padding: 12px 16px 12px 13px; color: white; background: #25d366; border: 0; border-radius: 999px; box-shadow: 0 14px 35px rgba(22,106,60,.3); font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .25s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 23px; height: 23px; fill: currentColor; }
.toast { position: fixed; z-index: 1100; right: 24px; bottom: 90px; width: min(350px, calc(100% - 40px)); padding: 19px 44px 19px 19px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast strong, .toast span { display: block; }
.toast strong { color: var(--navy-900); font-size: 13px; }
.toast span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.toast button { position: absolute; top: 8px; right: 11px; border: 0; color: #7a8996; background: transparent; font-size: 22px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay, .reveal--delay-sm { transition-delay: .12s; }
.reveal--delay-md { transition-delay: .22s; }

@media (max-width: 1040px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 12px; }
  .hero-grid { gap: 40px; }
  .hero-card--available { right: -5px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 55px 1fr 55px 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .section-pad { padding: 84px 0; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid, .about-grid, .faq-grid, .booking-shell, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 650px; margin: 0 auto; }
  .hero-image-wrap { aspect-ratio: 1.2; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 0; }
  .trust-grid > div { padding: 13px 25px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .about-visual { min-height: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stats > div:nth-child(4) { border-top: 1px solid var(--line); }
  .team-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .team-card:last-child, .quote-card:last-child { grid-column: 1 / -1; max-width: 520px; width: 100%; justify-self: center; }
  .faq-intro { position: static; }
  .booking-copy { max-width: 680px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 70px 0; }
  .demo-bar__inner { min-height: 38px; }
  .demo-bar__inner > span { max-width: 210px; line-height: 1.25; }
  .demo-bar a { font-size: 0; }
  .demo-bar a::after { content: "Tower Digital ↗"; font-size: 11px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 19px; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(39px, 13vw, 55px); }
  h2 { font-size: clamp(31px, 9vw, 41px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { margin-top: 15px; padding: 8px 0 55px; }
  .hero-image-wrap { aspect-ratio: .88; border-radius: 52px 17px 52px 17px; }
  .hero-card--available { top: 22px; right: -7px; }
  .hero-card--rating { left: -5px; bottom: 35px; }
  .hero-note { bottom: 10px; }
  .trust-grid { grid-template-columns: 1fr; padding: 15px 0; }
  .trust-grid > div { padding: 12px 4px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:first-child { border-top: 0; }
  .service-grid, .team-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .team-card:last-child, .quote-card:last-child { grid-column: auto; max-width: none; }
  .about-visual { min-height: 430px; }
  .about-image { right: 8px; border-radius: 24px 55px 24px 55px; }
  .about-badge { right: -4px; bottom: 25px; width: 165px; padding: 18px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div { padding: 22px 18px; }
  .stats strong { font-size: 27px; }
  .process-grid { grid-template-columns: 1fr; gap: 15px; }
  .process-line { width: 1px; height: 30px; margin: 0 auto; background: repeating-linear-gradient(to bottom, #a8cfcc 0 5px, transparent 5px 10px); }
  .team-photo { height: 390px; }
  .quote-card blockquote { min-height: auto; }
  .form-row, .contact-cards { grid-template-columns: 1fr; }
  .form-heading { align-items: flex-start; }
  .form-heading span { max-width: 90px; text-align: center; }
  .final-cta__inner { min-height: 300px; align-items: flex-start; justify-content: center; flex-direction: column; padding-top: 50px; padding-bottom: 50px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 13px; }
  .whatsapp-float span { display: none; }
  .toast { right: 14px; bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
