:root {
  --navy-950: #0b1d35;
  --navy-900: #142b4c;
  --navy-800: #203b66;
  --navy-700: #31517f;
  --blue-500: #4aa7d8;
  --blue-300: #93d7ec;
  --blue-100: #e7f6fb;
  --ice: #f4f9fc;
  --white: #ffffff;
  --ink: #15243a;
  --muted: #5c6c7f;
  --line: #dbe7ef;
  --success: #1f9d75;
  --shadow: 0 24px 70px rgba(18, 53, 88, 0.14);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 999; transform: translateY(-180%); padding: .75rem 1rem; border-radius: .6rem; background: var(--navy-900); color: white; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(219, 231, 239, .8);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; min-width: max-content; }
.brand img { width: clamp(188px, 20vw, 255px); height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; color: #40546c; font-weight: 650; font-size: .93rem; }
.main-nav > a:not(.button) { transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--blue-500); }
.menu-button { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: .85rem 1.35rem;
  border: 1px solid var(--navy-800); border-radius: .85rem;
  background: var(--navy-800); color: white; font-weight: 800;
  box-shadow: 0 12px 30px rgba(32, 59, 102, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-700); box-shadow: 0 16px 34px rgba(32, 59, 102, .25); }
.button:focus-visible, a:focus-visible, summary:focus-visible, .menu-button:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 3px; }
.button-small { min-height: 42px; padding: .55rem 1rem; border-radius: .7rem; font-size: .88rem; }
.button-light { background: white; color: var(--navy-800); border-color: white; box-shadow: none; min-width: 220px; }
.button-light:hover { background: var(--blue-100); }
.text-link { font-weight: 800; color: var(--navy-800); padding: .7rem 0; }
.text-link span { color: var(--blue-500); margin-left: .25rem; }

.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; color: var(--blue-500); font-weight: 850; font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--blue-300); }
.centered-eyebrow { justify-content: center; }
h1, h2, h3 { margin-top: 0; color: var(--navy-950); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 5.1vw, 5.25rem); margin-bottom: 1.35rem; max-width: 760px; }
h2 { font-size: clamp(2.1rem, 3.65vw, 3.65rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; letter-spacing: -.02em; }
p { margin-top: 0; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.hero { position: relative; overflow: hidden; padding: clamp(4rem, 7vw, 7rem) 0 5.5rem; background: linear-gradient(125deg, #f7fbfe 0%, #fff 52%, #eaf6fb 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .96fr) minmax(420px, .78fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-lead { max-width: 650px; color: var(--muted); font-size: clamp(1.06rem, 1.7vw, 1.25rem); line-height: 1.75; }
.hero-lead strong { color: var(--navy-800); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin: 2rem 0 1.8rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .9rem 1.35rem; list-style: none; padding: 0; margin: 0; color: #44596f; font-size: .9rem; font-weight: 700; }
.hero-proof span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: .35rem; border-radius: 50%; background: #dcf7ed; color: var(--success); font-size: .72rem; }
.hero-photo-wrap { position: relative; min-height: 610px; }
.hero-photo { width: 100%; height: 610px; object-fit: cover; object-position: 60% center; border-radius: 9rem 2rem 2rem 2rem; box-shadow: var(--shadow); }
.appointment-chip { position: absolute; display: flex; align-items: center; gap: .75rem; padding: .8rem .95rem; border: 1px solid rgba(219,231,239,.8); border-radius: 1rem; background: rgba(255,255,255,.96); box-shadow: 0 14px 38px rgba(21, 51, 82, .16); }
.appointment-chip span:not(.chip-icon):not(.avatar-mini) { display: grid; line-height: 1.28; }
.appointment-chip small { color: var(--muted); font-size: .7rem; }
.appointment-chip strong { color: var(--navy-900); font-size: .82rem; }
.appointment-chip-top { top: 5%; left: -10%; }
.appointment-chip-bottom { right: -7%; bottom: 6%; }
.chip-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: .7rem; background: #dcf7ed; color: var(--success); font-weight: 900; }
.avatar-mini { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; }
.avatar-mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 280px; height: 280px; right: -120px; top: 10%; background: rgba(74,167,216,.15); }
.hero-orb-two { width: 160px; height: 160px; left: -70px; bottom: -45px; border: 30px solid rgba(147,215,236,.24); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-items { min-height: 92px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem 1.5rem; color: #69798a; font-weight: 800; font-size: .83rem; text-transform: uppercase; letter-spacing: .1em; }
.trust-items i { width: 4px; height: 4px; background: var(--blue-300); border-radius: 50%; }

.split-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, .85fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.scene-card { position: relative; }
.scene-card::before { content: ""; position: absolute; inset: 8% -6% -6% 10%; border-radius: var(--radius-xl); background: var(--blue-100); z-index: -1; }
.scene-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.video-badge { position: absolute; left: 1rem; bottom: 1rem; display: flex; align-items: center; gap: .6rem; padding: .65rem .85rem; border-radius: 999px; background: rgba(12, 29, 53, .88); color: white; font-size: .8rem; font-weight: 800; backdrop-filter: blur(10px); }
.play { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--blue-500); font-size: .6rem; padding-left: 2px; }
.section-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-copy strong { color: var(--navy-800); }
.quote-card { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ice); }
.quote-card img { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.quote-card p { margin: 0; color: var(--navy-800) !important; font-size: .93rem !important; font-weight: 700; }

.resources-section { background: var(--ice); }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { position: relative; min-height: 265px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--blue-300); box-shadow: 0 18px 46px rgba(22,56,89,.09); }
.feature-number { position: absolute; top: 1.2rem; right: 1.4rem; color: #cad9e4; font-weight: 900; font-size: .75rem; letter-spacing: .08em; }
.feature-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.6rem; border-radius: .9rem; background: var(--blue-100); color: var(--navy-800); font-size: 1.35rem; font-weight: 900; }
.feature-card p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { padding-right: 1rem; }
.step-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.step-top strong { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-800); color: white; font-size: 1.1rem; }
.step-top span { width: 100%; height: 1px; background: var(--line); }
.step h3 { margin-bottom: .7rem; }
.step p { color: var(--muted); font-size: .93rem; }

.audience-section { position: relative; overflow: hidden; background: var(--navy-950); color: white; }
.audience-section::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; bottom: -240px; border: 70px solid rgba(74,167,216,.14); border-radius: 50%; }
.audience-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, .7fr); align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.audience-copy h2 { color: white; }
.audience-copy > p:not(.eyebrow) { color: #bdcad7; font-size: 1.08rem; }
.check-list { display: grid; gap: .9rem; list-style: none; padding: 0; margin: 2rem 0 0; }
.check-list li { display: flex; align-items: center; gap: .7rem; color: #e5eef5; font-weight: 700; }
.check-list span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(74,167,216,.2); color: var(--blue-300); }
.phone-showcase { position: relative; display: flex; justify-content: center; min-height: 620px; }
.phone-shell { width: min(310px, 78vw); padding: 10px; border: 2px solid #5d718c; border-radius: 2.6rem; background: #101c2d; box-shadow: 0 30px 80px rgba(0,0,0,.36); transform: rotate(3deg); }
.phone-speaker { width: 33%; height: 20px; margin: -1px auto -10px; border-radius: 0 0 15px 15px; background: #101c2d; position: relative; z-index: 3; }
.phone-screen { height: 590px; overflow: hidden; border-radius: 2rem; background: #e8eff1; color: var(--ink); }
.phone-header { height: 66px; display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem; background: var(--navy-800); color: white; }
.phone-header img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.phone-header span { display: grid; line-height: 1.2; }
.phone-header strong { font-size: .85rem; }
.phone-header small { color: #cceafa; font-size: .65rem; }
.phone-video { position: relative; margin: 1rem; border-radius: 1rem; overflow: hidden; background: #d3e0e7; }
.phone-video img { width: 100%; height: 260px; object-fit: cover; object-position: center 25%; }
.video-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 48px; height: 48px; padding-left: 3px; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(18,43,76,.78); color: white; }
.message { width: fit-content; max-width: 78%; margin: .55rem 1rem; padding: .65rem .8rem; border-radius: .85rem; font-size: .72rem; line-height: 1.4; box-shadow: 0 2px 7px rgba(21,36,58,.07); }
.message.received { background: white; border-top-left-radius: .2rem; }
.message.sent { margin-left: auto; background: #d9f3e9; border-top-right-radius: .2rem; }
.message.short { max-width: 65%; }
.calendar-card { position: absolute; right: -5%; bottom: 11%; display: grid; padding: 1rem 1.15rem; border-radius: 1rem; background: white; color: var(--ink); box-shadow: 0 18px 45px rgba(0,0,0,.24); transform: rotate(-2deg); }
.calendar-card small { color: var(--muted); font-size: .7rem; }
.calendar-card strong { color: var(--navy-800); font-size: 1rem; }
.calendar-card span { color: var(--success); font-size: .7rem; font-weight: 800; }

.safety-section { padding-bottom: 0; }
.safety-card { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(120deg, white, var(--ice)); box-shadow: 0 18px 60px rgba(22,56,89,.07); }
.safety-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 1.3rem; background: var(--blue-100); color: var(--navy-800); font-size: 2rem; font-weight: 400; }
.safety-card h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.safety-card p:last-child { color: var(--muted); margin-bottom: 0; }

.faq-grid { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, .9fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; cursor: pointer; list-style: none; padding: 1.35rem 3rem 1.35rem 0; color: var(--navy-900); font-weight: 800; font-size: 1.02rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); color: var(--navy-800); font-size: 1.15rem; transition: transform .2s ease; }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { margin: -.25rem 2.5rem 1.35rem 0; color: var(--muted); font-size: .94rem; }

.cta-section { padding: 0 0 clamp(5rem, 9vw, 8rem); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(2.5rem, 5vw, 4.5rem); border-radius: var(--radius-xl); background: linear-gradient(120deg, var(--navy-800), var(--navy-950)); color: white; overflow: hidden; position: relative; }
.cta-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: 10%; bottom: -210px; border: 45px solid rgba(147,215,236,.14); border-radius: 50%; }
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: white; max-width: 760px; font-size: clamp(2rem, 3.6vw, 3.4rem); }
.cta-card p:not(.eyebrow) { color: #c7d5e2; max-width: 720px; margin-bottom: 0; }

.site-footer { padding: 4rem 0 1.5rem; border-top: 1px solid var(--line); background: white; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr 1fr; gap: 3rem; }
.footer-brand img { width: min(310px, 100%); height: 64px; object-fit: contain; object-position: left center; margin-bottom: 1rem; }
.footer-brand p { max-width: 430px; color: var(--muted); font-size: .9rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: .55rem; font-size: .88rem; }
.footer-grid strong { color: var(--navy-900); margin-bottom: .35rem; }
.footer-grid a, .footer-grid span { color: var(--muted); }
.footer-grid a:hover { color: var(--blue-500); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: #7b8998; font-size: .76rem; }
.footer-signature { display: flex; align-items: center; justify-content: flex-end; gap: .7rem; margin-top: 1.2rem; color: #7b8998; font-size: .72rem; }
.footer-signature img { width: 112px; height: 72px; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .feature-card { transition: none; }
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; padding: 1.25rem; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 18px 36px rgba(22,56,89,.1); }
  .main-nav.open { display: grid; }
  .main-nav .button { margin-top: .4rem; }
  .hero-grid, .split-grid, .audience-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-photo-wrap { width: min(650px, 100%); margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .phone-showcase { margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 70px; }
  .brand img { width: 190px; height: 44px; }
  h1 { font-size: clamp(2.4rem, 11vw, 3.45rem); }
  .hero { padding-top: 3.4rem; }
  .hero-grid { gap: 3rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: .65rem; }
  .text-link { text-align: center; }
  .hero-photo-wrap { min-height: 460px; }
  .hero-photo { height: 460px; border-radius: 5.5rem 1.4rem 1.4rem 1.4rem; }
  .appointment-chip { padding: .65rem .75rem; }
  .appointment-chip-top { left: .6rem; top: .8rem; }
  .appointment-chip-bottom { right: .6rem; bottom: .8rem; }
  .trust-items { padding-block: 1.2rem; gap: .7rem 1rem; font-size: .72rem; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .step-top span { display: none; }
  .step { padding-right: 0; }
  .safety-card { grid-template-columns: 1fr; }
  .phone-showcase { min-height: 580px; }
  .phone-screen { height: 545px; }
  .phone-video img { height: 230px; }
  .calendar-card { right: 0; bottom: 4%; }
  .cta-card { align-items: stretch; flex-direction: column; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .35rem; }
  .footer-signature { justify-content: flex-start; }
}

@media (max-width: 390px) {
  .brand img { width: 172px; }
  .hero-proof { display: grid; }
  .appointment-chip small { display: none; }
  .appointment-chip-bottom { max-width: 230px; }
}
