@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;1,9..144,600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Karla:ital,wght@0,400..800;1,400..800&display=swap');

:root {
  --ink: #223a5e;
  --ink-soft: #5f708c;
  --teal: #6d8fbe;
  --teal-dark: #4d73aa;
  --mint: #dce7f5;
  --mint-light: #eef4fb;
  --cream: #f6f2eb;
  --paper: #fbfcfe;
  --white: #ffffff;
  --line: #d8e2ef;
  --gold: #bb9573;
  --danger: #b42318;
  --shadow-sm: 0 8px 30px rgba(34, 58, 94, .08);
  --shadow-md: 0 22px 60px rgba(34, 58, 94, .14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --font-sans: "Karla", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  overflow-x: hidden; 
  color: var(--ink); 
  background-color: var(--paper); 
  background-image: 
    radial-gradient(at 0% 0%, rgba(220, 231, 245, 0.45) 0px, transparent 55%),
    radial-gradient(at 100% 0%, rgba(246, 242, 235, 0.7) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(220, 231, 245, 0.35) 0px, transparent 50%);
  background-attachment: fixed;
  font-family: var(--font-sans); 
  font-size: 17.5px; 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--ink); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--font-serif); font-size: clamp(2.35rem, 4.3vw, 3.65rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 22px; }
h2 { font-family: var(--font-sans); font-size: clamp(1.85rem, 3.2vw, 2.75rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 18px; }
h3 { font-family: var(--font-sans); font-size: 1.35rem; font-weight: 700; line-height: 1.3; }
blockquote { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.section { padding: 112px 0; }
.section-kicker, .eyebrow { color: var(--teal); font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-weight: 700; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(251, 252, 254, .92); border-bottom: 1px solid rgba(216, 226, 239, .85); backdrop-filter: blur(18px); }
.header-container { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; perspective: 1000px; user-select: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: "Fraunces", var(--font-serif); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); display: block; }
.brand-tagline { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); margin-top: 3px; display: block; }
.brand span:not(.brand-text, .brand-name, .brand-tagline) { font-family: "Fraunces", var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-family: var(--font-serif); font-size: .88rem; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > a:not(.nav-cta) { position: relative; color: var(--ink-soft); font-size: .94rem; font-weight: 600; }
.nav-menu > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--teal); transition: right .25s ease; }
.nav-menu > a:hover::after, .nav-menu > a[aria-current="page"]::after { right: 0; }
.nav-menu > a[aria-current="page"] { color: var(--ink); }
.nav-cta { padding: 11px 19px; color: var(--white); background: var(--ink); border-radius: 999px; font-size: .9rem; font-weight: 700; transition: transform .25s ease, background .25s ease; }
.nav-menu > .nav-cta[aria-current="page"] { color: var(--white); }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 23px; height: 2px; display: block; margin: 6px auto; background: var(--ink); transition: transform .25s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.2; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 25px rgba(109, 143, 190, .24); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 13px 30px rgba(77, 115, 170, .3); }
.btn-secondary { color: var(--ink); background: transparent; border-color: #b7c4d7; }
.btn-secondary:hover { background: var(--white); border-color: var(--teal); }
.btn-light { color: var(--ink); background: var(--white); }

.home-hero { min-height: 600px; padding: 60px 0 80px; display: grid; align-items: center; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: 54px; }
.hero-copy { max-width: 640px; }
.hero-lead { max-width: 580px; margin-bottom: 28px; color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.assurance-list { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; padding: 0; color: var(--ink-soft); font-size: .88rem; list-style: none; }
.assurance-list li { display: flex; align-items: center; gap: 8px; }
.assurance-list li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; background: var(--gold); border-radius: 50%; }

.calm-visual { position: relative; min-height: 490px; display: grid; place-items: center; background: linear-gradient(145deg, #e7effa, #f5efe7); border-radius: 48% 48% 42% 58% / 44% 42% 58% 56%; isolation: isolate; }
.calm-visual::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(109, 143, 190, .18); border-radius: inherit; }
.visual-orbit { position: absolute; border: 1px solid rgba(109, 143, 190, .22); border-radius: 50%; }
.orbit-one { width: 295px; height: 295px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 40s linear infinite; }
.visual-core { width: 215px; height: 215px; display: flex; flex-direction: column; justify-content: center; padding: 28px; background: rgba(255, 255, 255, .86); border-radius: 50%; box-shadow: var(--shadow-md); text-align: center; }
.visual-core span { color: var(--teal); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.visual-core strong { margin-top: 8px; font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.15; }
.visual-note { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 15px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.7); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .8rem; font-weight: 700; }
.visual-note span { color: var(--teal); font-size: .65rem; }
.note-one { top: 17%; left: -5%; }
.note-two { top: 48%; right: -7%; }
.note-three { bottom: 13%; left: 5%; }
@keyframes rotate { to { transform: rotate(360deg); } }

.trust-strip { background: #27466f; color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border: 0; }
.trust-grid span { color: #bbcae0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.trust-grid strong { margin-top: 4px; font-size: .95rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-heading h2 { max-width: 660px; margin-bottom: 0; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.focus-card { position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 36px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 0 0 rgba(23,59,58,0); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.focus-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; bottom: -80px; background: var(--mint); border-radius: 50%; transition: transform .35s ease; }
.focus-card:hover { z-index: 1; transform: translateY(-8px); border-color: #b6cae5; box-shadow: var(--shadow-md); }
.focus-card:hover::after { transform: scale(1.55); }
.focus-number { color: var(--teal); font-family: var(--font-serif); font-size: 1rem; }
.focus-card p { margin-bottom: 7px; color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.focus-card h3 { margin: 0 0 12px; font-family: var(--font-sans); font-size: 1.55rem; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
.focus-card div > span { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }
.focus-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.focus-card .focus-format { display: inline-flex; width: fit-content; padding: 8px 12px; color: var(--teal-dark); background: var(--mint-light); border-radius: 9px; font-size: .84rem; font-weight: 700; }
.focus-card b { position: absolute; z-index: 1; top: 30px; right: 30px; font-size: 1.28rem; transition: transform .25s ease; }
.focus-card:hover b { transform: translate(3px, -3px); }

.clinical-statement { padding: 95px 0; color: var(--white); background: #4c6f9e; }
.statement-grid { display: grid; grid-template-columns: minmax(200px, .45fr) 1.25fr; gap: 65px; align-items: center; }
.statement-side { display: flex; flex-direction: column; gap: 16px; }
.statement-art { width: 100%; max-width: 235px; overflow: hidden; border-radius: 24px; background: transparent; border: 1px solid rgba(255, 255, 255, .2); box-shadow: 0 14px 32px rgba(22, 45, 75, .3); transition: transform .35s ease, border-color .35s ease; }
.statement-art:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(255, 255, 255, .4); }
.statement-art img { width: 100%; height: auto; display: block; border-radius: 23px; }
.clinical-statement .section-kicker { color: #d4e1f1; }
.statement-grid blockquote { max-width: 800px; margin: 0 0 22px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.22; }
.statement-grid div > p { max-width: 660px; margin-bottom: 0; color: #dfe8f5; font-size: 1.05rem; }
.slim-statement { padding: 78px 0; }
.slim-statement blockquote { font-size: clamp(1.85rem, 2.8vw, 2.7rem); }

.process-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 62px; background: var(--cream); border-radius: var(--radius-lg); }
.process-copy p:last-child { color: var(--ink-soft); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid #ddd8cf; }
.process-list li:first-child { padding-top: 0; }
.process-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.process-list li > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--teal); border: 1px solid #bfd0e6; border-radius: 50%; font-family: var(--font-serif); }
.process-list strong { font-size: 1.05rem; }
.process-list p { margin: 3px 0 0; color: var(--ink-soft); font-size: .92rem; }
.cta-band { padding: 72px 0; color: var(--white); background: #6b8ebe; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band .section-kicker { color: #dde8f7; }
.cta-band h2 { margin: 0; }

.page-hero { padding: 98px 0 70px; background: linear-gradient(180deg, var(--mint-light), var(--paper)); }
.compact-hero { padding-bottom: 92px; }
.page-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(3rem, 5.4vw, 5.2rem); }
.page-hero-grid > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 1.08rem; }
.catalog-intro { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 30px; color: var(--ink-soft); }
.catalog-intro p { margin: 0; }
.catalog-intro span { font-size: .84rem; font-weight: 700; white-space: nowrap; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.catalog-card { position: relative; min-height: 430px; display: flex; flex-direction: column; padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.catalog-card:hover { transform: translateY(-6px); border-color: #b3c8e5; box-shadow: var(--shadow-md); }
.catalog-card.is-featured { background: linear-gradient(145deg, #f2f7fd, var(--white)); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 54px; }
.service-index { font-family: var(--font-serif); font-size: 1.1rem; }
.service-category { padding: 6px 10px; color: var(--teal-dark); background: var(--mint-light); border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card h2 { margin-bottom: 16px; font-family: var(--font-serif); font-size: clamp(1.95rem, 3.4vw, 2.7rem); line-height: 1.05; }
.catalog-card > p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }
.service-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: auto; padding: 24px 0; }
.service-meta span { padding: 7px 12px; background: var(--cream); border-radius: 8px; font-size: .84rem; font-weight: 700; }
.service-meta .service-mode-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-dark); background: #eaf2fb; border: 1px solid #cbdced; }
.service-meta .service-mode-badge::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; background: currentColor; border-radius: 50%; box-shadow: 0 0 0 3px rgba(77,115,170,.1); }
.service-meta .service-mode-badge.is-choice { color: #526f66; background: #eaf3ef; border-color: #c8ddd3; }
.platform-icon { width: 30px; height: 30px; display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; padding: 4px !important; background: var(--white) !important; border: 1px solid var(--line); border-radius: 8px !important; vertical-align: middle; box-shadow: 0 4px 12px rgba(34,58,94,.08); }
.platform-icon img { width: 21px; height: 21px; display: block; }
.card-link { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: var(--teal-dark); font-weight: 700; font-size: 1.02rem; }
.card-link b { font-size: 1.4rem; transition: transform .25s ease; }
.catalog-card:hover .card-link b { transform: translateX(5px); }
.guidance { padding-top: 80px; }
.guidance-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 50px 58px; background: linear-gradient(145deg, var(--mint-light), #f8f4ee); border-radius: var(--radius-lg); }
.guidance-inner h2 { margin-bottom: 10px; }
.guidance-inner p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.notice { padding: 20px; background: var(--cream); border-radius: var(--radius-sm); }

.booking-hero { padding-bottom: 58px; }
.booking-hero-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.booking-hero h1 { margin-bottom: 14px; }
.booking-hero p:last-child { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.06rem; }
.booking-steps { display: flex; gap: 0; margin: 0 0 10px; padding: 0; list-style: none; }
.booking-steps li { min-width: 104px; position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px; color: #8796ab; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.booking-steps li:not(:last-child)::after { content: ""; position: absolute; width: 55px; height: 1px; top: 16px; left: calc(50% + 21px); background: #c8d6e8; }
.booking-steps span { width: 32px; height: 32px; display: grid; place-items: center; background: var(--paper); border: 1px solid #bfd0e4; border-radius: 50%; }
.booking-steps .is-active { color: var(--teal-dark); }
.booking-steps .is-active span { color: var(--white); background: var(--teal); border-color: var(--teal); }
.booking-steps .is-complete span { color: transparent; background: var(--mint); border-color: var(--teal); }
.booking-steps .is-complete span::after { content: "✓"; color: var(--teal-dark); }
.booking-workspace { padding: 72px 0 100px; }
.service-picker-panel, .scheduler-panel, .payment-panel { scroll-margin-top: 100px; }
.picker-heading, .scheduler-heading { display: flex; align-items: start; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.picker-heading h2, .scheduler-heading h2 { margin: 5px 0 0; font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem); }
.picker-heading > a, .change-service { padding: 7px 0; color: var(--teal); background: none; border: 0; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 700; cursor: pointer; }
.step-label { color: var(--teal); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-choice { min-height: 110px; display: grid; grid-template-columns: 1fr auto 24px; align-items: center; gap: 18px; padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-choice:hover { transform: translateY(-3px); border-color: #a9c3e3; box-shadow: var(--shadow-sm); }
.service-choice.is-selected { background: var(--mint-light); border-color: var(--teal); box-shadow: 0 0 0 2px rgba(109, 143, 190, .12); }
.service-choice small { display: block; margin-bottom: 3px; color: var(--teal); font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.service-choice strong { display: block; font-size: 1.05rem; line-height: 1.25; }
.choice-meta { display: inline-flex; align-items: center; justify-content: flex-end; gap: 8px; color: var(--ink-soft); font-size: .75rem; white-space: nowrap; }
.choice-meta .platform-icon { width: 27px; height: 27px; }
.service-choice b { font-size: 1.1rem; }
.scheduler-panel { margin-top: 76px; }
.scheduler-description { margin: 4px 0 0; color: var(--ink-soft); font-size: .9rem; }
.scheduler-description .platform-icon { width: 27px; height: 27px; margin-inline: 3px; }
.payment-preview { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; margin-bottom: 18px; padding: 16px 18px; background: linear-gradient(145deg, #f4f8fd, #fffaf3); border: 1px solid #d4e0ee; border-radius: 16px; color: var(--ink-soft); }
.payment-preview strong { color: var(--ink); font-size: .95rem; }
.payment-preview span { font-size: .88rem; }
.calendly-shell { position: relative; height: 760px; min-height: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.calendly-embed, .calendly-embed .calendly-inline-widget, .calendly-embed iframe { width: 100%; height: 100% !important; min-width: 320px; min-height: 0 !important; }
.calendly-loading { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; background: var(--white); color: var(--ink-soft); font-size: .9rem; }
.calendly-loading > span { width: 22px; height: 22px; border: 2px solid var(--mint); border-top-color: var(--teal); border-radius: 50%; animation: rotate .8s linear infinite; }
.external-calendar-link { margin: 14px 0 0; color: var(--ink-soft); font-size: .8rem; text-align: center; }
.external-calendar-link a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.payment-panel { display: grid; grid-template-columns: 68px 1fr; gap: 28px; margin-top: 34px; padding: 38px; background: var(--mint-light); border: 1px solid #cad9eb; border-radius: var(--radius-md); outline: none; }
.payment-panel:focus-visible { box-shadow: 0 0 0 3px rgba(109, 143, 190, .24); }
.payment-success-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 50%; font-size: 1.5rem; }
.payment-copy h2 { margin: 6px 0 12px; font-size: clamp(2rem, 3vw, 2.8rem); }
.payment-copy > p { color: var(--ink-soft); }
.payment-options { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 17px; }
.payment-route { min-width: min(280px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 19px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .2s ease, border-color .2s ease; }
.payment-route:hover { transform: translateY(-3px); border-color: var(--teal); }
.payment-route small { display: block; color: var(--teal); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.payment-route strong { display: block; }
.payment-help { margin: 0; font-size: .78rem; }

.fonasa-info { padding-top: 20px; }
.fonasa-highlight-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; padding: 30px 34px; background: linear-gradient(145deg, #edf5fd, #fff7ea); border: 1px solid #cedced; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.fonasa-highlight-card h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.fonasa-highlight-card > div:first-child > p:not(.section-kicker,.fonasa-highlight-amount) { margin-bottom: 12px; color: var(--ink-soft); }
.fonasa-highlight-card .text-link { font-size: .88rem; }
.fonasa-highlight-amount { margin: 0 0 10px; color: var(--teal-dark); font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; }
.fonasa-highlight-note { display: grid; align-content: center; gap: 8px; padding: 24px; background: rgba(255,255,255,.7); border: 1px solid rgba(202,220,237,.95); border-radius: 20px; }
.fonasa-highlight-note strong { font-family: var(--font-serif); font-size: 1.35rem; }
.fonasa-highlight-note span { color: var(--ink-soft); }
.fonasa-card { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; padding: 58px; color: var(--white); background: #27466f; border-radius: var(--radius-lg); }
.fonasa-card h2 { margin-bottom: 15px; }
.fonasa-card p:not(.section-kicker) { color: #cfdbed; }
.fonasa-card .section-kicker, .fonasa-card .text-link { color: #d9e6f7; }
.provider-data { margin: 0; padding: 8px 0; }
.provider-data > div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.provider-data > div:last-child { border-bottom: 0; }
.provider-data dt { color: #adc0da; font-size: .78rem; }
.provider-data dd { margin: 0; font-size: .87rem; font-weight: 700; text-align: right; }
.legal-note { padding: 16px 35px 0; color: var(--ink-soft); font-size: .74rem; }
.policies-compact { display: grid; grid-template-columns: .7fr 1fr; gap: 90px; }
.policy-accordion details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.policy-accordion details:first-child { padding-top: 0; }
.policy-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.policy-accordion summary::-webkit-details-marker { display: none; }
.policy-accordion summary::after { content: "+"; color: var(--teal); font-size: 1.3rem; font-weight: 400; }
.policy-accordion details[open] summary::after { content: "−"; }
.policy-accordion p { margin: 14px 30px 0 0; color: var(--ink-soft); font-size: .9rem; }

.site-footer { padding: 70px 0 24px; color: #dae4f2; background: #1f3657; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 60px; padding-bottom: 58px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { color: #d7e6fb; border-color: #89a6ce; }
.footer-main > div:first-child p { max-width: 310px; margin: 18px 0 0; color: #aebfd8; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: .88rem; }
.footer-links strong { margin-bottom: 7px; color: var(--white); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: #aebfd8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #9ab0cd; font-size: .76rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-links a:hover { color: var(--white); }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s !important; }
.reveal-delay-2 { transition-delay: .2s !important; }

:focus-visible { outline: 3px solid rgba(109, 143, 190, .35); outline-offset: 3px; }

@media (max-width: 980px) {
  .section { padding: 86px 0; }
  .home-hero { min-height: auto; padding: 72px 0 82px; }
  .home-hero-grid { grid-template-columns: 1fr .7fr; gap: 45px; }
  .calm-visual { min-height: 410px; }
  .orbit-two { width: 320px; height: 320px; }
  .orbit-one { width: 240px; height: 240px; }
  .visual-core { width: 180px; height: 180px; }
  .note-one { left: -7%; }
  .note-two { right: -8%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { min-height: 96px; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .focus-card:last-child { grid-column: 1 / -1; min-height: 230px; }
  .process-panel { gap: 45px; padding: 46px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .booking-hero-inner { align-items: start; flex-direction: column; }
  .booking-steps { align-self: center; }
  .fonasa-card { gap: 45px; padding: 46px; }
  .policies-compact { gap: 50px; }
}

@media (max-width: 760px) {
  body { background-attachment: scroll; font-size: 16.5px; }
  .container { width: min(100% - 32px, 620px); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  h2 { font-size: clamp(1.9rem, 8.5vw, 2.65rem); }
  .header-container { min-height: 68px; }
  .brand-mark { width: 36px; height: 36px; }
  .menu-toggle { display: block; }
  .nav-menu { position: fixed; inset: 68px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 16px 24px; visibility: hidden; opacity: 0; transform: translateY(-12px); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .nav-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-menu > a:not(.nav-cta) { padding: 15px 10px; border-bottom: 1px solid var(--line); }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 14px; text-align: center; }
  .home-hero { padding: 55px 0 62px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .assurance-list { align-items: flex-start; flex-direction: column; gap: 8px; }
  .calm-visual { min-height: 360px; margin-top: 4px; }
  .orbit-two { width: 285px; height: 285px; }
  .orbit-one { width: 220px; height: 220px; }
  .visual-core { width: 170px; height: 170px; }
  .note-one { top: 8%; left: 1%; }
  .note-two { top: 52%; right: -3%; }
  .note-three { bottom: 7%; }
  .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { min-height: auto; padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card, .focus-card:last-child { min-height: 240px; grid-column: auto; }
  .statement-grid { grid-template-columns: 1fr; gap: 22px; }
  .clinical-statement { padding: 67px 0; }
  .process-panel { grid-template-columns: 1fr; gap: 34px; padding: 32px 24px; }
  .cta-band-inner, .guidance-inner { align-items: stretch; flex-direction: column; }
  .cta-band .btn { width: 100%; }
  .page-hero { padding: 64px 0 55px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); }
  .catalog-intro { align-items: flex-start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 350px; padding: 27px; }
  .card-top { margin-bottom: 35px; }
  .guidance-inner { padding: 34px 26px; }
  .booking-hero-inner { gap: 34px; }
  .booking-steps { width: 100%; justify-content: space-between; }
  .booking-steps li { min-width: 82px; }
  .booking-steps li:not(:last-child)::after { width: calc(100vw / 3 - 55px); }
  .booking-workspace { padding: 52px 0 75px; }
  .picker-heading, .scheduler-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .service-picker { grid-template-columns: 1fr; }
  .service-choice { min-height: 90px; grid-template-columns: 1fr 20px; }
  .choice-meta { grid-column: 1; grid-row: 2; justify-content: flex-start; flex-wrap: wrap; white-space: normal; }
  .service-choice b { grid-column: 2; grid-row: 1 / 3; }
  .scheduler-panel { margin-top: 58px; }
  .calendly-shell { height: 720px; }
  .payment-panel { grid-template-columns: 1fr; padding: 28px 23px; }
  .payment-success-icon { width: 50px; height: 50px; }
  .payment-options { align-items: stretch; flex-direction: column; }
  .payment-options .btn { width: 100%; }
  .fonasa-card { grid-template-columns: 1fr; gap: 34px; padding: 35px 25px; }
  .legal-note { padding: 14px 6px 0; }
  .policies-compact { grid-template-columns: 1fr; gap: 35px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

/* Agenda nativa: Google Calendar + Flow */
.native-booking-hero { padding-bottom: 72px; }
.native-booking-section { padding: 72px 0 110px; background: linear-gradient(180deg, var(--mint-light), var(--paper) 55%); }
.native-booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 30px; }
.native-booking-card { min-width: 0; padding: clamp(26px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.native-booking-card fieldset { min-width: 0; margin: 0; padding: 0; border: 0; scroll-margin-top: 110px; }
.native-booking-card fieldset:not(.is-active) { display: none; }
.native-booking-card legend { width: 100%; margin: 0 0 10px; padding: 0; font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.05; }
.native-booking-card legend .step-label { display: block; margin-bottom: 12px; font-family: var(--font-sans); }
.booking-lead { max-width: 680px; margin-bottom: 28px; color: var(--ink-soft); }
.booking-global-feedback { min-height: 0; margin: 0; }
.booking-global-feedback:not(:empty) { margin: 0 0 22px; padding: 13px 16px; color: var(--teal-dark); background: var(--mint-light); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.booking-global-feedback.is-error:not(:empty) { color: var(--danger); background: #fff5f4; border-color: #f0cbc7; }
.booking-demo-notice { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 13px 16px; color: #6d4d14; background: #fff7e8; border: 1px solid #ecd8ac; border-radius: var(--radius-sm); font-size: .88rem; }
.booking-demo-notice strong { flex: 0 0 auto; }
.booking-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-services > button { min-width: 0; min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px; text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.booking-services > button:hover { transform: translateY(-3px); background: var(--white); border-color: var(--teal); box-shadow: var(--shadow-sm); }
.booking-services > button.is-selected { background: var(--mint-light); border-color: var(--teal); box-shadow: 0 0 0 2px rgba(109, 143, 190, .16); }
.booking-services small, .booking-services strong, .booking-services em { display: block; }
.booking-services small { color: var(--teal-dark); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-services strong { margin: 5px 0 7px; font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.12; }
.booking-services em { color: var(--ink-soft); font-size: .78rem; font-style: normal; }
.booking-services .booking-mode-label { width: fit-content; margin-top: 9px; padding: 4px 8px; color: var(--teal-dark); background: #eaf2fb; border-radius: 999px; font-size: .68rem; font-weight: 700; }
.booking-service-tail { flex: 0 0 auto; text-align: right; }
.booking-service-tail b { display: block; white-space: nowrap; font-size: .88rem; }
.booking-service-tail i { display: block; margin-top: 15px; color: var(--teal); font-size: 1.2rem; font-style: normal; transition: transform .2s ease; }
.booking-services button:hover .booking-service-tail i { transform: translateX(4px); }
.care-mode-picker { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; margin-top: 22px; }
.care-mode-picker > span { width: 100%; color: var(--ink-soft); font-size: .8rem; font-weight: 700; }
.care-mode-picker label { min-width: 180px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; padding: 14px 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; }
.care-mode-picker input { grid-row: 1 / 3; align-self: center; accent-color: var(--teal); }
.care-mode-picker strong, .care-mode-picker small { display: block; }
.care-mode-picker small { color: var(--ink-soft); }
.care-mode-picker > p { width: 100%; margin: 2px 0 0; color: var(--ink-soft); font-size: .8rem; }
.booking-window-note { padding: 14px 17px; background: #eef5fc; border-left: 3px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.booking-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.btn-ghost { color: var(--ink-soft); background: transparent; border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); background: var(--mint-light); }
.booking-date-field, .booking-fields label { display: grid; gap: 7px; color: var(--ink); font-weight: 700; }
.booking-date-field { max-width: 330px; }
.booking-date-field input, .booking-fields input { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: var(--paper); border: 1px solid #bdcbe0; border-radius: 10px; outline: none; font-family: var(--font-sans); }
.booking-date-field input[type="date"] {
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: .02em;
}
.booking-date-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  opacity: .75;
  transition: opacity .2s ease, transform .2s ease;
}
.booking-date-field input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
  transform: scale(1.1);
}
.booking-date-field input:focus, .booking-fields input:focus { background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 3px rgba(109, 143, 190, .16); }
.booking-help { min-height: 26px; margin: 22px 0 12px; color: var(--ink-soft); }
.booking-slots { min-height: 58px; display: grid; grid-template-columns: repeat(5, minmax(82px, 1fr)); gap: 9px; }
.booking-slots button { min-height: 48px; padding: 10px; color: var(--teal-dark); background: var(--white); border: 1px solid #b8cce5; border-radius: 10px; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.booking-slots button:hover, .booking-slots button.is-selected { color: var(--white); background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.booking-slots[aria-busy="true"] { opacity: .55; }
.booking-final-summary { grid-template-columns: 1fr auto; align-items: center; gap: 4px 18px; margin-top: 0; }
.booking-final-summary strong, .booking-final-summary span { grid-column: 1; }
.booking-final-summary b { grid-column: 2; grid-row: 1 / 4; font-size: 1.15rem; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.booking-fields label > span { font-size: .84rem; }
.booking-fields .field-wide { grid-column: 1 / -1; }
.payment-methods { display: grid; gap: 10px; margin-top: 23px; }
.payment-methods label { display: flex; align-items: center; gap: 13px; padding: 16px; background: var(--mint-light); border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; }
.payment-methods input { accent-color: var(--teal); }
.payment-methods strong, .payment-methods small { display: block; }
.payment-methods small { color: var(--ink-soft); }
.booking-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 22px; color: var(--ink-soft); font-size: .86rem; }
.booking-consent input { margin-top: 5px; accent-color: var(--teal); }
.booking-consent a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.hold-explainer { margin: 20px 0 0; padding: 15px 17px; color: var(--ink-soft); background: #fff8ea; border: 1px solid #eedcb5; border-radius: var(--radius-sm); font-size: .86rem; }
.booking-assurance { position: sticky; top: 105px; display: grid; gap: 0; padding: 8px 26px; background: rgba(255, 255, 255, .78); border: 1px solid var(--line); border-radius: var(--radius-md); backdrop-filter: blur(12px); }
.booking-assurance > div { position: relative; padding: 24px 0 24px 44px; border-bottom: 1px solid var(--line); }
.booking-assurance h2 { margin: 0 0 5px; font-family: var(--font-sans); font-size: 1rem; letter-spacing: 0; }
.booking-assurance p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.assurance-icon { position: absolute; top: 23px; left: 0; width: 30px; height: 30px; display: grid; place-items: center; color: var(--teal-dark); background: var(--mint); border-radius: 50%; font-weight: 700; }
.booking-assurance .assurance-help { margin: 0; padding: 21px 0; font-size: .8rem; }
.assurance-help a { color: var(--teal-dark); font-weight: 700; }

@media (max-width: 960px) {
  .native-booking-layout { grid-template-columns: 1fr; }
  .booking-assurance { position: static; grid-template-columns: repeat(3, 1fr); }
  .booking-assurance > div { padding: 58px 14px 20px; border-right: 1px solid var(--line); border-bottom: 0; }
  .booking-assurance > div:last-of-type { border-right: 0; }
  .assurance-icon { top: 18px; left: 14px; }
  .booking-assurance .assurance-help { grid-column: 1 / -1; padding: 18px 14px; border-top: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .native-booking-hero { padding: 48px 0 46px; }
  .native-booking-section { padding: 36px 0 75px; }
  .native-booking-card { padding: 25px 16px; border-radius: var(--radius-md); }
  .booking-hero h1 { overflow-wrap: normal; }
  .booking-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-self: stretch; }
  .booking-steps li { min-width: 0; }
  .booking-steps li:not(:last-child)::after { width: calc(100% - 42px); left: calc(50% + 21px); }
  .booking-services { grid-template-columns: 1fr; }
  .booking-services > button { min-height: 112px; padding: 18px; }
  .booking-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-fields .field-wide { grid-column: auto; }
  .booking-actions { align-items: stretch; flex-direction: column-reverse; }
  .booking-actions .btn { width: 100%; }
  .booking-actions > span { display: none; }
  .booking-assurance { grid-template-columns: 1fr; }
  .booking-assurance > div { padding: 20px 0 20px 43px; border-right: 0; border-bottom: 1px solid var(--line); }
  .assurance-icon { top: 20px; left: 0; }
  .booking-assurance .assurance-help { padding-inline: 0; }
  .booking-final-summary { grid-template-columns: 1fr; }
  .booking-final-summary b { grid-column: 1; grid-row: auto; margin-top: 5px; }
}

@media (max-width: 420px) {
  .booking-slots { grid-template-columns: repeat(2, 1fr); }
  .booking-demo-notice { align-items: flex-start; flex-direction: column; gap: 2px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .visual-note { font-size: .7rem; }
  .orbit-two { width: 255px; height: 255px; }
  .booking-steps li { min-width: 72px; font-size: .6rem; }
  .calendly-embed { min-width: 300px; }
}

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 15% 10%, #dce7f5, transparent 38%), var(--paper); }
.status-card { width: min(620px, 100%); padding: clamp(30px, 6vw, 60px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.status-card .brand { margin-bottom: 45px; }
.status-card h1 { margin: 10px 0 18px; font-size: clamp(2.7rem, 8vw, 4.7rem); }
.status-card > p:not(.section-kicker) { color: var(--ink-soft); }
.booking-summary { display: grid; gap: 5px; margin: 26px 0; padding: 20px; background: var(--mint-light); border-radius: var(--radius-sm); }
.booking-summary strong, .booking-summary span { display: block; }
.booking-summary span { color: var(--ink-soft); font-size: .9rem; }
.status-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

@media (max-width: 520px) {
  .status-page { padding: 14px; }
  .status-card { padding: 28px 22px; }
  .status-actions { align-items: stretch; flex-direction: column; }
  .status-actions .btn { width: 100%; }
}

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

.brand-logo { width: 54px; height: 54px; flex: 0 0 auto; object-fit: contain; cursor: grab; transform-style: preserve-3d; transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), filter .3s ease; }
.brand:hover .brand-logo { transform: rotateY(180deg) scale(1.08); filter: drop-shadow(0 6px 14px rgba(34, 58, 94, .18)); }
.brand-logo:active, .brand-logo.is-dragging { cursor: grabbing; transition: none !important; }
.footer-brand .brand-logo { filter: drop-shadow(0 5px 13px rgba(0,0,0,.18)); cursor: default; }

.hero-portrait { position: relative; min-height: 585px; display: flex; flex-direction: column; align-items: center; justify-content: center; isolation: isolate; }
.hero-portrait::before { content: ""; position: absolute; z-index: -2; inset: 1% -2% 1% 2%; background: linear-gradient(155deg, #dce8f7 10%, #f2e9de 88%); border-radius: 47% 53% 42% 58% / 38% 43% 57% 62%; }
.hero-portrait::after { content: ""; position: absolute; z-index: -1; width: 74%; aspect-ratio: 1; top: 4%; right: -5%; border: 1px dashed rgba(77,115,170,.28); border-radius: 50%; animation: rotate 36s linear infinite; }
.portrait-shape { width: 86%; height: 440px; overflow: hidden; border-radius: 45% 45% 24px 24px / 34% 34% 24px 24px; box-shadow: 0 20px 50px rgba(34,58,94,.14); }
.portrait-shape img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-symbol { position: absolute; z-index: 3; width: 95px; height: 95px; top: 5px; left: -10px; object-fit: contain; animation: gentle-spin 28s linear infinite; filter: drop-shadow(0 12px 20px rgba(34,58,94,.15)); }
.portrait-note { position: relative; z-index: 3; width: min(78%, 430px); margin-top: -18px; padding: 14px 18px; color: var(--white); background: rgba(34,58,94,.97); border-radius: 14px; box-shadow: var(--shadow-md); text-align: center; backdrop-filter: blur(8px); }
.portrait-note span, .portrait-note strong { display: block; }
.portrait-note span { color: #cbd9eb; font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.portrait-note strong { margin-top: 3px; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.portrait-tags { position: relative; z-index: 3; width: 86%; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 14px; }
.portrait-tag { padding: 7px 12px; background: rgba(255,255,255,.96); border: 1px solid rgba(77,115,170,.14); border-radius: 999px; box-shadow: var(--shadow-sm); color: var(--teal-dark); font-size: .69rem; font-weight: 700; }
@keyframes gentle-spin { to { transform: rotate(360deg); } }

.intro-section { background: #f5f8fc; }
.intro-grid { display: grid; grid-template-columns: .42fr 1.15fr; align-items: center; gap: 90px; }
.intro-grid h2 { max-width: 850px; }
.intro-mark { position: relative; min-height: 360px; display: grid; place-items: center; }
.intro-mark::before, .intro-mark::after { content: ""; position: absolute; border-radius: 50%; }
.intro-mark::before { width: 320px; height: 320px; background: linear-gradient(145deg, var(--mint), #f5ede3); }
.intro-mark::after { width: 255px; height: 255px; border: 1px dashed rgba(77,115,170,.32); animation: rotate 32s linear infinite reverse; }
.intro-mark img { position: relative; z-index: 1; width: 235px; height: 235px; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(34,58,94,.12)); }
.large-copy { max-width: 750px; color: var(--ink-soft); font-family: var(--font-sans); font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 500; line-height: 1.5; }

.location-section { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 72px; }
.location-copy p:not(.section-kicker) { max-width: 480px; color: var(--ink-soft); font-size: 1.04rem; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 30px; }
.map-shell { min-height: 485px; padding: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-shell iframe { width: 100%; height: 460px; display: block; border: 0; border-radius: 25px; filter: saturate(.75) contrast(.98); }

.reviews-section { background: #f5f8fc; }
.reviews-score { margin-top: 16px; color: var(--ink-soft); }
.reviews-score .stars, .review-card .stars { color: #d69e45; letter-spacing: .08em; }
.reviews-score strong { margin-left: 8px; font-size: .9rem; }
.review-actions { display: flex; align-items: center; gap: 18px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card, .review-skeleton, .reviews-empty { min-height: 230px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.review-card { display: flex; flex-direction: column; }
.review-card blockquote { margin: 22px 0 28px; color: var(--ink); font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.4; }
.review-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.review-author img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.review-author strong, .review-author small { display: block; }
.review-author small { color: var(--ink-soft); }
.review-skeleton { position: relative; overflow: hidden; background: linear-gradient(100deg, #fff 30%, #edf3fa 50%, #fff 70%); background-size: 300% 100%; animation: shimmer 1.8s infinite; }
@keyframes shimmer { to { background-position: -150% 0; } }
.reviews-empty { grid-column: 1 / -1; min-height: auto; color: var(--ink-soft); }
.reviews-disclaimer { margin: 20px 0 0; color: var(--ink-soft); font-size: .76rem; }
.reviews-disclaimer strong { color: var(--ink); }

.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 100px; }
.faq-grid > div:first-child > p:not(.section-kicker) { color: var(--ink-soft); }
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-list details:first-child { padding-top: 0; }
.faq-list summary { position: relative; padding-right: 42px; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 50%; width: 30px; height: 30px; display: grid; place-items: center; color: var(--teal-dark); background: var(--mint-light); border-radius: 50%; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 690px; margin: 14px 45px 0 0; color: var(--ink-soft); }

.whatsapp-float { position: fixed; z-index: 45; right: 20px; bottom: 22px; min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 11px 17px 11px 13px; color: #fff; background: #25d366; border: 2px solid rgba(255,255,255,.88); border-radius: 999px; box-shadow: 0 13px 35px rgba(10,105,55,.28); font-size: .88rem; font-weight: 700; transition: transform .25s ease, background .25s ease; }
body[data-page="agenda"] .whatsapp-float { display: none; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); background: #1fb95a; }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-button { color: #fff; background: #25a95c; box-shadow: 0 10px 24px rgba(18,126,67,.2); }
.whatsapp-button:hover { color: #fff; background: #168848; }

.page-hero-symbol { position: absolute; width: 260px; height: 260px; right: 5%; top: 2%; object-fit: contain; opacity: .06; animation: gentle-spin 42s linear infinite; }
.service-hero { position: relative; overflow: hidden; }
.service-hero-grid { position: relative; z-index: 1; min-height: 370px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .58fr); grid-template-rows: 1fr auto; align-items: center; column-gap: clamp(38px, 6vw, 92px); }
.service-hero-copy { grid-row: 1 / 3; }
.service-hero-copy h1 { max-width: 820px; }
.service-hero-visual { position: relative; align-self: stretch; display: grid; place-items: center; isolation: isolate; }
.service-hero-visual::before { content: ""; position: absolute; z-index: -1; width: 82%; aspect-ratio: 1; background: radial-gradient(circle, rgba(218,230,244,.88), rgba(243,237,231,.45) 62%, transparent 72%); border-radius: 50%; filter: blur(2px); }
.service-hero-art { position:relative; width:min(100%,390px); height:330px; overflow:hidden; border-radius:48% 52% 45% 55% / 42% 38% 62% 58%; box-shadow:0 22px 48px rgba(34,58,94,.13); }
.service-hero-art::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(235,242,250,.08), rgba(239,244,250,.32)); pointer-events:none; }
.service-hero-art img { width:100%; height:100%; object-fit:cover; object-position:48% 60%; filter:saturate(.72) contrast(.94) sepia(.06) hue-rotate(168deg); }
.service-hero-intro { align-self: end; margin: 0 0 8px; color: var(--ink-soft); font-size: 1.02rem; }
.visual-orbit { position: absolute; z-index: -1; border: 1px dashed rgba(77,115,170,.24); border-radius: 50%; animation: gentle-spin 30s linear infinite; }
.orbit-one { width: 82%; aspect-ratio: 1; }
.orbit-two { width: 58%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 22s; }
@keyframes psychology-float { 0%, 100% { transform: translate3d(0, -3px, 0) rotate(-.6deg); } 50% { transform: translate3d(0, 10px, 0) rotate(.8deg); } }
.catalog-card { min-height: 465px; overflow: hidden; }
.catalog-card::before { content: ""; position: absolute; width: 120px; height: 120px; right: -90px; bottom: -90px; background: var(--mint); border-radius: 50%; transition: transform .35s ease; }
.catalog-card:hover::before { transform: scale(2.1); }
.catalog-card > * { position: relative; z-index: 1; }

.about-hero { padding: 80px 0 105px; overflow: hidden; background: linear-gradient(180deg, var(--mint-light), var(--paper)); }
.about-hero-grid { display: grid; grid-template-columns: minmax(340px,.78fr) 1.15fr; align-items: center; gap: 95px; }
.about-photo { position: relative; padding: 18px; background: var(--white); border: 2px solid #dce7f5; border-radius: 220px 220px 26px 26px; box-shadow: 0 0 0 1px rgba(34, 58, 94, .08), var(--shadow-md); }
.about-photo::before { content: ""; position: absolute; z-index: -1; width: 80%; height: 70%; left: -20%; bottom: -12%; background: #dce7f5; border-radius: 50%; }
.about-photo img { width: 100%; height: 580px; object-fit: cover; object-position: center 20%; border-radius: 205px 205px 18px 18px; border: 1px solid rgba(34, 58, 94, .06); filter: contrast(1.04) brightness(1.02) saturate(0.98); }
.photo-caption { position: absolute; right: -30px; bottom: 38px; padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 700; }
.about-intro h1 { font-size: clamp(3.5rem, 6.5vw, 6.3rem); }
.about-lead { max-width: 680px; color: var(--teal-dark); font-family: var(--font-serif); font-size: clamp(1.35rem,2.2vw,1.75rem); line-height: 1.35; }
.about-intro > p:not(.eyebrow,.about-lead) { max-width: 680px; color: var(--ink-soft); font-size: 1.05rem; }
.approach-section { background: var(--white); }
.approach-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.approach-copy { padding-top: 28px; color: var(--ink-soft); font-size: 1.04rem; }
.approach-copy p { margin-bottom: 24px; }
.context-banner { padding: 100px 0; color: var(--white); background: #385a85; }
.context-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 85px; }
.context-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 25px 70px rgba(14,32,55,.28); }
.context-image img { width: 100%; height: 430px; object-fit: cover; }
.context-copy { position: relative; }
.context-copy .section-kicker { color: #d6e4f5; }
.context-copy p:last-child { color: #dce7f4; }
.context-symbol { width: 90px; height: 90px; margin-bottom: 25px; object-fit: contain; animation: gentle-spin 34s linear infinite; filter: drop-shadow(0 8px 18px rgba(0,0,0,.2)); }
.training-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.training-grid > div > p:last-child { color: var(--ink-soft); }
.training-list { margin: 0; padding: 0; list-style: none; }
.training-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.training-list li:first-child { padding-top: 0; }
.training-list li > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--teal-dark); background: var(--mint-light); border-radius: 50%; font-family: var(--font-serif); }
.training-list strong { font-family: var(--font-serif); font-size: 1.24rem; }
.training-list p { margin: 4px 0 0; color: var(--ink-soft); }
.experience-section { background: linear-gradient(180deg, var(--paper), #f6f8fb); }
.professional-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.professional-column h2 { margin-bottom: 34px; font-size: clamp(2.15rem, 3.8vw, 3.5rem); }
.experience-list li > span { color: #6f7c91; background: var(--cream); }

@media (max-width: 980px) {
  .nav-menu { gap: 21px; }
  .hero-portrait { min-height: 540px; }
  .portrait-shape { width: 90%; height: 430px; }
  .portrait-tags { display: none; }
  .intro-grid { gap: 48px; }
  .location-grid { gap: 42px; }
  .faq-grid, .approach-grid, .training-grid { gap: 55px; }
  .about-hero-grid { gap: 58px; }
  .about-photo img { height: 510px; }
  .context-grid { gap: 50px; }
}

@media (max-width: 760px) {
  .brand-logo { width: 40px; height: 40px; }
  .home-hero { padding-top: 48px; }
  .hero-portrait { min-height: 500px; margin-top: 10px; }
  .portrait-shape { width: 88%; height: 400px; }
  .hero-symbol { width: 82px; height: 82px; left: 0; }
  .portrait-note { width: min(78%, 330px); margin-top: -16px; }
  .intro-grid, .location-grid, .faq-grid, .about-hero-grid, .approach-grid, .context-grid, .training-grid, .professional-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-mark { min-height: 285px; order: 2; }
  .intro-mark::before { width: 265px; height: 265px; }
  .intro-mark::after { width: 220px; height: 220px; }
  .intro-mark img { width: 205px; height: 205px; }
  .location-actions { align-items: stretch; flex-direction: column; }
  .location-actions .btn { width: 100%; }
  .map-shell { min-height: 365px; padding: 8px; }
  .map-shell iframe { height: 345px; border-radius: 27px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-skeleton:nth-child(n+2) { display: none; }
  .review-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .review-actions .btn { width: 100%; }
  .faq-list summary { font-size: 1.14rem; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; min-height: 0; justify-content: center; padding: 0; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .catalog-card { min-height: 430px; }
  .about-hero { padding: 58px 0 75px; }
  .about-photo { width: min(390px, 92%); margin-inline: auto; padding: 12px; }
  .about-photo img { height: 480px; }
  .photo-caption { right: 50%; bottom: 25px; width: max-content; max-width: 90%; transform: translateX(50%); }
  .about-intro h1 { font-size: clamp(3.2rem,16vw,5rem); }
  .context-image img { height: 300px; }
  .context-symbol { width: 76px; height: 76px; }
}

@media (max-width: 380px) {
  .hero-portrait { min-height: 455px; }
  .portrait-shape { height: 365px; }
  .about-photo img { height: 420px; }
}

/* Ajustes de navegación, acceso directo y flujo FONASA */
.header-container { min-height: 84px; }
.brand { gap: 12px; font-size: 1.16rem; }
.brand-logo { width: 52px; height: 52px; }
.nav-menu { gap: 24px; }
.section-support { max-width: 620px; margin: 14px 0 0; color: var(--ink-soft); }

.service-direct-grid { grid-template-columns: repeat(4, 1fr); }
.service-direct-grid .focus-card { min-height: 315px; }
.service-direct-grid .focus-card h3 { font-size: 1.55rem; }
.focus-action { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; padding-top: 17px; color: var(--teal-dark); border-top: 1px solid var(--line); font-size: .86rem; font-weight: 700; }
.focus-action em { font-size: 1.12rem; font-style: normal; transition: transform .25s ease; }
.focus-card:hover .focus-action em { transform: translateX(5px); }
.fonasa-direct-card { background: linear-gradient(145deg, #f1f7fd, #fff9ed); border-color: #c9d9ec; }
.fonasa-direct-card::after { background: rgba(246,199,105,.28); }

.context-image { position: relative; }
.context-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(62,111,174,.2); mix-blend-mode: color; }
.context-image img { filter: saturate(.82) contrast(.97); }

.fonasa-card { color: var(--ink); background: linear-gradient(145deg, #eaf3fd, #fffaf0); border: 1px solid #cadced; box-shadow: var(--shadow-sm); }
.fonasa-card p:not(.section-kicker), .fonasa-card .section-kicker, .fonasa-card .text-link { color: var(--ink-soft); }
.fonasa-card .section-kicker, .fonasa-card .text-link { color: var(--teal-dark); }
.fonasa-card .provider-data > div { border-color: #c9d8e9; }
.fonasa-card .provider-data dt { color: var(--ink-soft); }
.fonasa-card-compact { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.fonasa-card-compact > div { max-width: 710px; }
.fonasa-card-compact .btn { flex: 0 0 auto; }

.fonasa-hero { padding-bottom: 78px; }
.fonasa-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.fonasa-hero h1 { margin-bottom: 20px; }
.fonasa-hero-grid > div > p:not(.eyebrow) { max-width: 690px; color: var(--ink-soft); font-size: 1.08rem; }
.fonasa-service-summary { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.fonasa-service-summary strong { padding: 8px 13px; color: var(--teal-dark); background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-size: .9rem; }
.fonasa-progress { display: flex; justify-content: flex-end; margin: 0; padding: 0; list-style: none; }
.fonasa-progress li { min-width: 94px; position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px; color: #8998ac; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.fonasa-progress li:not(:last-child)::after { content: ""; position: absolute; width: 48px; height: 1px; top: 17px; left: calc(50% + 22px); background: #c6d5e7; }
.fonasa-progress span { width: 35px; height: 35px; display: grid; place-items: center; background: var(--paper); border: 1px solid #bfcfe3; border-radius: 50%; }
.fonasa-progress .is-current { color: var(--teal-dark); }
.fonasa-progress .is-current span { color: #fff; background: var(--teal); border-color: var(--teal); }
.fonasa-progress .is-complete span { color: transparent; background: #dcebdc; border-color: #7ba782; }
.fonasa-progress .is-complete span::after { content: "✓"; color: #436f4b; }
.fonasa-flow { background: #f6f8fb; }
.fonasa-flow .container { display: grid; gap: 28px; }
.fonasa-step-card { scroll-margin-top: 105px; display: grid; grid-template-columns: .62fr 1.38fr; gap: 58px; padding: clamp(30px,5vw,58px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.fonasa-step-copy p { color: var(--ink-soft); }
.fonasa-step-copy .btn { margin-top: 13px; }
.step-confirmed { margin-top: 25px; padding: 14px 16px; color: #315f3b; background: #e7f3e9; border-radius: var(--radius-sm); }
.step-confirmed strong, .step-confirmed span { display: block; }
.step-confirmed span { margin-top: 3px; font-size: .84rem; }
.fonasa-calendar-shell { position: relative; min-width: 0; }
.fonasa-calendly { height: 720px; min-width: 320px; min-height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); }
.fonasa-calendly .calendly-inline-widget, .fonasa-calendly iframe { width: 100%; height: 100% !important; min-height: 0 !important; }
.fonasa-calendar-shell > p { margin: 12px 0 0; color: var(--ink-soft); font-size: .79rem; text-align: center; }
.fonasa-calendar-shell > p a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.purchase-step { grid-template-columns: 1fr .85fr; align-items: center; background: linear-gradient(145deg, #edf5fd, #fffaf0); }
.provider-data-light { padding: 8px 25px; background: rgba(255,255,255,.75); border: 1px solid rgba(202,220,237,.9); border-radius: var(--radius-md); }
.provider-data-light > div { border-color: #d4e0ed; }
.provider-data-light dt { color: var(--ink-soft); }
.send-step { grid-template-columns: 1.12fr .88fr; align-items: center; border-color: #bcd3e9; }
.document-check { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.document-check li { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); }
.document-check li::before { content: "✓"; width: 23px; height: 23px; display: grid; place-items: center; color: #fff; background: #6f9875; border-radius: 50%; font-size: .72rem; }
.send-action-panel { padding: 30px; background: var(--mint-light); border-radius: var(--radius-md); }
.send-action-panel > strong { font-family: var(--font-serif); font-size: 1.45rem; }
.send-action-panel p { color: var(--ink-soft); }
.send-action-panel .btn { width: 100%; }
.send-action-panel small { display: block; margin-top: 13px; color: var(--ink-soft); }
.isapre-section { padding-top: 0; background: #f6f8fb; }
.isapre-card { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 48px 55px; background: var(--cream); border-radius: var(--radius-lg); }
.isapre-card > div { max-width: 720px; }
.isapre-card h2 { font-size: clamp(2rem,3.4vw,3.2rem); }
.isapre-card p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.isapre-card .btn { flex: 0 0 auto; }

.document-page { min-height: 100vh; display: grid; place-items: center; padding: 35px; background: radial-gradient(circle at 10% 5%, rgba(142,207,238,.35), transparent 35%), radial-gradient(circle at 90% 90%, rgba(255,202,175,.32), transparent 34%), var(--paper); }
.document-card { width: min(820px,100%); padding: clamp(30px,6vw,66px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.document-card > .brand { margin-bottom: 45px; }
.document-card h1 { max-width: 660px; margin: 9px 0 18px; font-size: clamp(3rem,8vw,5.5rem); }
.document-lead { max-width: 690px; color: var(--ink-soft); font-size: 1.08rem; }
.document-reminder { display: grid; grid-template-columns: 36px 1fr; gap: 15px; margin: 28px 0; padding: 20px; background: #fff7e8; border: 1px solid #f0dfbd; border-radius: var(--radius-sm); }
.document-reminder > span { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: #7c9a70; border-radius: 50%; }
.document-reminder p { margin: 4px 0 0; color: var(--ink-soft); font-size: .87rem; }
.document-send-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.send-option { min-width: 0; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.send-option:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow-sm); }
.send-option > span:nth-child(2) { min-width: 0; }
.send-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; font-size: .78rem; font-weight: 700; }
.whatsapp-send .send-icon { color: #fff; background: #25a95c; }
.email-send .send-icon { color: #fff; background: var(--teal-dark); }
.send-option small, .send-option strong, .send-option em { display: block; }
.send-option small { color: var(--teal-dark); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.send-option strong { margin: 2px 0; font-family: var(--font-serif); font-size: 1.18rem; }
.send-option em { overflow: hidden; color: var(--ink-soft); font-size: .75rem; font-style: normal; text-overflow: ellipsis; }
.privacy-note { margin: 22px 0 0; color: var(--ink-soft); font-size: .8rem; text-align: center; }
.document-back { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.privacy-note a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

.legal-intro { max-width: 920px; margin-left: max(24px, calc((100% - 1160px) / 2)); }
.legal-intro > p:not(.eyebrow) { max-width: 720px; color: var(--ink-soft); font-size: 1.08rem; }
.legal-intro .legal-updated { margin: 22px 0 0; font-size: .86rem; }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 760px); justify-content: space-between; gap: clamp(55px, 8vw, 120px); }
.legal-nav { position: sticky; top: 120px; height: fit-content; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; background: var(--mint-light); border: 1px solid var(--line); border-radius: var(--radius-md); }
.legal-nav strong { margin-bottom: 4px; font-family: var(--font-serif); font-size: 1.18rem; }
.legal-nav a { color: var(--teal-dark); font-size: .9rem; font-weight: 700; }
.legal-content { min-width: 0; }
.legal-content > section { scroll-margin-top: 110px; padding-bottom: 76px; }
.legal-content > section + section { padding-top: 76px; border-top: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); }
.legal-content h3 { margin: 34px 0 10px; font-family: var(--font-serif); font-size: 1.45rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { display: grid; gap: 9px; padding-left: 22px; }
.legal-callout { margin: 32px 0; padding: 24px; background: #fff7e8; border: 1px solid #eedbb6; border-radius: var(--radius-md); }
.legal-callout strong { font-family: var(--font-serif); font-size: 1.25rem; }
.legal-callout p { margin: 7px 0 0; }

@media (max-width: 1080px) {
  .nav-menu { gap: 17px; }
  .nav-menu > a:not(.nav-cta) { font-size: .88rem; }
  .service-direct-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .header-container { min-height: 72px; }
  .brand { font-size: 1.08rem; }
  .brand-logo { width: 46px; height: 46px; }
  .nav-menu { inset: 72px 0 auto; }
  .service-direct-grid { grid-template-columns: 1fr; }
  .service-direct-grid .focus-card { min-height: 270px; }
  .payment-preview { grid-template-columns: 1fr; gap: 6px; padding: 14px; }
  .fonasa-card-compact, .isapre-card { align-items: stretch; flex-direction: column; gap: 30px; }
  .fonasa-card-compact .btn, .isapre-card .btn { width: 100%; }
  .fonasa-highlight-card { grid-template-columns: 1fr; padding: 22px 18px; }
  .fonasa-hero-grid, .fonasa-step-card, .purchase-step, .send-step { grid-template-columns: 1fr; }
  .fonasa-hero-grid { gap: 35px; }
  .fonasa-progress { justify-content: center; }
  .fonasa-step-card { gap: 32px; padding: 30px 20px; }
  .fonasa-calendar-shell { margin-inline: -12px; }
  .fonasa-calendly { height: 720px; min-width: 300px; }
  .provider-data-light, .send-action-panel { padding: 24px 18px; }
  .isapre-card { padding: 34px 25px; }
  .document-page { padding: 14px; }
  .document-card { padding: 29px 20px; }
  .document-send-options { grid-template-columns: 1fr; }
  .document-back { align-items: flex-start; flex-direction: column; }
  .legal-intro { width: min(100% - 32px, 620px); margin-inline: auto; }
  .legal-grid { grid-template-columns: 1fr; gap: 42px; }
  .legal-nav { position: static; }
  .legal-content > section { padding-bottom: 55px; }
  .legal-content > section + section { padding-top: 55px; }
}

@media (max-width: 980px) {
  .service-hero-grid { min-height: 0; grid-template-columns: minmax(0, 1fr) 260px; grid-template-rows: auto auto; column-gap: 28px; }
  .service-hero-copy { grid-row: 1; }
  .service-hero-visual { grid-column: 2; grid-row: 1 / 3; min-height: 300px; }
  .service-hero-intro { grid-column: 1; grid-row: 2; max-width: 560px; margin-top: 24px; }
}

@media (max-width: 760px) {
  .service-hero { padding-bottom: 58px; }
  .service-hero-grid { display: flex; flex-direction: column; align-items: stretch; }
  .service-hero-visual { width: min(86vw, 350px); min-height: 260px; align-self: center; order: 2; margin: 18px 0 4px; }
  .service-hero-art { height:290px; }
  .service-hero-intro { order: 3; margin-top: 8px; }
}
