:root {
  --ink: #102f35;
  --ink-2: #19444a;
  --ink-3: #27616a;
  --coral: #f1785f;
  --coral-dark: #d95e49;
  --peach: #ffc7b4;
  --cream: #fff9f1;
  --sand: #f5ecdf;
  --mint: #dbeee7;
  --white: #fff;
  --text: #20373b;
  --muted: #617579;
  --line: rgba(16, 47, 53, .13);
  --shadow: 0 24px 70px rgba(15, 47, 53, .12);
  --shadow-soft: 0 14px 40px rgba(15, 47, 53, .08);
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--cream); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow-container { width: min(100%, 720px); text-align: center; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -100px; padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.topbar { position: relative; z-index: 30; color: rgba(255,255,255,.85); background: var(--ink); font-size: .78rem; font-weight: 700; letter-spacing: .02em; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-emergency { color: var(--peach); display: flex; align-items: center; gap: 8px; }
.topbar-emergency span { color: var(--coral); animation: pulse 1.8s infinite; }

.site-header { position: sticky; z-index: 25; top: 0; background: rgba(255,249,241,.92); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(15,47,53,.06); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-symbol { width: 45px; height: 45px; object-fit: contain; }
.brand-name { width: 132px; max-height: 39px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .91rem; font-weight: 750; color: var(--ink); }
.main-nav > a:not(.button) { position: relative; padding: 10px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--coral); transition: .25s ease; }
.main-nav > a:hover::after, .main-nav > a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--white); border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); border-radius: 5px; transition: .25s; }

.button { border: 1px solid transparent; border-radius: 14px; min-height: 47px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: .91rem; font-weight: 800; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(241,120,95,.34); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--coral); box-shadow: 0 12px 26px rgba(241,120,95,.24); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 16px 32px rgba(217,94,73,.28); }
.button-secondary { color: var(--ink); border-color: rgba(16,47,53,.2); background: rgba(255,255,255,.62); }
.button-secondary:hover { border-color: var(--ink); background: var(--white); }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.button-coral { color: var(--white); background: var(--coral); box-shadow: 0 14px 32px rgba(241,120,95,.25); }
.button-large { min-height: 56px; padding: 0 26px; border-radius: 17px; }
.button-login { min-height: 46px; padding-inline: 24px; color: var(--white); background: var(--ink); box-shadow: 0 10px 24px rgba(15,47,53,.18); }
.button-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 850; }
.text-link span { color: var(--coral); font-size: 1.35em; }
.text-link-light { color: var(--white); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--peach); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 25px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-dark { color: var(--coral-dark); }
.eyebrow-light { color: var(--peach); }
.eyebrow-coral { color: var(--coral); }

.hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 34px 34px; mask-image: linear-gradient(to right, #000, transparent 70%); }
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; padding-top: 52px; padding-bottom: 64px; }
.hero-copy h1 { margin: 18px 0 24px; max-width: 730px; font-size: clamp(3.5rem, 5.8vw, 5.7rem); line-height: .98; letter-spacing: -.062em; font-weight: 820; }
.hero-copy h1 em { color: var(--peach); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.73); font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero .button-secondary { color: var(--white); border-color: rgba(255,255,255,.28); background: transparent; }
.hero .button-secondary:hover { background: rgba(255,255,255,.1); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 36px; color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust b { color: var(--peach); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-glow-one { width: 520px; height: 520px; right: -150px; top: -180px; background: rgba(241,120,95,.17); }
.hero-glow-two { width: 390px; height: 390px; left: 36%; bottom: -280px; background: rgba(99,188,170,.15); }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.member-card { position: relative; z-index: 2; width: min(100%, 455px); min-height: 280px; padding: 30px; border: 1px solid rgba(255,255,255,.22); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08)); box-shadow: 0 40px 90px rgba(0,0,0,.28); backdrop-filter: blur(18px); transform: rotate(-2.8deg); overflow: hidden; }
.member-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; bottom: -130px; border: 48px solid rgba(255,199,180,.18); border-radius: 50%; }
.member-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.member-card-top img { width: 145px; filter: brightness(0) invert(1); }
.member-card-top > span { font-size: .6rem; letter-spacing: .18em; font-weight: 850; color: rgba(255,255,255,.58); }
.member-pet { display: flex; align-items: center; gap: 16px; margin: 42px 0 31px; }
.pet-avatar { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 20px; color: var(--coral); background: var(--cream); font-size: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.member-pet small, .member-meta small { display: block; color: rgba(255,255,255,.53); font-size: .58rem; letter-spacing: .14em; font-weight: 900; }
.member-pet strong { display: block; margin-top: 4px; font-size: 1.1rem; }
.member-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.member-meta strong { font-size: .8rem; }
.hero-mini-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px; color: var(--ink); background: rgba(255,255,255,.96); border-radius: 17px; box-shadow: var(--shadow); animation: float 4.8s ease-in-out infinite; }
.hero-mini-card small { display: block; color: var(--muted); font-size: .54rem; letter-spacing: .14em; font-weight: 900; }
.hero-mini-card strong { display: block; font-size: .75rem; }
.mini-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--coral); border-radius: 12px; font-weight: 900; }
.hero-mini-emergency { right: -10px; top: 94px; }
.hero-mini-care { left: -22px; bottom: 71px; animation-delay: -2s; }
.hero-mini-care .mini-icon { background: var(--ink-3); }
.pet-orbit { position: absolute; z-index: 1; width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: rgba(255,255,255,.38); font-family: Georgia, serif; font-size: .78rem; font-style: italic; }
.pet-orbit-one { right: 32px; bottom: 32px; }
.pet-orbit-two { left: 30px; top: 21px; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .87rem; font-weight: 650; }
.trust-points { display: flex; align-items: center; gap: 20px; color: var(--ink); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.trust-points i { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.section-heading { margin-bottom: 48px; }
.section-heading h2, .how-intro h2, .store-copy h2, .transparency-grid h2, .emergency-copy h2 { margin: 13px 0 0; color: var(--ink); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.split-heading p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; }
.centered-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.centered-heading p { color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { min-height: 330px; padding: 29px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.66); transition: .25s ease; }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(241,120,95,.35); box-shadow: var(--shadow-soft); background: var(--white); }
.benefit-card-featured { color: var(--white); border-color: var(--ink); background: var(--ink); }
.benefit-card-featured h3, .benefit-card-featured a { color: var(--white); }
.benefit-card-featured p { color: rgba(255,255,255,.67); }
.benefit-icon { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 30px; color: var(--coral-dark); border: 1px solid rgba(241,120,95,.25); border-radius: 17px; background: rgba(241,120,95,.09); font-family: Georgia, serif; font-style: italic; }
.benefit-card-featured .benefit-icon { color: var(--peach); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.benefit-category { color: var(--coral-dark); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.benefit-card h3 { margin: 7px 0 9px; color: var(--ink); font-size: 1.24rem; }
.benefit-card p { margin: 0 0 20px; color: var(--muted); font-size: .88rem; }
.benefit-card a { margin-top: auto; color: var(--ink); font-size: .78rem; font-weight: 850; }
.benefit-card a span { color: var(--coral); }
.section-action { margin-top: 36px; text-align: center; }

.how-section { color: var(--white); background: var(--ink); }
.how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: center; }
.how-intro h2 { color: var(--white); }
.how-intro p { max-width: 520px; color: rgba(255,255,255,.65); font-size: 1rem; }
.how-intro .button { margin-top: 20px; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.steps-list li { padding: 30px 4px; display: grid; grid-template-columns: 65px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.steps-list > li > span { color: var(--coral); font-family: Georgia, serif; font-size: 1.2rem; font-style: italic; }
.steps-list h3 { margin: 0; font-size: 1.22rem; }
.steps-list p { margin: 6px 0 0; color: rgba(255,255,255,.61); font-size: .9rem; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card { position: relative; padding: 35px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.plan-featured { border-color: var(--coral); transform: translateY(-12px); }
.plan-badge { position: absolute; top: 18px; right: 18px; padding: 7px 11px; color: var(--white); background: var(--coral); border-radius: 20px; font-size: .65rem; font-weight: 850; text-transform: uppercase; }
.plan-card h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.5rem; }
.plan-card > p { min-height: 75px; color: var(--muted); }
.plan-price { margin: 15px 0 28px; }
.plan-price small { display: block; color: var(--muted); }
.plan-price strong { color: var(--ink); font-size: 2.2rem; letter-spacing: -.04em; }
.plan-price span { color: var(--muted); }
.plan-card .button { margin-top: auto; }
.plans-promise { padding-top: 72px; }
.promise-card { padding: 55px 62px; display: flex; align-items: center; justify-content: space-between; gap: 40px; color: var(--white); background: linear-gradient(135deg, var(--ink), var(--ink-2)); border-radius: var(--radius-lg); overflow: hidden; }
.promise-card h2 { margin: 12px 0 6px; font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.promise-card p { max-width: 700px; margin: 0; color: rgba(255,255,255,.67); }

.emergency-section { padding-top: 30px; background: var(--white); }
.emergency-card { padding: 58px; display: grid; grid-template-columns: 100px 1fr .62fr; gap: 45px; align-items: center; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.emergency-symbol { width: 94px; height: 94px; display: grid; place-items: center; border-radius: 30px; color: var(--white); background: var(--coral); box-shadow: 0 18px 40px rgba(241,120,95,.25); font-size: 2.6rem; font-weight: 300; }
.emergency-copy h2 { color: var(--white); font-size: clamp(2.1rem, 3.5vw, 3.4rem); }
.emergency-copy p { color: rgba(255,255,255,.66); }
.emergency-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 27px; }
.emergency-list { border-top: 1px solid rgba(255,255,255,.14); }
.emergency-list div { display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.emergency-list span { color: var(--coral); font-family: Georgia, serif; font-style: italic; }
.emergency-list p { margin: 0; color: rgba(255,255,255,.75); font-size: .84rem; font-weight: 700; }

.store-teaser { background: var(--white); }
.store-teaser-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: center; }
.store-copy p { color: var(--muted); max-width: 500px; }
.store-copy .button { margin-top: 20px; }
.store-categories-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.store-categories-preview a { min-height: 185px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); transition: .25s; }
.store-categories-preview a:hover { transform: translateY(-4px); background: var(--mint); box-shadow: var(--shadow-soft); }
.store-categories-preview span { color: var(--coral); font-family: Georgia, serif; font-style: italic; }
.store-categories-preview strong { margin-top: auto; color: var(--ink); font-size: 1.13rem; }
.store-categories-preview small { color: var(--muted); }

.transparency-section { border-top: 1px solid var(--line); }
.transparency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.transparency-points { display: grid; gap: 14px; }
.transparency-points article { padding: 25px; border-left: 3px solid var(--coral); background: var(--white); border-radius: 0 16px 16px 0; box-shadow: var(--shadow-soft); }
.transparency-points strong { color: var(--ink); }
.transparency-points p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }

.final-cta { padding: 55px 0; color: var(--white); background: var(--coral); }
.final-cta-inner { display: grid; grid-template-columns: 78px 1fr auto; gap: 27px; align-items: center; }
.final-cta img { width: 72px; filter: brightness(0) invert(1); }
.final-cta span { font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.final-cta h2 { margin: 3px 0 0; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; }

.site-footer { padding: 76px 0 28px; color: rgba(255,255,255,.68); background: #0a252a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 55px; }
.footer-brand img { width: 185px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 300px; }
.footer-whatsapp { color: var(--peach); font-weight: 800; }
.site-footer h2 { margin: 0 0 18px; color: var(--white); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 58px; padding-top: 25px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-disclaimer { margin-top: 18px; font-size: .68rem; color: rgba(255,255,255,.42); }
.floating-help { position: fixed; z-index: 20; right: 22px; bottom: 22px; min-height: 50px; padding: 0 18px 0 9px; display: flex; align-items: center; gap: 10px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.15); border-radius: 30px; box-shadow: 0 15px 35px rgba(15,47,53,.25); font-size: .78rem; font-weight: 850; }
.floating-help > span:first-child { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); background: var(--peach); border-radius: 50%; }
.cookie-banner { position: fixed; z-index: 80; left: 20px; right: 20px; bottom: 20px; max-width: 920px; margin: auto; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { color: var(--ink); }
.cookie-banner p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }
.cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.toast { position: fixed; z-index: 100; top: 110px; right: 22px; max-width: 380px; padding: 15px 18px; color: var(--white); background: var(--ink); border-radius: 13px; box-shadow: var(--shadow); transition: .35s; }
.toast-success { background: #26735b; }
.toast-error { background: #a54035; }
.toast-warning { background: #8c6b24; }
.toast.is-hiding { opacity: 0; transform: translateY(-10px); }
.simple-page { min-height: 68vh; padding: 110px 0; display: grid; place-items: center; }
.simple-page img { width: 105px; margin: 0 auto 25px; }
.simple-page h1 { margin: 15px 0; color: var(--ink); font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.05em; }
.simple-page p { color: var(--muted); font-size: 1.05rem; }
.simple-page .button { margin: 10px 4px 0; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

@media (max-width: 1060px) {
  .main-nav { gap: 17px; font-size: .82rem; }
  .hero-grid { gap: 30px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 6.5vw, 4.7rem); }
  .hero-mini-emergency { right: 0; }
  .hero-mini-care { left: 0; }
  .emergency-card { grid-template-columns: 80px 1fr; }
  .emergency-list { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 30px; }
}

@media (max-width: 860px) {
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { min-height: 72px; }
  .brand-symbol { width: 40px; height: 40px; }
  .brand-name { width: 116px; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 110px 14px auto; max-height: calc(100vh - 130px); padding: 24px; display: none; align-items: stretch; flex-direction: column; gap: 5px; overflow-y: auto; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px !important; border-radius: 10px; }
  .main-nav > a:not(.button)::after { display: none; }
  .button-login { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; text-align: center; }
  .hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 440px; }
  .member-card { width: min(90%, 455px); text-align: left; }
  .split-heading, .how-grid, .store-teaser-grid, .transparency-grid { grid-template-columns: 1fr; gap: 45px; }
  .benefit-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .emergency-card { grid-template-columns: 75px 1fr; padding: 42px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .topbar { font-size: .7rem; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding-top: 67px; padding-bottom: 65px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 13.2vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 12px 20px; }
  .hero-visual { min-height: 350px; margin-top: 18px; }
  .member-card { width: 94%; min-height: 235px; padding: 22px; border-radius: 24px; }
  .member-card-top img { width: 115px; }
  .member-card-top > span { display: none; }
  .member-pet { margin: 30px 0 22px; }
  .hero-mini-card { padding: 10px 12px; }
  .hero-mini-emergency { top: 35px; right: -5px; }
  .hero-mini-care { bottom: 10px; left: -3px; }
  .pet-orbit { display: none; }
  .trust-strip-inner { min-height: 100px; flex-direction: column; justify-content: center; gap: 9px; text-align: center; }
  .trust-points { gap: 10px; font-size: .59rem; }
  .benefit-grid, .plan-grid, .store-categories-preview { grid-template-columns: 1fr; }
  .benefit-card { min-height: 290px; }
  .steps-list li { grid-template-columns: 48px 1fr; }
  .promise-card { padding: 38px 28px; align-items: flex-start; flex-direction: column; }
  .emergency-section { padding-top: 0; }
  .emergency-card { padding: 35px 25px; display: block; border-radius: 28px; }
  .emergency-symbol { width: 66px; height: 66px; margin-bottom: 25px; border-radius: 20px; }
  .emergency-list { margin-top: 30px; }
  .final-cta-inner { grid-template-columns: 55px 1fr; }
  .final-cta img { width: 54px; }
  .final-cta .button { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { flex-direction: column; }
  .floating-help > span:last-child { display: none; }
  .floating-help { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
}

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

