@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
    --bg: #fbfaf8;
    --bg-alt: #f4f3ef;
    --surface: #fff;
    --ink: #15171c;
    --ink-soft: #565a63;
    --muted: #858992;
    --line: #e9e7e1;
    --line-soft: #f0eee9;
    --brand: #1e50e6;
    --brand-strong: #0b3fd6;
    --brand-soft: rgba(30, 80, 230, .08);
    --green: #168b69;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 2px rgba(21, 23, 28, .04), 0 1px 3px rgba(21, 23, 28, .05);
    --shadow-md: 0 12px 35px -18px rgba(21, 23, 28, .25);
    --shadow-lg: 0 30px 70px -32px rgba(21, 23, 28, .28);
    --maxw: 1180px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; color: var(--ink-soft); background: var(--bg); font: 400 16px/1.65 "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.13; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 5.2vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.25rem); }
h3 { font-size: 1.18rem; }
.container { width: min(calc(100% - 40px), var(--maxw)); margin-inline: auto; }
.narrow { max-width: 780px; }
.section { padding: 112px 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid rgba(30, 80, 230, .36); outline-offset: 3px; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid transparent; background: rgba(251, 250, 248, .9); backdrop-filter: blur(14px); transition: border-color .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(21, 23, 28, .05); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.logo > span { display: grid; line-height: 1; }
.logo strong { font-size: 18px; letter-spacing: -.035em; }
.logo small { margin-top: 5px; color: var(--brand); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a { padding: 10px 17px; border-radius: 10px; color: #35373d; font-size: 14px; font-weight: 500; transition: background .25s, color .25s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: #f0efec; color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; place-content: center; gap: 4px; padding: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 11px; padding: 12px 22px; font-size: 14px; font-weight: 700; line-height: 1.2; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s, color .25s, background .25s, border-color .25s; }
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 24px -12px var(--brand); }
.btn-primary:hover { background: var(--brand-strong); box-shadow: 0 14px 28px -12px var(--brand); }
.btn-secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #cfcdd0; box-shadow: var(--shadow-md); }
.btn-small { min-height: 44px; padding: 10px 18px; }
.btn-large { min-height: 60px; padding: 16px 27px; font-size: 15px; }

.hero { padding: 38px 0 104px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: 74px; align-items: center; }
.eyebrow { color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { max-width: 660px; margin-bottom: 18px; font-size: clamp(2.75rem, 4.3vw, 3.75rem); font-weight: 800; line-height: 1.1; }
.hero-stat { color: var(--brand); }
.hero-kicker { margin-bottom: 8px; color: var(--ink); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 800; letter-spacing: -.03em; }
.hero-description { max-width: 590px; margin-bottom: 18px; font-size: 16px; line-height: 1.6; }
.service-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.service-pills span { border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.72); padding: 6px 10px; color: #4a4d55; font-size: 11px; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-large { min-height: 54px; padding: 14px 24px; font-size: 14px; }
.source-link { display: inline-flex; margin-top: 16px; color: var(--muted); font-size: 10px; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.source-link:hover { color: var(--brand); text-decoration-color: currentColor; }
.hero-panel { position: relative; border: 1px solid #dedcd6; border-radius: 28px; background: rgba(255, 255, 255, .86); padding: 25px; box-shadow: var(--shadow-lg); }
.hero-panel::before { content: ""; position: absolute; z-index: -1; width: 270px; height: 270px; left: -80px; bottom: -80px; border-radius: 50%; background: rgba(30, 80, 230, .06); filter: blur(4px); }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.panel-head > div { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; }
.panel-head .brand-mark { width: 26px; height: 26px; }
.panel-head > span { border-radius: 99px; background: var(--brand-soft); padding: 6px 9px; color: var(--brand); font-size: 10px; font-weight: 800; }
.presence-list > div { display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
.presence-list p { display: grid; margin: 0; }
.presence-list strong { color: var(--ink); font-size: 14px; }
.presence-list small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.presence-list i { border-radius: 99px; background: #f4f3ef; padding: 5px 8px; color: #70737b; font-size: 9px; font-style: normal; font-weight: 700; }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; }
.icon-box svg, .service-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-box.blue { color: var(--brand); background: rgba(30, 80, 230, .09); }
.icon-box.violet { color: #7253cc; background: rgba(114, 83, 204, .09); }
.icon-box.green { color: #168b69; background: rgba(22, 139, 105, .09); }
.icon-box.rose { color: #bd4867; background: rgba(189, 72, 103, .09); }
.panel-foot { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto; gap: 8px; align-items: center; padding-top: 20px; }
.panel-foot span { height: 2px; border-radius: 99px; background: var(--brand); }
.panel-foot p { margin: 0; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.eyebrow { margin-bottom: 14px; }
.section-heading h2 { margin: 0; }
.services-section { border-top: 1px solid var(--line); background: var(--bg-alt); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 238px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.service-card:hover { transform: translateY(-5px); border-color: #d7d4ce; box-shadow: var(--shadow-md); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 13px; color: var(--brand); background: var(--brand-soft); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0; color: #6d7078; font-size: 14px; line-height: 1.65; }

.system-section { background: var(--ink); }
.system-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 88px; align-items: start; }
.system-intro h2 { color: #fff; }
.system-intro > p:last-child { margin: 0; color: #b8bbc4; font-size: 17px; }
.system-section .eyebrow { color: #8eabff; }
.outcome-grid { display: grid; gap: 12px; }
.outcome { position: relative; display: grid; grid-template-columns: 54px 170px 1fr; gap: 20px; align-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; padding: 24px; background: rgba(255,255,255,.045); }
.outcome span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: rgba(74, 117, 245, .16); color: #9ab1f7; font-size: 11px; font-weight: 800; }
.outcome h3 { margin: 0; color: #fff; font-size: 16px; }
.outcome p { margin: 0; color: #aeb1ba; font-size: 13px; line-height: 1.6; }

.audience-section { background: #fff; }
.audience-wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 64px; background: var(--bg); box-shadow: var(--shadow-sm); }
.audience-wrap h2 { margin-bottom: 18px; }
.audience-wrap > div:first-child > p:not(.eyebrow) { max-width: 520px; margin-bottom: 28px; }
.audience-labels { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.audience-labels span { display: inline-flex; align-items: center; min-height: 64px; border: 1px solid var(--line); border-radius: 15px; background: #fff; padding: 15px 20px; color: var(--ink); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-sm); }
.audience-labels span:nth-child(2), .audience-labels span:nth-child(4) { color: var(--brand); border-color: rgba(30, 80, 230, .18); background: var(--brand-soft); }

.consultation-section { border-top: 1px solid var(--line); background: var(--bg-alt); }
.consultation-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 76px; align-items: start; }
.consultation-copy { position: sticky; top: 130px; }
.consultation-copy > p:not(.eyebrow) { font-size: 17px; }
.review-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; color: var(--ink); font-size: 14px; font-weight: 600; }
.review-list li { display: flex; align-items: center; gap: 10px; }
.review-list svg, .feature-list svg { width: 20px; height: 20px; flex: 0 0 auto; border-radius: 50%; padding: 4px; background: rgba(22,139,105,.1); fill: none; stroke: var(--green); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note { border-top: 1px solid #dcd9d2; padding-top: 20px; color: var(--muted); font-size: 12px !important; }
.form-card { border: 1px solid var(--line); border-radius: 24px; background: #fff; padding: 34px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label:not(.consent) { display: grid; gap: 7px; }
.form-grid label > span { color: #42454c; font-size: 12px; font-weight: 700; }
.full-width { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #dad8d3; border-radius: 10px; background: #fff; padding: 12px 13px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
input, select { min-height: 49px; }
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #bf3550; }
.consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--brand); }
.consent span { font-weight: 500 !important; line-height: 1.5; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.submit-button { width: 100%; margin-top: 18px; border: 0; }
.form-status { display: none; margin-top: 18px; border-radius: 10px; padding: 12px 14px; font-size: 13px; }
.form-status.success { display: block; color: #11694f; background: rgba(22,139,105,.1); }
.form-status.error { display: block; color: #9f263c; background: rgba(189,72,103,.1); }
.submit-button[disabled] { opacity: .7; cursor: wait; transform: none; }

.pricing-hero { padding: 82px 0 60px; text-align: center; }
.pricing-hero h1 { margin-bottom: 18px; font-weight: 800; }
.pricing-hero > .container > p:last-child { font-size: 18px; }
.pricing-section { padding: 24px 0 110px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card { position: relative; border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 31px 27px; box-shadow: var(--shadow-sm); }
.price-card.popular { border: 2px solid var(--brand); padding: 30px 26px; box-shadow: 0 24px 60px -30px rgba(30,80,230,.45); }
.popular-badge { position: absolute; top: -14px; right: 24px; border-radius: 99px; background: var(--brand); padding: 7px 12px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.price-card h2 { margin-bottom: 10px; font-size: 1.55rem; }
.plan-description { min-height: 52px; margin-bottom: 22px; color: #72757d; font-size: 13px; line-height: 1.6; }
.price { display: grid; gap: 6px; margin-bottom: 24px; }
.price s { color: var(--muted); font-size: 12px; }
.price strong { color: var(--ink); font-size: 2.1rem; letter-spacing: -.05em; }
.price small { margin-left: 4px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0; }
.price-card > .btn { width: 100%; }
.feature-rule { height: 1px; margin: 28px 0 23px; background: var(--line); }
.includes { margin-bottom: 15px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.feature-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 12px; line-height: 1.45; }
.feature-list svg { width: 17px; height: 17px; padding: 3px; }
.hospital-card { display: flex; justify-content: space-between; align-items: center; gap: 50px; margin-top: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--ink); padding: 40px 44px; color: #b9bbc2; }
.hospital-card h2 { margin-bottom: 10px; color: #fff; font-size: 1.65rem; }
.hospital-card p { margin: 0; font-size: 14px; }
.hospital-card .eyebrow { color: #89a5f6; }
.hospital-action { min-width: 245px; display: grid; justify-items: end; gap: 14px; }
.hospital-action strong { color: #fff; font-size: 1.25rem; }
.pricing-notes { margin-top: 42px; border-top: 1px solid var(--line); padding-top: 30px; }
.pricing-notes h2 { margin-bottom: 18px; font-size: 1rem; letter-spacing: -.01em; }
.pricing-notes ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 30px; margin: 0; padding-left: 18px; color: #777a82; font-size: 12px; }
.pricing-final { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 92px 0; text-align: center; }
.pricing-final h2 { margin-bottom: 14px; }
.pricing-final p { margin: 0 auto 28px; max-width: 700px; }

.site-footer { border-top: 1px solid var(--line); background: #fff; padding: 52px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 40px; }
.footer-brand p { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-links a, .footer-contact a { width: fit-content; color: #666a72; font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; min-height: 48px; display: flex; align-items: center; gap: 9px; border-radius: 99px; background: #1da851; padding: 12px 16px; color: #fff; box-shadow: 0 12px 28px rgba(10, 90, 41, .28); font-size: 12px; font-weight: 800; transition: transform .25s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 1; transform: none; }

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

@media (max-width: 1024px) {
    .section { padding: 92px 0; }
    .hero { padding-top: 30px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
    .hero h1 { font-size: clamp(2.55rem, 5.2vw, 3.35rem); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .system-grid { grid-template-columns: 1fr; gap: 44px; }
    .outcome-grid { grid-template-columns: repeat(3, 1fr); }
    .outcome { grid-template-columns: 1fr; align-items: start; }
    .audience-wrap { gap: 40px; padding: 48px; }
    .consultation-grid { gap: 44px; }
    .pricing-grid { gap: 12px; }
    .price-card { padding-inline: 21px; }
    .price-card.popular { padding-inline: 20px; }
}

@media (max-width: 800px) {
    .container { width: min(calc(100% - 32px), var(--maxw)); }
    .desktop-nav, .header-book { display: none; }
    .menu-toggle { display: grid; }
    .mobile-nav { position: fixed; inset: 84px 0 auto; z-index: 49; display: grid; gap: 8px; border-bottom: 1px solid var(--line); background: var(--bg); padding: 18px 16px 24px; box-shadow: var(--shadow-md); transform: translateY(-130%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
    .mobile-nav.open { transform: none; visibility: visible; }
    .mobile-nav > a:not(.btn) { border-radius: 10px; padding: 12px 14px; color: var(--ink); font-weight: 600; }
    .hero { padding: 32px 0 80px; }
    .hero-grid, .audience-wrap, .consultation-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 44px; }
    .hero-copy { max-width: 650px; }
    .hero h1 { font-size: clamp(2.3rem, 5.2vw, 2.5rem); }
    .hero-kicker { font-size: 1.2rem; }
    .hero-panel { max-width: 620px; width: 100%; margin-inline: auto; }
    .audience-wrap { padding: 38px; }
    .consultation-copy { position: static; }
    .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
    .price-card { max-width: 620px; width: 100%; margin-inline: auto; padding: 30px; }
    .price-card.popular { padding: 29px; }
    .plan-description { min-height: auto; }
    .hospital-card { align-items: flex-start; }
}

@media (max-width: 620px) {
    .section { padding: 76px 0; }
    h2 { font-size: 2.05rem; }
    .header-inner { min-height: 74px; }
    .mobile-nav { inset: 74px 0 auto; }
    .brand-mark { width: 31px; height: 31px; }
    .hero { padding-top: 24px; }
    .hero h1 { font-size: clamp(2.15rem, 9.5vw, 2.5rem); letter-spacing: -.045em; }
    .hero-description { font-size: 15px; }
    .hero-actions { display: grid; }
    .hero-actions .btn { width: 100%; }
    .hero-panel { padding: 19px; border-radius: 22px; }
    .presence-list > div { grid-template-columns: 42px 1fr; }
    .presence-list i { display: none; }
    .panel-foot { gap: 5px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .service-icon { margin-bottom: 26px; }
    .outcome-grid { grid-template-columns: 1fr; }
    .outcome { grid-template-columns: 45px 1fr; gap: 12px; }
    .outcome p { grid-column: 2; }
    .audience-wrap { padding: 29px 24px; }
    .audience-labels { justify-content: flex-start; }
    .audience-labels span { min-height: 50px; padding: 11px 14px; }
    .form-card { padding: 24px 18px; border-radius: 19px; }
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .full-width { grid-column: auto; }
    .pricing-hero { padding: 52px 0 34px; }
    .pricing-hero h1 { font-size: 2.7rem; }
    .pricing-section { padding-bottom: 76px; }
    .price-card, .price-card.popular { padding: 28px 22px; }
    .hospital-card { display: grid; gap: 28px; padding: 31px 24px; }
    .hospital-action { min-width: 0; justify-items: start; }
    .hospital-action .btn { width: 100%; }
    .pricing-notes ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; justify-content: center; padding: 0; }
    .whatsapp-float span { display: none; }
}

@media (max-width: 360px) {
    .container { width: min(calc(100% - 24px), var(--maxw)); }
    .hero h1 { font-size: 2.15rem; }
    .panel-head > div strong { font-size: 12px; }
    .panel-foot { display: none; }
    .audience-wrap { padding: 26px 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}
