:root {
  --navy-950: #07152b;
  --navy-900: #0b1f3a;
  --navy-800: #12355b;
  --blue-700: #175cd3;
  --blue-100: #eaf2ff;
  --saffron: #f4a621;
  --saffron-soft: #fff4dc;
  --green: #13795b;
  --green-dark: #0d5f47;
  --ink: #172033;
  --muted: #5d6b82;
  --line: #dce3ed;
  --surface: #f5f7fb;
  --white: #fff;
  --danger: #a53b32;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px rgba(7, 21, 43, .10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: var(--blue-700); }
a:hover { color: var(--navy-800); }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(244, 166, 33, .8); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; transform: translateY(-160%); padding: 10px 14px; color: var(--white); background: var(--navy-950); border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid rgba(220, 227, 237, .85); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-950); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--blue-700)); box-shadow: 0 9px 22px rgba(23,92,211,.22); }
.brand-mark svg { width: 24px; height: 24px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .67rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.button) { color: var(--navy-900); text-decoration: none; font-size: .94rem; font-weight: 650; }
.nav-links > a:not(.button):hover { color: var(--blue-700); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--navy-900); }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 13px; font-weight: 750; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green); box-shadow: 0 12px 28px rgba(19,121,91,.22); }
.button-primary:hover { color: var(--white); background: var(--green-dark); }
.button-secondary { color: var(--navy-900); background: var(--white); border-color: var(--line); }
.button-secondary:hover { color: var(--navy-900); box-shadow: 0 10px 24px rgba(7,21,43,.08); }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .9rem; }
.button svg { width: 19px; height: 19px; }

.hero { position: relative; overflow: hidden; padding: 88px 0 72px; background: linear-gradient(135deg, #f7faff 0%, #fff 52%, #fff7e8 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; top: -300px; right: -120px; border: 90px solid rgba(23,92,211,.06); border-radius: 50%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 74px; }
.hero-grid > *, .value-grid > *, .pricing-wrap > * { min-width: 0; }
.eyebrow { max-width: 100%; display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 7px 12px; border: 1px solid #cadbfa; border-radius: 999px; color: var(--blue-700); background: rgba(234,242,255,.75); font-size: .78rem; font-weight: 800; letter-spacing: .06em; line-height: 1.35; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 4px rgba(244,166,33,.17); }
h1, h2, h3 { margin-top: 0; color: var(--navy-950); line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 740px; margin-bottom: 22px; font-size: clamp(2.7rem, 5.4vw, 5.2rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.4vw, 3.15rem); }
h3 { margin-bottom: 10px; font-size: 1.2rem; }
.hero-lead { max-width: 680px; margin: 0 0 28px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.language-options { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -8px 0 24px; }
.language-options > span { margin-right: 3px; color: var(--muted); font-size: .8rem; font-weight: 750; }
.language-options a { padding: 6px 11px; border: 1px solid #cbd9ec; border-radius: 999px; color: var(--navy-800); background: rgba(255,255,255,.7); font-size: .8rem; font-weight: 800; text-decoration: none; }
.language-options a:hover { border-color: var(--blue-700); color: var(--blue-700); background: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.consent-note { max-width: 650px; margin: 12px 0 0; color: var(--muted); font-size: .73rem; }
.consent-note a { font-weight: 700; }
.reassurance { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 25px 0 0; padding: 0; color: var(--muted); font-size: .86rem; list-style: none; }
.reassurance li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.chat-shell { position: relative; width: min(100%, 470px); margin-left: auto; padding: 17px; border: 1px solid rgba(255,255,255,.75); border-radius: 30px; background: rgba(255,255,255,.66); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.chat-card { overflow: hidden; border: 1px solid #d7e0eb; border-radius: 22px; background: #f2f5f4; }
.chat-head { display: flex; align-items: center; gap: 11px; padding: 15px 17px; color: var(--white); background: var(--navy-900); }
.chat-avatar { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-900); background: var(--saffron); font-weight: 900; }
.chat-head strong { display: block; line-height: 1.1; }
.chat-head small { color: #ccd7e6; }
.chat-body { min-height: 340px; padding: 19px 15px 10px; background-image: radial-gradient(#dbe4e0 1px, transparent 1px); background-size: 22px 22px; }
.bubble { width: fit-content; max-width: 86%; margin: 0 0 12px; padding: 11px 13px; border-radius: 5px 15px 15px 15px; background: var(--white); box-shadow: 0 3px 10px rgba(7,21,43,.07); font-size: .88rem; }
.bubble.user { margin-left: auto; border-radius: 15px 5px 15px 15px; background: #dcf8e8; }
.quick-options { display: grid; gap: 7px; margin-top: 10px; }
.quick-options span { padding: 9px 11px; border: 1px solid #c9d8e2; border-radius: 10px; color: var(--navy-800); background: #f8fbfd; font-weight: 700; }
.chat-foot { padding: 11px 14px 14px; color: var(--muted); background: var(--white); font-size: .75rem; text-align: center; }
.language-chip { position: absolute; right: -22px; bottom: 42px; padding: 10px 14px; border-radius: 12px; color: var(--navy-900); background: var(--saffron-soft); box-shadow: 0 12px 30px rgba(7,21,43,.13); font-size: .82rem; font-weight: 800; transform: rotate(-2deg); }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 25px 23px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-900); font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.section { padding: 92px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: #e9eef7; background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 730px; margin: 0 auto 46px; text-align: center; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-head p { color: #b8c5d8; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step-card { position: relative; padding: 27px 23px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.step-card::before { counter-increment: step; content: counter(step); width: 37px; height: 37px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 11px; color: var(--navy-950); background: var(--saffron); font-weight: 900; }
.step-card p, .category-card p, .feature-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 188px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.category-card { display: block; color: inherit; text-decoration: none; }
.category-card:hover { transform: translateY(-4px); border-color: #b9c9e2; box-shadow: 0 14px 32px rgba(7,21,43,.08); }
.category-card:hover h3 { color: var(--blue-700); }
.category-action { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--blue-700); font-size: .79rem; font-weight: 800; }
.category-action::after { content: "→"; transition: transform .18s ease; }
.category-card:hover .category-action::after { transform: translateX(3px); }
.icon-box { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: var(--blue-700); background: var(--blue-100); font-size: 1.25rem; font-weight: 900; }
.icon-box svg { width: 22px; height: 22px; }
.category-card:nth-child(3n+2) .icon-box { color: #865600; background: var(--saffron-soft); }
.category-card:nth-child(3n) .icon-box { color: var(--green); background: #e8f7f1; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.check-list { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; color: var(--green); background: #e8f7f1; font-size: .8rem; font-weight: 900; }
.information-card { position: relative; padding: 34px; overflow: hidden; border: 1px solid #cad8ef; border-radius: var(--radius-lg); background: linear-gradient(145deg, #f8fbff, #edf4ff); }
.information-card::after { content: "§"; position: absolute; right: 18px; bottom: -50px; color: rgba(23,92,211,.08); font-family: Georgia, serif; font-size: 190px; font-weight: 800; }
.info-row { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid #d5e0f2; }
.info-row:last-child { border-bottom: 0; }
.info-row strong { color: var(--navy-900); }
.info-row span { color: var(--muted); font-size: .86rem; }

.pricing-wrap { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 26px; }
.price-card { padding: 37px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); box-shadow: var(--shadow); }
.price-card h3 { color: var(--white); font-size: 1.45rem; }
.price { margin: 20px 0 4px; font-size: 3.35rem; font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.price-note { color: #cbd6e5; font-size: .86rem; }
.price-card .check-list li { color: #e5ebf4; }
.price-card .check-list li::before { color: var(--navy-900); background: var(--saffron); }
.price-card .button { width: 100%; margin-top: 28px; }
.price-explainer { padding: 37px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.price-explainer dl { display: grid; gap: 0; margin: 22px 0 0; }
.price-explainer dl > div { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.price-explainer dl > div:last-child { border-bottom: 0; }
.price-explainer dt { color: var(--navy-900); font-weight: 800; }
.price-explainer dd { margin: 0; color: var(--muted); }

.safety-banner { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 27px; border: 1px solid #f0cfcb; border-radius: var(--radius); background: #fff7f6; }
.safety-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--danger); background: #fbe5e2; font-size: 1.35rem; font-weight: 900; }
.safety-banner h3 { margin-bottom: 6px; }
.safety-banner p { margin: 0; color: #704842; }
.safety-banner a { color: var(--danger); font-weight: 800; }

.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.feature-card h3 { margin-top: 17px; }
.feature-card p { color: #b8c5d8; }
.feature-card .icon-box { color: var(--saffron); background: rgba(244,166,33,.12); }

.faq { max-width: 850px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; color: var(--navy-950); background: transparent; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question::after { content: "+"; flex: 0 0 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--blue-700); background: var(--blue-100); font-size: 1.2rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 50px 22px 0; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-answer.open { display: block; }
#faq { padding-bottom: 52px; }
#faq + .section { padding-top: 52px; }

.final-cta { position: relative; overflow: hidden; padding: 62px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--blue-700), var(--navy-900)); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 55px solid rgba(255,255,255,.06); border-radius: 50%; }
.final-cta::before { width: 260px; height: 260px; top: -200px; left: -90px; }
.final-cta::after { width: 180px; height: 180px; right: -120px; bottom: -140px; }
.final-cta h2 { position: relative; margin-bottom: 13px; color: var(--white); }
.final-cta p { position: relative; max-width: 660px; margin: 0 auto 25px; color: #dce6f5; }
.final-cta .button { position: relative; }

.site-footer { padding: 58px 0 28px; color: #b9c5d6; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 40px; padding-bottom: 42px; }
.footer-brand p { max-width: 390px; color: #aebdd0; font-size: .9rem; }
.site-footer .brand { color: var(--white); }
.site-footer .brand-copy small { color: #aebdd0; }
.footer-col h3 { margin-bottom: 16px; color: var(--white); font-size: .95rem; letter-spacing: 0; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: #b9c5d6; font-size: .87rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #91a3ba; font-size: .78rem; }
.footer-bottom a { color: #b9c5d6; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 70; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border: 3px solid var(--white); border-radius: 999px; color: var(--white); background: var(--green); box-shadow: 0 12px 28px rgba(7,21,43,.26); font-size: .87rem; font-weight: 850; text-decoration: none; }
.floating-whatsapp:hover { color: var(--white); background: var(--green-dark); transform: translateY(-3px); }
.floating-whatsapp svg { width: 27px; height: 27px; }

.legal-hero { padding: 67px 0 54px; background: linear-gradient(135deg, #f5f9ff, #fff9ee); }
.legal-hero h1 { max-width: 850px; margin-bottom: 14px; font-size: clamp(2.25rem, 4vw, 3.8rem); }
.legal-hero p { max-width: 780px; margin: 0; color: var(--muted); }
.last-updated { display: inline-flex; margin-top: 20px; padding: 7px 11px; border-radius: 9px; color: var(--navy-800); background: var(--white); border: 1px solid var(--line); font-size: .78rem; font-weight: 750; }
.legal-layout { display: grid; grid-template-columns: 235px minmax(0, 800px); justify-content: center; gap: 55px; padding: 64px 0 90px; }
.legal-toc { position: sticky; top: 104px; align-self: start; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.legal-toc strong { display: block; margin-bottom: 10px; color: var(--navy-900); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.legal-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: .83rem; text-decoration: none; }
.legal-toc a:hover { color: var(--blue-700); }
.legal-content { min-width: 0; }
.legal-intro { padding: 22px; border-left: 4px solid var(--saffron); border-radius: 0 12px 12px 0; background: var(--saffron-soft); }
.legal-content section { padding-top: 31px; scroll-margin-top: 95px; }
.legal-content h2 { margin-bottom: 12px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal-content h3 { margin-top: 23px; font-size: 1.05rem; letter-spacing: -.01em; }
.legal-content p, .legal-content li { color: #445168; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin: 8px 0; }
.legal-content .notice { padding: 18px; border: 1px solid #cad8ef; border-radius: var(--radius-sm); background: #f3f7ff; }
.contact-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }

.question-hero { padding-bottom: 62px; }
.service-boundary { max-width: 820px; margin-top: 25px; padding: 17px 19px; border: 1px solid #cad8ef; border-radius: var(--radius-sm); color: #34435a; background: rgba(255,255,255,.82); }
.service-boundary strong { color: var(--navy-900); }
.question-section { background: var(--surface); }
.question-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 56px; }
.question-lead { color: var(--muted); font-size: 1.02rem; }
.preparation-list { display: grid; gap: 18px; margin: 30px 0; }
.preparation-list article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; }
.preparation-list article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--navy-950); background: var(--saffron); font-weight: 900; }
.preparation-list h3 { margin: 1px 0 5px; font-size: 1rem; }
.preparation-list p { margin: 0; color: var(--muted); font-size: .9rem; }
.compact-safety { margin-top: 28px; padding: 21px; }
.question-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 45px rgba(7,21,43,.08); }
.form-heading { padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.form-heading h2 { margin: 7px 0 8px; font-size: 1.8rem; }
.form-heading p { margin: 0; color: var(--muted); font-size: .9rem; }
.form-step { color: var(--blue-700); font-size: .73rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.form-field { margin-top: 22px; }
.form-field label { display: block; margin-bottom: 8px; color: var(--navy-900); font-size: .86rem; font-weight: 800; }
.form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #b8c4d5; border-radius: 10px; color: var(--navy-900); background: var(--white); font: inherit; }
.form-field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(23,92,211,.2); border-color: var(--blue-700); }
.form-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-meta { display: flex; justify-content: space-between; gap: 15px; margin-top: 6px; color: var(--muted); font-size: .73rem; }
.consent-check { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin: 23px 0 0; color: #445168; font-size: .82rem; line-height: 1.5; }
.consent-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue-700); }
.form-submit { width: 100%; margin-top: 22px; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: .74rem; }
.form-status { min-height: 1.25em; margin: 10px 0 0; color: var(--green-dark); font-size: .8rem; font-weight: 750; }
.three-steps { grid-template-columns: repeat(3, 1fr); }
.section-dark .three-steps .step-card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.055); }
.section-dark .three-steps .step-card h3 { color: var(--white); }
.section-dark .three-steps .step-card p { color: #b8c5d8; }

@media (max-width: 980px) {
  .hero-grid, .value-grid, .pricing-wrap, .question-layout { grid-template-columns: 1fr; gap: 45px; }
  .chat-shell { margin: 0 auto; }
  .steps, .categories { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .menu-button { display: block; }
  .nav-links { position: fixed; inset: 68px 0 auto; display: none; align-items: stretch; gap: 0; padding: 18px 20px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 30px rgba(7,21,43,.12); }
  .nav-links.open { display: grid; }
  .nav-links > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav-links .button { margin-top: 14px; }
  .hero { padding: 60px 0 55px; }
  .hero-grid { gap: 42px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .language-chip { right: -3px; bottom: 26px; }
  .section { padding: 70px 0; }
  .steps, .categories, .privacy-grid, .three-steps { grid-template-columns: 1fr; }
  .category-card { min-height: auto; }
  .price-card, .price-explainer { padding: 27px 23px; }
  .price-explainer dl > div { grid-template-columns: 1fr; gap: 3px; }
  .safety-banner { grid-template-columns: 1fr; }
  .final-cta { padding: 46px 21px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; padding-top: 38px; }
  .legal-toc { position: static; }
  .question-form { padding: 27px 22px; }
  .form-grid-two { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 520px) {
  .brand-copy small { display: none; }
  .hero-actions .button { width: 100%; }
  .language-options > span { width: 100%; }
  .eyebrow { border-radius: 13px; font-size: .7rem; letter-spacing: .045em; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.25rem); overflow-wrap: anywhere; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .chat-body { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-whatsapp { right: 12px; bottom: 12px; min-height: 52px; padding: 0 14px; font-size: .8rem; }
  .floating-whatsapp svg { width: 23px; height: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header, .site-footer, .floating-whatsapp, .legal-toc, .button { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .legal-hero { padding: 0 0 20px; background: none; }
  .legal-layout { display: block; padding: 0; }
  .legal-content { max-width: none; }
  .legal-content section { break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}
