:root {
  --forest: #28613a;
  --forest-deep: #164326;
  --green: #397f3d;
  --sage: #a5d6a7;
  --sage-pale: #e9f4e7;
  --cream: #f8f8f3;
  --warm-white: #fffefa;
  --ink: #183324;
  --muted: #647468;
  --line: #dfe9dd;
  --shadow: 0 18px 55px rgba(25, 67, 38, .1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--warm-white); font-family: var(--sans); font-size: 16px; line-height: 1.62; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid #9bd99e; outline-offset: 3px; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--forest-deep); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 120px 0; position: relative; }
main > .section:not(.hero) { border-top: 1px solid rgba(22,67,38,.09); }
main > .section:not(.hero)::before { width: 34px; height: 3px; position: absolute; top: -2px; left: 50%; z-index: 3; background: var(--sage); border-radius: 999px; content: ''; opacity: .72; pointer-events: none; transform: translateX(-50%); }
main > .process { border-top-color: rgba(202,231,201,.2); }
main > .process::before { background: #b8dbb7; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--forest); font-size: .74rem; font-weight: 700; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.04em; line-height: 1.07; }
h1 { max-width: 670px; margin-bottom: 24px; font-size: clamp(3.15rem, 5vw, 5.5rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 3.8vw, 4rem); }
h1 em, h2 em { color: var(--green); font-weight: 600; }
h3 { font-size: 1.05rem; line-height: 1.25; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 700; line-height: 1; transition: transform .25s, color .25s, background .25s, box-shadow .25s; overflow: hidden; position: relative; }
.button svg { width: 18px; }
.button .whatsapp-logo { width: 18px; height: 18px; fill: currentColor; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--forest); box-shadow: 0 10px 23px rgba(40, 97, 58, .22); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 14px 27px rgba(40, 97, 58, .3); }
.button-ghost { color: var(--forest); background: rgba(255,255,255,.56); border-color: #cfe1cf; }
.button-ghost:hover { border-color: var(--forest); background: #fff; }
.button-small { min-height: 39px; padding: 0 15px; font-size: .79rem; }
.ripple-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.32); transform: translate(-50%, -50%) scale(0); pointer-events: none; animation: ripple .65s linear; }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(5); opacity: 0; } }

/* Header */
.site-header { height: 87px; display: flex; align-items: center; position: fixed; inset: 0 0 auto; z-index: 40; transition: height .3s, background .3s, box-shadow .3s; }
.site-header.scrolled { height: 70px; background: rgba(255, 255, 250, .82); box-shadow: 0 5px 22px rgba(25, 67, 38, .06); backdrop-filter: blur(15px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--forest-deep); line-height: 1; }
.brand-mark { display: grid; width: 35px; height: 35px; place-items: center; color: #fff; background: var(--forest); border-radius: 12px 12px 12px 2px; transform: rotate(-6deg); }
.brand-mark svg { width: 20px; transform: rotate(6deg); }
.brand strong { display: block; font-family: var(--serif); font-size: 1.32rem; font-weight: 700; letter-spacing: -.05em; }
.brand small { display: block; margin-top: 3px; color: #526f58; font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2.1vw, 31px); color: #496050; font-size: .85rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; padding: 10px 0; }
.main-nav > a:not(.button)::after { position: absolute; bottom: 4px; left: 0; width: 0; height: 1px; background: var(--forest); content: ''; transition: width .25s; }
.main-nav > a:hover, .main-nav > a.active { color: var(--forest); }
.main-nav > a:hover::after, .main-nav > a.active::after { width: 100%; }
.main-nav .nav-cta { margin-left: 4px; color: #fff; }
.menu-toggle { display: none; width: 43px; height: 42px; padding: 10px; border: 0; color: var(--forest); background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .25s, opacity .2s; }
.eligibility-banner { position: absolute; z-index: 5; top: 87px; left: 0; width: 100%; padding: 7px 0; color: #1f5631; background: rgba(226, 241, 224, .9); border-top: 1px solid rgba(55, 120, 61, .12); border-bottom: 1px solid rgba(55, 120, 61, .12); font-size: .71rem; font-weight: 700; line-height: 1.35; }
.eligibility-banner .container { display: flex; align-items: center; justify-content: center; gap: 7px; }
.eligibility-banner svg { width: 15px; height: 15px; flex: 0 0 auto; }

/* Hero */
.hero { min-height: 800px; display: flex; align-items: center; padding: 145px 0 75px; overflow: hidden; background: linear-gradient(112deg, #f8f8f2 5%, #f1f7ed 100%); }
.hero::before { position: absolute; width: 660px; height: 660px; top: -300px; left: -200px; border: 1px solid rgba(76,175,80,.13); border-radius: 50%; box-shadow: 0 0 0 65px rgba(76,175,80,.04), 0 0 0 130px rgba(76,175,80,.028); content: ''; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .82fr; align-items: center; gap: 56px; position: relative; z-index: 1; }
.hero-lead { max-width: 570px; margin-bottom: 30px; color: #5c6f61; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; align-items: stretch; gap: 21px; margin-top: 45px; }
.hero-proof > div { display: flex; flex-direction: column; padding-right: 21px; border-right: 1px solid #d5e3d3; line-height: 1.25; }
.hero-proof > div:last-child { padding: 0; border: none; }
.hero-proof strong { display: flex; align-items: center; gap: 4px; color: var(--forest-deep); font-size: .98rem; }
.hero-proof strong svg { width: 14px; fill: #e8ab35; stroke: #e8ab35; }
.hero-proof span { margin-top: 5px; color: #738277; font-size: .7rem; }
.hero-visual { min-height: 570px; position: relative; }
.hero-frame { height: 570px; overflow: hidden; border-radius: 47% 47% 7px 47%; background: #dde9db; box-shadow: var(--shadow); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 57% 52%; transform: scale(1.03); transition: transform .8s ease-out; }
.hero-visual:hover .hero-frame img { transform: scale(1.08); }
.floating-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; min-width: 156px; padding: 11px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.8); border-radius: 13px; box-shadow: 0 13px 24px rgba(20,50,29,.13); backdrop-filter: blur(7px); line-height: 1.25; animation: float 4.2s ease-in-out infinite; }
.floating-note span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--forest); background: var(--sage-pale); border-radius: 10px; }
.floating-note svg { width: 17px; }
.floating-note p { margin: 0; color: #526f58; font-size: .66rem; }
.floating-note strong { color: var(--ink); font-size: .73rem; }
.note-top { top: 52px; left: -58px; }
.note-bottom { right: -45px; bottom: 53px; animation-delay: -2.1s; }
@keyframes float { 50% { transform: translateY(-9px); } }
.hero-doodle { width: 145px; position: absolute; top: -45px; right: -65px; color: #88b88a; transform: rotate(13deg); }
.orb-one, .orb-two { position: absolute; border-radius: 50%; opacity: .6; filter: blur(1px); }
.orb-one { width: 24px; height: 24px; top: 27%; right: 4%; background: #a5d6a7; }
.orb-two { width: 11px; height: 11px; top: 68%; left: 6%; background: #4caf50; }
.scroll-cue { display: flex; align-items: center; gap: 10px; position: absolute; bottom: 23px; left: 50%; color: #526f58; font-size: .63rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 21px; height: 33px; position: relative; border: 1.5px solid #8aac8b; border-radius: 20px; }
.scroll-cue span::after { width: 3px; height: 6px; position: absolute; top: 6px; left: 50%; background: var(--green); border-radius: 5px; content: ''; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 60% { transform: translate(-50%, 12px); opacity: 0; } 100% { transform: translate(-50%, 0); opacity: 0; } }
.intro-strip { color: #e4f4e4; background: var(--forest-deep); }
.intro-strip-inner { min-height: 67px; display: flex; align-items: center; justify-content: space-around; gap: 20px; }
.intro-strip p { display: flex; align-items: center; gap: 9px; margin: 0; font-size: .78rem; font-weight: 600; }
.intro-strip svg { width: 17px; color: var(--sage); }

/* General sections */
.section-heading { max-width: 720px; margin: 0 auto 48px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 590px; margin: 0 auto; color: var(--muted); }
.about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: .9fr 1fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.about-image-wrap { height: 590px; position: relative; padding: 0 36px 30px 0; }
.about-image-wrap::before { position: absolute; inset: 42px 0 0 34px; background: #dcebd8; border-radius: 10px 75px 10px 75px; content: ''; }
.about-image-wrap img { width: calc(100% - 27px); height: 100%; position: relative; object-fit: cover; object-position: 54% center; border-radius: 66px 10px 66px 10px; box-shadow: 0 22px 40px rgba(24,51,36,.12); }
.about-accent { width: 68px; height: 68px; position: absolute; right: -25px; top: 43px; z-index: 2; border: 1px solid #86b886; border-radius: 50% 50% 50% 4px; transform: rotate(-34deg); }
.credential { position: absolute; z-index: 3; bottom: 0; left: 42px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; background: #fff; border-radius: 10px; box-shadow: 0 10px 27px rgba(24,51,36,.14); }
.credential > svg { width: 29px; height: 29px; padding: 5px; color: #fff; background: var(--forest); border-radius: 50%; }
.credential div { display: flex; flex-direction: column; line-height: 1.25; }
.credential strong { font-size: .73rem; }
.credential span { color: #526f58; font-size: .63rem; }
.about-content > p:not(.eyebrow) { max-width: 550px; color: var(--muted); }
.about-points { display: grid; gap: 12px; margin: 30px 0; }
.about-points div { display: flex; align-items: center; gap: 11px; }
.about-points > div > svg { width: 39px; height: 39px; padding: 10px; color: var(--forest); background: var(--sage-pale); border-radius: 50%; }
.about-points span { display: flex; flex-direction: column; color: #526f58; font-size: .75rem; line-height: 1.35; }
.about-points strong { color: var(--ink); font-size: .84rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--forest); font-size: .86rem; font-weight: 700; }
.text-link svg { width: 17px; transition: transform .2s; }
.text-link:hover svg { transform: translate(2px, -2px); }

/* Specialty cards */
.specialties { background: var(--cream); }
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.specialty-card { min-height: 237px; padding: 29px 27px; position: relative; background: #fff; border: 1px solid transparent; border-radius: 12px; transition: transform .3s, border .3s, box-shadow .3s; }
.specialty-card:hover { border-color: #cee1ce; box-shadow: var(--shadow); transform: translateY(-8px); }
.icon-box { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 24px; color: var(--forest); background: var(--sage-pale); border-radius: 13px; transition: color .3s, background .3s; }
.icon-box svg { width: 22px; }
.specialty-card:hover .icon-box { color: #fff; background: var(--forest); }
.specialty-grid > .specialty-card:nth-child(3) .icon-box { position: relative; }
.specialty-grid > .specialty-card:nth-child(3) .icon-box svg { width: 25px; }
.specialty-card h3 { margin-bottom: 8px; }
.specialty-card p { max-width: 250px; margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
/* Online care */
.online-care { background: #f4f8f1; }
.online-care-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(48px, 9vw, 125px); }
.online-care-copy > p:not(.eyebrow) { max-width: 550px; color: var(--muted); }
.online-care-benefits { display: grid; gap: 16px; margin: 29px 0 31px; }
.online-care-benefits > div { display: flex; align-items: flex-start; gap: 13px; }
.online-care-benefits > div > span { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; color: var(--forest); background: #e1efde; border-radius: 11px; }
.online-care-benefits svg { width: 19px; }
.online-care-benefits p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.55; }
.online-care-benefits strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: .84rem; }
.online-care-visual { min-height: 525px; position: relative; overflow: hidden; border-radius: 25px; box-shadow: 0 22px 48px rgba(45,78,51,.15); }
.online-care-visual::before { width: 135px; height: 135px; position: absolute; z-index: 1; top: -62px; right: -54px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; box-shadow: 0 0 0 25px rgba(255,255,255,.12); content: ''; }
.online-care-visual img { width: 100%; height: 525px; object-fit: cover; object-position: center; }
.online-care-badge { display: flex; align-items: center; gap: 10px; position: absolute; z-index: 2; right: 18px; bottom: 18px; max-width: 260px; padding: 11px 13px; color: #eff8ed; background: rgba(22,67,38,.92); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; box-shadow: 0 10px 25px rgba(18,45,27,.25); backdrop-filter: blur(8px); }
.online-care-badge svg { width: 27px; height: 27px; flex: 0 0 auto; padding: 6px; color: var(--forest); background: #d9eed6; border-radius: 8px; }
.online-care-badge span { display: flex; flex-direction: column; font-size: .64rem; line-height: 1.35; }
.online-care-badge strong { font-size: .71rem; }
.online-care-visual.is-visible img { animation: online-video-float 6s ease-in-out infinite; }
.online-care-visual.is-visible .online-care-badge { animation: online-badge-in .65s .28s both; }
@keyframes online-video-float { 0%, 100% { transform: scale(1.02) translateY(0); } 50% { transform: scale(1.07) translateY(-9px); } }
@keyframes online-badge-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* Process */
.process { overflow: hidden; color: #fff; background: var(--forest-deep); }
.process::after { width: 465px; height: 465px; position: absolute; top: -350px; right: -100px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.03), 0 0 0 110px rgba(255,255,255,.018); content: ''; }
.section-heading.light { position: relative; z-index: 1; }
.section-heading.light .eyebrow { color: #b8dbb7; }
.section-heading.light h2 em { color: #b2dcb2; }
.section-heading.light > p:last-child { color: #b7cdb8; }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; z-index: 1; max-width: 1130px; margin: 66px auto 0; padding: 0; list-style: none; }
.process-list::before { height: 1px; position: absolute; top: 55px; left: 9%; right: 9%; background: linear-gradient(90deg, transparent, rgba(186,221,186,.58), transparent); content: ''; }
.process-list li { display: flex; align-items: center; flex-direction: column; position: relative; text-align: center; }
.process-list li > span { margin-bottom: 15px; color: #97bc98; font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.process-icon { display: grid; width: 57px; height: 57px; place-items: center; margin-bottom: 16px; color: #fff; background: #28613a; border: 6px solid var(--forest-deep); border-radius: 50%; box-shadow: 0 0 0 1px #83ad85; animation: process-icon-progress 7.5s ease-in-out infinite; animation-play-state: paused; }
.process.is-active .process-icon { animation-play-state: running; }
.process-icon svg { width: 19px; }
.process-list li:nth-child(2) .process-icon { animation-delay: 1.5s; }
.process-list li:nth-child(3) .process-icon { animation-delay: 3s; }
.process-list li:nth-child(4) .process-icon { animation-delay: 4.5s; }
.process-list li:nth-child(5) .process-icon { animation-delay: 6s; }
@keyframes process-icon-progress { 0%, 8% { color: var(--forest-deep); background: #b9dfb6; box-shadow: 0 0 0 1px #b7dcb7, 0 0 0 7px rgba(170,216,168,.2); transform: scale(1.12); } 14%, 100% { color: #fff; background: #28613a; box-shadow: 0 0 0 1px #83ad85; transform: scale(1); } }
.process-list h3 { margin: 0 0 6px; color: #eff8ed; font-size: .92rem; }
.process-list p { max-width: 150px; margin: 0; color: #a8c4aa; font-size: .72rem; line-height: 1.45; }
.leaf-left { width: 250px; height: 250px; position: absolute; bottom: -170px; left: -80px; border: 1px solid rgba(180,220,179,.16); border-radius: 100% 0 100% 0; transform: rotate(25deg); }

/* Benefits */
.benefits { background: #f5faf3; }
.benefits-grid { display: grid; grid-template-columns: .88fr 1fr; align-items: center; gap: clamp(55px, 9vw, 125px); }
.benefits-copy h2 { font-size: clamp(2.2rem, 3.3vw, 3.5rem); }
.benefits-copy > p:not(.eyebrow) { max-width: 485px; margin-bottom: 31px; color: var(--muted); }
.benefits-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.benefits-list > div { min-height: 171px; padding: 22px; background: #fff; border-radius: 12px; box-shadow: 0 8px 28px rgba(38,90,45,.04); transition: transform .25s, box-shadow .25s; }
.benefits-list > div:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.benefits-list span { display: grid; width: 35px; height: 35px; place-items: center; margin-bottom: 17px; color: var(--forest); background: var(--sage-pale); border-radius: 10px; }
.benefits-list svg { width: 19px; }
.benefits-list p { display: flex; flex-direction: column; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.benefits-list strong { margin-bottom: 5px; color: var(--ink); font-size: .83rem; }

/* Testimonials */
.testimonials { overflow: hidden; background: #fff; }
.testimonial-shell { max-width: 790px; min-height: 330px; margin: 0 auto; padding: 57px 70px 29px; position: relative; text-align: center; background: #f7faf5; border-radius: 24px; }
.quote-mark { position: absolute; top: 1px; left: 45px; color: #d6e9d3; font-family: var(--serif); font-size: 7rem; line-height: 1; }
.testimonial-card { display: none; animation: slideIn .45s ease both; }
.testimonial-card.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateY(11px); } to { opacity: 1; transform: translateY(0); } }
.stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 20px; color: #e3a93b; }
.stars svg { width: 16px; fill: currentColor; }
.testimonial-text { min-height: 87px; margin: 0 auto 23px; color: #405444; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.42rem); font-style: italic; line-height: 1.55; }
.testimonial-person { display: flex; justify-content: center; align-items: center; gap: 10px; }
.avatar { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; color: var(--forest); font-family: var(--serif); font-size: .95rem; font-weight: 700; }
.testimonial-person span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.35; text-align: left; }
.testimonial-person strong { font-size: .77rem; }
.testimonial-person small { color: #799079; font-size: .66rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 25px; }
.slider-button { display: grid; width: 32px; height: 32px; place-items: center; color: var(--forest); background: transparent; border: 1px solid #cadfc9; border-radius: 50%; transition: color .2s, background .2s; }
.slider-button:hover { color: #fff; background: var(--forest); }
.slider-button svg { width: 15px; }
.slider-dots { display: flex; gap: 6px; }
.slider-dots button { width: 6px; height: 6px; padding: 0; border: 0; background: #b5cbb5; border-radius: 10px; transition: width .2s, background .2s; }
.slider-dots button.active { width: 20px; background: var(--forest); }

/* FAQ */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .86fr 1fr; align-items: start; gap: clamp(50px, 9vw, 122px); }
.faq-intro { position: sticky; top: 100px; }
.faq-intro > p:not(.eyebrow) { max-width: 385px; margin-bottom: 22px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid #e1eadf; border-radius: 10px; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 19px 19px; color: var(--ink); background: transparent; border: 0; text-align: left; font-size: .88rem; font-weight: 700; }
.faq-question > span:first-child { min-width: 0; flex: 1; }
.faq-question > span:last-child { display: grid; width: 23px; height: 23px; flex: 0 0 auto; place-items: center; color: var(--forest); background: var(--sage-pale); border-radius: 50%; transition: transform .25s, background .25s, color .25s; }
.faq-question svg { width: 14px; }
.faq-item.open .faq-question > span:last-child { color: #fff; background: var(--forest); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; padding: 0 52px 0 19px; color: #657568; font-size: .79rem; transition: grid-template-rows .3s, padding .3s; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; padding-bottom: 20px; }
.no-js .faq-answer { grid-template-rows: 1fr; padding-bottom: 20px; }

/* Contact + footer */
.contact { padding-bottom: 110px; background: var(--warm-white); }
.contact-card { display: grid; grid-template-columns: .88fr 1fr; gap: clamp(40px, 7vw, 95px); padding: 62px; position: relative; overflow: hidden; color: #eff8ee; background: var(--forest-deep); border-radius: 22px; }
.contact-card::after { width: 450px; height: 450px; position: absolute; right: -290px; bottom: -290px; border: 1px solid rgba(189,228,190,.16); border-radius: 50%; box-shadow: 0 0 0 54px rgba(189,228,190,.04); content: ''; }
.contact-info { position: relative; z-index: 1; }
.contact-info .eyebrow { color: #b5d9b4; }
.contact-info h2 { margin-bottom: 19px; font-size: clamp(2.25rem, 3.7vw, 3.7rem); }
.contact-info h2 em { color: #b4dcb3; }
.contact-info > p:not(.eyebrow) { max-width: 420px; color: #b9cfba; font-size: .91rem; }
.contact-eligibility { display: flex; align-items: center; gap: 7px; margin: 17px 0 0; color: #d6ead5 !important; font-size: .75rem !important; font-weight: 700; line-height: 1.4; }
.contact-eligibility svg { width: 16px; height: 16px; flex: 0 0 auto; color: #b4dcb3; }
.contact-links { display: grid; gap: 14px; margin-top: 33px; }
.contact-links a { display: flex; align-items: center; gap: 12px; width: fit-content; transition: transform .2s; }
.contact-links a:hover { transform: translateX(4px); }
.contact-links > a > svg { width: 35px; height: 35px; padding: 9px; color: var(--forest); background: #dcedd9; border-radius: 50%; }
.contact-links > a > .whatsapp-logo { width: 35px; height: 35px; padding: 9px; fill: var(--forest); background: #dcedd9; border-radius: 50%; }
.contact-links span { display: flex; flex-direction: column; line-height: 1.25; }
.contact-links small { color: #a6c0a6; font-size: .63rem; }
.contact-links strong { color: #f4fbf2; font-size: .78rem; }
.social-links [data-email] { display: none; }
.contact-form { position: relative; z-index: 1; padding: 29px; color: var(--ink); background: #fff; border-radius: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 5px; color: #516354; font-size: .68rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 11px 12px; color: var(--ink); background: #fafcf9; border: 1px solid #dbe7d9; border-radius: 7px; outline: none; font-size: .78rem; transition: background .2s, border .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #657568; }
.field input:focus, .field textarea:focus { background: #fff; border-color: #77ad78; box-shadow: 0 0 0 3px rgba(119,173,120,.14); }
.field input.invalid, .field textarea.invalid { border-color: #c6615e; }
.field-error { display: block; height: 11px; margin-top: 3px; color: #b14c4a; font-size: .6rem; line-height: 1; }
.form-submit { width: 100%; min-height: 46px; margin-top: 1px; font-size: .81rem; }
.form-note { display: flex; align-items: center; gap: 5px; justify-content: center; margin: 12px 0 0; color: #526f58; font-size: .62rem; }
.form-note svg { width: 12px; }
.site-footer { color: #c0d1c0; background: #112e1b; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .75fr 1fr; gap: 75px; padding: 57px 0 42px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--forest); background: #d8edd6; }
.footer-grid > div:first-child > p { max-width: 270px; margin: 18px 0 0; font-size: .77rem; line-height: 1.6; }
.footer-grid h3 { margin: 5px 0 15px; color: #f1faf0; font-family: var(--sans); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid a:not(.brand) { display: block; margin: 7px 0; color: #c0d1c0; font-size: .75rem; transition: color .2s; }
.footer-grid a:not(.brand):hover { color: #fff; }
.footer-grid p { margin-bottom: 6px; font-size: .75rem; }
.social-links { display: flex; gap: 8px; margin-top: 15px; }
.footer-grid .social-links a { display: grid; width: 28px; height: 28px; place-items: center; margin: 0; color: #d6ead5; border: 1px solid #3c5c46; border-radius: 50%; }
.social-links svg { width: 14px; }
.social-links .whatsapp-logo { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid #294635; color: #93aa96; font-size: .66rem; }
.footer-bottom > span:last-child { display: flex; align-items: center; gap: 4px; }
.footer-bottom svg { width: 12px; color: #e28b86; fill: currentColor; }

/* Floating controls */
.floating-button { display: grid; width: 53px; height: 53px; place-items: center; position: fixed; z-index: 33; right: 23px; bottom: 23px; color: #fff; background: #29a850; border: 0; border-radius: 50%; box-shadow: 0 8px 23px rgba(22,85,41,.35); transition: transform .25s, background .25s; animation: whatsapp-shake 4s ease-in-out infinite; }
.floating-button:hover { background: var(--forest); transform: scale(1.08); animation: none; }
.floating-button.open { animation: none; }
.floating-button svg { width: 23px; }
.floating-button .whatsapp-logo { width: 23px; height: 23px; fill: currentColor; }
.floating-button .close-icon { display: none; }
.floating-button.open > svg:first-child { display: none; }
.floating-button.open .close-icon { display: block; }
.quick-menu { display: grid; gap: 8px; position: fixed; z-index: 32; right: 26px; bottom: 86px; pointer-events: none; opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s; }
.quick-menu.open { pointer-events: auto; opacity: 1; transform: translateY(0); }
.quick-menu a { display: flex; align-items: center; gap: 9px; color: var(--ink); background: #fff; border-radius: 999px; box-shadow: 0 8px 21px rgba(17,46,27,.15); font-size: .72rem; font-weight: 700; transition: transform .2s; }
.quick-menu a:hover { transform: translateX(-4px); }
.quick-menu svg { width: 36px; height: 36px; padding: 10px; color: #fff; background: var(--forest); border-radius: 50%; }
.quick-menu .whatsapp-logo { width: 36px; height: 36px; padding: 10px; fill: #fff; background: var(--forest); border-radius: 50%; }
.quick-menu a:first-child svg { background: #b16f7e; }
.quick-menu span { padding-right: 14px; }
.instagram-logo { fill: currentColor; }
.toast { display: flex; align-items: center; gap: 8px; position: fixed; z-index: 80; right: 22px; bottom: 89px; max-width: 310px; padding: 12px 16px; color: #fff; background: #1c5731; border-radius: 9px; box-shadow: var(--shadow); font-size: .76rem; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 18px; color: #a5d6a7; }

/* Animation */
@keyframes whatsapp-shake {
  0%, 86%, 100% { transform: translateX(0); }
  88%, 92%, 96% { transform: translateX(-3px) rotate(-3deg); }
  90%, 94%, 98% { transform: translateX(3px) rotate(3deg); }
}
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .07s; }
.reveal-delay-2 { transition-delay: .14s; }
.reveal-delay-3 { transition-delay: .21s; }
.reveal-delay-4 { transition-delay: .28s; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .main-nav { gap: 14px; font-size: .78rem; }
  .hero { min-height: 720px; }
  .hero-grid { gap: 30px; }
  .hero-visual, .hero-frame { min-height: 500px; height: 500px; }
  .note-top { left: -20px; }.note-bottom { right: -18px; }
  .about-grid, .benefits-grid, .faq-grid { gap: 55px; }
  .online-care-grid { gap: 55px; }
  .about-image-wrap { height: 520px; }
  .contact-card { padding: 45px; gap: 40px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 560px); }
  .site-header { height: 70px; }
  .site-header.scrolled { height: 64px; }
  .eligibility-banner { top: 70px; padding: 6px 0; font-size: .64rem; }
  .menu-toggle { display: block; position: relative; z-index: 44; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { width: min(100% - 30px, 420px); display: flex; align-items: stretch; flex-direction: column; gap: 2px; position: fixed; z-index: 42; top: 75px; right: 15px; padding: 19px; background: rgba(255,255,252,.98); border: 1px solid #ddeadc; border-radius: 13px; box-shadow: 0 20px 45px rgba(24,51,36,.16); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .22s, transform .22s; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 10px 5px; }
  .main-nav .nav-cta { margin: 9px 0 0; }
  .hero { min-height: auto; padding: 127px 0 86px; }
  .hero-grid, .about-grid, .benefits-grid, .faq-grid, .contact-card, .online-care-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(2.8rem, 12.5vw, 4rem); }
  h2 { font-size: clamp(2.25rem, 9vw, 3.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-proof { gap: 13px; margin-top: 31px; }
  .hero-proof > div { padding-right: 12px; }
  .hero-proof strong { font-size: .82rem; }.hero-proof span { font-size: .61rem; }
  .hero-visual, .hero-frame { min-height: 465px; height: 465px; }
  .hero-frame { border-radius: 45% 45% 7px 45%; }
  .note-top { top: 27px; left: -10px; }.note-bottom { right: -10px; bottom: 24px; }
  .hero-doodle { right: -29px; }
  .scroll-cue { display: none; }
  .intro-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 13px 0; }
  .intro-strip p { justify-content: center; font-size: .63rem; }.intro-strip p:last-child { grid-column: span 2; padding-top: 7px; }
  .about-image-wrap { max-width: 450px; height: 500px; margin: 0 auto; }
  .about-grid, .benefits-grid, .faq-grid { gap: 45px; }
  .online-care-grid { gap: 42px; }
  .online-care-visual, .online-care-visual img { min-height: 460px; height: 460px; }
  .specialty-grid, .benefits-list { grid-template-columns: repeat(2, 1fr); }
  .specialty-card { min-height: 215px; padding: 22px 18px; }.specialty-card p { font-size: .73rem; }
  .process-list { grid-template-columns: 1fr; gap: 20px; max-width: 340px; margin-top: 46px; }
  .process-list::before { width: 1px; height: auto; top: 7%; bottom: 7%; left: 50%; right: auto; background: linear-gradient(180deg, transparent, rgba(186,221,186,.58), transparent); }
  .process-list li { display: grid; grid-template-columns: 35px 58px 1fr; column-gap: 10px; text-align: left; }
  .process-list li > span { align-self: center; margin: 0; }.process-icon { margin: 0; }.process-list h3 { align-self: end; margin: 0; }.process-list p { grid-column: 3; max-width: 210px; }
  .faq-intro { position: static; }
  .contact { padding-bottom: 80px; }
  .contact-card { padding: 36px 24px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 33px; }.footer-grid > div:first-child { grid-column: span 2; }.footer-bottom { flex-direction: column; gap: 4px; }
}

@media (max-width: 430px) {
  .section { padding: 74px 0; }.hero { padding-top: 112px; }
  .button { width: 100%; }.hero-actions { display: grid; }
  .hero-visual, .hero-frame { min-height: 390px; height: 390px; }
  .floating-note { min-width: 133px; padding: 8px; }.floating-note span { width: 27px; height: 27px; }.note-top { left: -7px; }.note-bottom { right: -7px; }
  .specialty-grid, .benefits-list { grid-template-columns: 1fr; }.specialty-card { min-height: 183px; }.icon-box { margin-bottom: 16px; }
  .testimonial-shell { min-height: 365px; padding: 53px 24px 24px; }.quote-mark { left: 22px; }.testimonial-text { min-height: 135px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }.contact-form { padding: 21px 17px; }.contact-info h2 { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.floating-note, .scroll-cue span::after, .floating-button, .process-icon, .online-care-visual img, .online-care-badge { animation: none; } * { transition-duration: .01ms !important; }
}
