:root {
  --green: #54b361;
  --green-dark: #3d9450;
  --green-soft: #eef8f0;
  --purple: #40347a;
  --purple-dark: #241d48;
  --text: #1c1c24;
  --muted: #666674;
  --surface: #ffffff;
  --surface-alt: #f7faf7;
  --border: #dde7df;
  --header: rgba(255, 255, 255, .94);
  --shadow: 0 18px 50px rgba(38, 54, 42, .09);
  --shadow-soft: 0 10px 28px rgba(38, 54, 42, .07);
  --radius: 18px;
  --header-offset: 112px;
}

html[data-theme="dark"] {
  --text: #f4f2f8;
  --muted: #b8b4c2;
  --surface: #12101b;
  --surface-alt: #191624;
  --border: #312d3d;
  --header: rgba(18, 16, 27, .94);
  --green-soft: #17261b;
  --shadow: 0 18px 50px rgba(0, 0, 0, .25);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, .2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--surface); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }

h1, h2, h3 { line-height: 1.13; letter-spacing: -.035em; }
h1 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
h3 { font-size: 1.05rem; }
p { color: var(--muted); }

.anchor-section { scroll-margin-top: var(--header-offset); }
.eyebrow { display: inline-block; margin-bottom: 13px; color: var(--green-dark); font-size: .74rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
html[data-theme="dark"] .eyebrow { color: #79cf86; }
.eyebrow-light { color: #cbf0d1; }
.lead { font-size: 1.08rem; }
.section { padding: 92px 0; }
.section-soft { background: var(--surface-alt); border-block: 1px solid var(--border); }
.section-heading { max-width: 700px; margin: 0 auto 42px; text-align: center; }
.section-heading p { max-width: 590px; margin: 15px auto 0; }
.section-heading.compact { margin-bottom: 32px; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 18px; border: 1px solid transparent; border-radius: 9px; font-size: .84rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.large { min-height: 50px; padding-inline: 24px; }
.btn.full { width: 100%; }
.btn-primary { color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(84, 179, 97, .22); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { color: var(--text); background: var(--surface); border-color: var(--green); }
.btn-outline:hover { background: var(--green-soft); }
.btn-light { color: var(--purple-dark); background: #fff; }
.btn-white-outline { color: #fff; border-color: rgba(255, 255, 255, .7); background: transparent; }

.top-bar { color: #fff; background: var(--purple-dark); font-size: .72rem; }
.top-bar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-contact { display: flex; gap: 22px; }
.top-contact a { display: flex; align-items: center; gap: 7px; }
.top-contact img { width: 15px; height: 15px; object-fit: contain; filter: brightness(0) invert(1); }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--header); border-bottom: 1px solid var(--border); backdrop-filter: blur(14px); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 210px; height: 48px; object-fit: contain; object-position: left center; }
.brand-dark { display: none; }
html[data-theme="dark"] .brand-light { display: none; }
html[data-theme="dark"] .brand-dark { display: block; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.main-nav a { position: relative; font-size: .8rem; font-weight: 750; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--green-dark); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -28px; height: 3px; border-radius: 20px; background: var(--green); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.theme-toggle, .menu-button { width: 40px; height: 40px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; }
.theme-toggle { display: grid; place-items: center; border-radius: 50%; }
.theme-toggle svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .moon { display: block; }
.menu-button { display: none; padding: 9px; border-radius: 9px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
.menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-hero { padding: 42px 0 30px; margin-bottom: -30px; overflow: hidden; background: radial-gradient(circle at 82% 30%, rgba(84, 179, 97, .14), transparent 27%), linear-gradient(180deg, var(--surface-alt), var(--surface)); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.hero-copy h1 { max-width: 620px; font-size: clamp(2.4rem, 4.2vw, 3.7rem); line-height: 1.07; letter-spacing: -.045em; }
.hero-copy h1 span { color: var(--green-dark); }
.hero-copy > p { max-width: 540px; margin-top: 17px; font-size: 1rem; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.hero-benefits > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hero-benefits img { width: 31px; height: 31px; object-fit: contain; }
.hero-benefits span { min-width: 0; }
.hero-benefits strong, .hero-benefits small { display: block; }
.hero-benefits strong { font-size: .82rem; }
.hero-benefits small { color: var(--muted); font-size: .67rem; white-space: nowrap; }
.hero-actions { display: flex; gap: 12px; }
.hero-visual { position: relative; display: flex; align-items: center; padding: 22px 0; }
.hero-visual::before { content: ""; position: absolute; inset: 8% 5% 4% 12%; border: 1px solid rgba(84, 179, 97, .18); border-radius: 32px; background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(238, 248, 240, .38)); box-shadow: 0 24px 60px rgba(31, 50, 36, .1); transform: rotate(-2deg); }
.hero-visual img { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 18px 24px rgba(31, 50, 36, .12)); }
html[data-theme="dark"] .hero-visual::before { background: linear-gradient(145deg, rgba(49, 45, 61, .72), rgba(23, 38, 27, .42)); }
.stat-strip { position: relative; transform: translateY(30px); display: grid; grid-template-columns: repeat(6, 1fr); color: #fff; background: linear-gradient(135deg, var(--purple-dark), var(--purple)); border-radius: 15px; box-shadow: var(--shadow); overflow: hidden; }
.stat-strip > div { min-height: 82px; padding: 15px 12px; display: flex; align-items: center; justify-content: center; gap: 9px; text-align: left; border-right: 1px solid rgba(255, 255, 255, .13); }
.stat-strip > div:last-child { border-right: 0; }
.stat-strip img { width: 27px; height: 27px; object-fit: contain; filter: brightness(0) invert(1); }
.stat-strip strong, .stat-strip small { display: block; }
.stat-strip strong { font-size: .84rem; }
.stat-strip small { opacity: .72; font-size: .65rem; }
.home-hero + .section { padding-top: 105px; }

.intro-split h2 { max-width: 430px; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-points span { padding: 8px 12px; color: var(--purple); border: 1px solid var(--border); border-radius: 999px; background: var(--surface-alt); font-size: .75rem; font-weight: 750; }
html[data-theme="dark"] .about-points span { color: #c3bbf3; }

.feature-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-page-grid article { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 24px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.feature-page-grid img { width: 40px; height: 40px; object-fit: contain; }
.feature-page-grid h3 { margin: 2px 0 7px; }
.feature-page-grid p { font-size: .84rem; }
.feature-showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; margin-top: 58px; }
.feature-visual { padding: 25px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface-alt); }
.feature-visual img { width: 100%; border-radius: 14px; box-shadow: var(--shadow-soft); }
.feature-copy h2 { margin-bottom: 18px; }
.feature-copy > p { margin-bottom: 22px; }
.check-list { display: grid; gap: 11px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.module-photo { width: 100%; height: 170px; object-fit: cover; }
.module-card-body { position: relative; padding: 25px; }
.module-icon { position: absolute; top: -28px; right: 22px; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-soft); }
.module-icon img { width: 30px; height: 30px; object-fit: contain; }
.module-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.module-card p { min-height: 48px; font-size: .88rem; }
.module-card a { display: inline-flex; gap: 7px; margin-top: 16px; color: var(--purple); font-size: .8rem; font-weight: 800; }
.module-card a span { transition: transform .2s ease; }
.module-card a:hover span { transform: translateX(4px); }
html[data-theme="dark"] .module-card a { color: #b8aff0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-grid article { padding: 28px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.steps-grid strong { color: var(--green); font-size: .82rem; }
.steps-grid h3 { margin: 13px 0 8px; }
.steps-grid p { font-size: .84rem; }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.advantage-grid article { padding: 26px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.advantage-grid img { width: 39px; height: 39px; object-fit: contain; margin-bottom: 16px; }
.advantage-grid h3 { margin-bottom: 8px; }
.advantage-grid p { font-size: .84rem; }

.faq-preview-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.faq-preview-grid > div:first-child p { margin: 18px 0 25px; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.faq-list summary { padding: 19px 21px; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--green); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 21px 19px; font-size: .88rem; }

.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; align-items: stretch; }
.contact-panel, .contact-form { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.contact-panel { position: relative; padding: 38px; overflow: hidden; }
.contact-map { display: block; width: calc(100% + 76px); max-width: none; aspect-ratio: 809 / 379; margin: -38px -38px 30px; border-bottom: 1px solid var(--border); object-fit: cover; object-position: center; }
.contact-panel > p { margin: 15px 0 28px; }
.contact-lines { display: grid; gap: 10px; position: relative; z-index: 2; }
.contact-lines > * { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface); }
.contact-lines img { width: 28px; height: 28px; object-fit: contain; }
.contact-lines strong, .contact-lines small { display: block; }
.contact-lines strong { font-size: .8rem; }
.contact-lines small { color: var(--muted); font-size: .74rem; }
.contact-person { position: absolute; right: -20px; bottom: -28px; width: 180px; opacity: .13; }
.contact-form { padding: 38px; }
.form-heading { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; }
.contact-form label > span, .captcha-field > div > span { display: block; margin-bottom: 7px; color: var(--text); font-size: .75rem; font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 13px; color: var(--text); border: 1px solid var(--border); border-radius: 9px; outline: 0; background: var(--surface-alt); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(84, 179, 97, .12); }
.contact-form > label { margin-top: 15px; }
.captcha-field { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; margin: 15px 0; }
.captcha-field > input[type="hidden"] { display: none; }
.captcha-field strong { display: flex; align-items: center; height: 46px; padding: 0 18px; letter-spacing: .18em; border: 1px dashed var(--green); border-radius: 9px; background: var(--green-soft); }
.captcha-refresh { height: 46px; padding: 0 14px; color: var(--purple); border: 1px solid var(--border); border-radius: 9px; background: var(--surface); font-size: .74rem; font-weight: 800; cursor: pointer; }
html[data-theme="dark"] .captcha-refresh { color: #c3bbf3; }
.form-status { min-height: 0; margin-top: 12px; padding: 0; border-radius: 9px; font-size: .82rem; }
.form-status.success, .form-status.error { min-height: auto; padding: 12px 14px; }
.form-status.success { color: #fff; background: #2456a6; }
.form-status.error { color: #9c3232; background: #fbecec; }
html[data-theme="dark"] .form-status.success { color: #fff; background: #3471c8; }
html[data-theme="dark"] .form-status.error { color: #f2b3b3; background: #3a1b1b; }
.form-note { margin-top: 11px; text-align: center; font-size: .69rem; }

.cta-strip { padding: 62px 0; color: #fff; background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.cta-strip h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
.cta-strip p { max-width: 650px; margin-top: 12px; color: rgba(255, 255, 255, .76); }
.cta-actions { display: flex; flex: 0 0 auto; gap: 11px; }

.legal-section { padding: 72px 0; }
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.legal-grid details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface-alt); overflow: hidden; }
.legal-grid summary { padding: 20px; cursor: pointer; font-weight: 800; list-style: none; }
.legal-grid summary::-webkit-details-marker { display: none; }
.legal-grid summary::after { content: "+"; float: right; color: var(--green); }
.legal-grid details[open] summary::after { content: "−"; }
.legal-grid details > div { padding: 0 20px 20px; }
.legal-grid p { font-size: .82rem; }
.legal-grid p + p { margin-top: 10px; }
.legal-grid a { color: var(--green-dark); font-weight: 700; }

.policy-hero { padding: 62px 0 46px; text-align: center; background: linear-gradient(180deg, var(--surface-alt), var(--surface)); border-bottom: 1px solid var(--border); }
.policy-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.policy-hero p { max-width: 620px; margin: 14px auto 0; }
.policy-content { padding: 66px 0 84px; }
.policy-article { max-width: 860px; margin: auto; }
.policy-article h2 { margin: 34px 0 12px; font-size: 1.35rem; letter-spacing: -.02em; }
.policy-article h2:first-child { margin-top: 0; }
.policy-article h3 { margin: 22px 0 8px; }
.policy-article p, .policy-article li { color: var(--muted); font-size: .92rem; }
.policy-article p + p { margin-top: 12px; }
.policy-article ul { margin: 12px 0 0 20px; }
.policy-article li + li { margin-top: 8px; }
.policy-article a { color: var(--green-dark); font-weight: 700; }

.site-footer { padding-top: 62px; background: var(--surface-alt); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr .9fr 1.1fr; gap: 36px; padding-bottom: 46px; }
.footer-grid h3 { margin-bottom: 15px; font-size: .85rem; letter-spacing: 0; }
.footer-grid a, .footer-grid p { display: block; margin: 8px 0; color: var(--muted); font-size: .76rem; }
.footer-grid a:hover { color: var(--green-dark); }
.footer-brand .brand img { width: 205px; }
.footer-brand p { max-width: 270px; margin-top: 15px; }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .72rem; }
.powered { display: flex; align-items: center; gap: 8px; }
.powered img { width: 70px; max-height: 28px; object-fit: contain; }

.whatsapp-float, .back-to-top { position: fixed; z-index: 90; width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border: 0; border-radius: 50%; cursor: pointer; box-shadow: 0 12px 25px rgba(0, 0, 0, .18); }
.whatsapp-float { left: 22px; bottom: 22px; background: #25d366; }
.whatsapp-float svg { width: 25px; fill: currentColor; }
.back-to-top { right: 22px; bottom: 22px; background: var(--purple); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .2s ease; }
.back-to-top svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1120px) {
  .brand img { width: 185px; }
  .main-nav { gap: 13px; }
  .main-nav a { font-size: .76rem; }
  .login-button { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-strip > div:nth-child(3) { border-right: 0; }
  .stat-strip > div:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .feature-page-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-offset: 104px; }
  .top-bar-inner > span { display: none; }
  .top-contact { width: 100%; justify-content: center; }
  .header-inner { min-height: 68px; }
  .brand img { width: 170px; height: 43px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 100%; left: 18px; right: 18px; display: none; margin-left: 0; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 10px 12px; font-size: .84rem; }
  .main-nav a.active::after { display: none; }
  .header-actions { margin-left: auto; }
  .demo-button { display: none; }
  .hero-grid, .split, .feature-showcase, .faq-preview-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .home-hero { padding-top: 36px; padding-bottom: 24px; margin-bottom: -24px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-benefits { max-width: 590px; margin-inline: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: auto; }
  .stat-strip { transform: translateY(24px); }
  .home-hero + .section { padding-top: 92px; }
  .split { gap: 25px; }
  .feature-showcase { gap: 35px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-preview-grid { gap: 34px; }
  .contact-page-grid { gap: 25px; }
  .cta-strip-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-offset: 98px; }
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 70px 0; }
  .top-contact { gap: 14px; font-size: .65rem; }
  .top-contact a:nth-child(2), .top-contact a:nth-child(3) { display: none; }
  .brand img { width: 148px; }
  .theme-toggle, .menu-button { width: 38px; height: 38px; }
  .home-hero { padding-top: 28px; }
  .hero-copy h1 { font-size: 2.25rem; }
  .hero-benefits { grid-template-columns: 1fr; max-width: 270px; gap: 10px; }
  .hero-benefits small { white-space: normal; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div { min-height: 90px; padding: 15px 10px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .stat-strip > div:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .13); }
  .stat-strip > div:nth-child(even) { border-right: 0; }
  .stat-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .about-points { display: grid; }
  .feature-page-grid, .module-grid, .steps-grid, .advantage-grid, .form-grid { grid-template-columns: 1fr; }
  .feature-page-grid article { padding: 22px; }
  .module-photo { height: 190px; }
  .contact-panel, .contact-form { padding: 27px; }
  .contact-map { width: calc(100% + 54px); margin: -27px -27px 25px; }
  .captcha-field { grid-template-columns: 1fr; }
  .captcha-field > div { grid-column: 1 / -1; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { padding: 17px 0; flex-direction: column; align-items: flex-start; }
  .whatsapp-float { left: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

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