:root {
  --bg: #ffffff;
  --bg-alt: #f2f5fb;
  --text: #0b1220;
  --muted: #556070;
  --brand: #11a44b;
  --brand-2: #0b6a33;
  --navy: #071b3a;
  --header: #0d141a;
  --card: #ffffff;
  --border: rgba(13, 25, 45, 0.12);
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --gutter: 20px;
  --focus: 0 0 0 3px rgba(17, 164, 75, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

.site-header,
main,
.footer,
.section,
.hero {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--bg);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  outline: none;
  box-shadow: var(--focus);
}

.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0d141a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.is-elevated {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.brand img {
  width: 170px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-desktop {
  justify-content: center;
}
.nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 10px;
  border-radius: 10px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav a.is-selected {
  background: rgba(255, 255, 255, 0.08);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.social:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.social:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.social img {
  width: 22px;
  height: 22px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.nav-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255, 255, 255, 0.9);
  margin: 4px auto;
  border-radius: 3px;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
}
.mobile-menu.is-open {
  display: grid;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--header);
  z-index: 70;
  padding: 22px;
  grid-template-rows: auto 1fr auto;
}
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-close {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 36px;
  line-height: 0;
  cursor: pointer;
}
.mobile-close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.nav-mobile {
  align-self: center;
  display: grid;
  justify-items: end;
  gap: 16px;
  padding-right: 8px;
}
.nav-mobile a {
  font-size: 30px;
  padding: 10px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mobile-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-right: 8px;
}
.mobile-social .social {
  width: 52px;
  height: 52px;
}
.mobile-social .social img {
  width: 34px;
  height: 34px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
  max-width: 100%;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus {
  outline: none;
  box-shadow: var(--focus);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.06);
}
.btn-primary:hover {
  background: #0f9a44;
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover {
  background: #06234f;
}
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.92);
}
.btn-light:hover {
  background: var(--navy);
  color: #fff;
  border-color: rgba(7, 27, 58, 0.75);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.96);
}
.section .btn-ghost,
.section-alt .btn-ghost,
.cta .btn-ghost {
  background: transparent;
  border-color: rgba(7, 27, 58, 0.18);
  color: var(--navy);
}
.btn-ghost:hover {
  background: rgba(7, 27, 58, 0.06);
}

.link {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  height: 700px;
  min-height: 700px;
  padding: 66px 0 96px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 27, 58, 0.82), rgba(7, 27, 58, 0.22)),
    url("./imgs/bg-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 430px);
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: 978px;
  margin-inline: auto;
  justify-content: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 620px;
}
.lead {
  margin: 0 0 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.hero-actions .btn {
  width: min(100%, 360px);
  min-height: 56px;
  font-size: 18px;
  white-space: nowrap;
}

.hero-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.20);
  width: 100%;
  max-width: 430px;
  justify-self: center;
}
.hero-card-inner {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.hero-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  width: 100%;
}
.hero-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  width: 100%;
}
.hero-card-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 320px);
  margin-inline: auto;
  margin-bottom: 0;
}
.hero-card-actions .btn {
  width: 100%;
  min-height: 56px;
  font-size: 18px;
}
.hero-card-note {
  width: min(100%, 320px);
  display: block;
  margin: 0;
  margin-inline: auto;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: min(100%, 320px);
  margin-inline: auto;
}
.mini {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 78px;
  min-height: 78px;
  padding: 10px 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mini strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}
.mini span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

/* Sections */
.section {
  padding: 66px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section-head {
  text-align: center;
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0 auto;
  max-width: 72ch;
  color: var(--muted);
}
.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}
.split-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.02em;
}
.split-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}
.checklist {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.inline-actions .btn-primary {
  min-width: 300px;
  padding-inline: 30px;
}
.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.stat {
  padding: 14px;
}
.stat + .stat {
  border-left: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* Problems */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.problem {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}
.problem img {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.problem h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.problem p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.center-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8edf7;
}
.card-body {
  padding: 14px 14px 16px;
}
.card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Brands */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  margin: 18px 0 8px;
}
.brand-logo {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}
.brand-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.05);
}

/* Map */
.map-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.map {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 340px;
  border: 0;
}
.map-copy {
  padding: 10px 2px;
}
.map-copy h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.stars {
  color: #1b4fd6;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonial p {
  margin: 0 0 10px;
  color: var(--muted);
}
.who {
  font-weight: 800;
  color: var(--navy);
}

/* FAQ */
.faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--navy);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:focus {
  outline: none;
  box-shadow: var(--focus);
}
.faq-body {
  padding: 0 16px 16px;
  color: var(--muted);
}
.faq-body p {
  margin: 0;
}

/* CTA / Contact */
.cta {
  background: linear-gradient(180deg, rgba(7, 27, 58, 0.06), rgba(7, 27, 58, 0));
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.02em;
}
.cta-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-card-wide {
  grid-column: 1 / -1;
}
.contact-card-wide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.contact-card-wide-row .muted {
  margin: 0;
  flex: 1;
}
.contact-card-wide .btn {
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 220px;
}
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.contact-card p {
  margin: 0 0 12px;
  font-size: 13px;
}

.form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}
.form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 12px;
}
.form input,
.form textarea {
  border-radius: 12px;
  border: 1px solid rgba(13, 25, 45, 0.18);
  padding: 12px 12px;
  background: #fff;
  color: var(--text);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(17, 164, 75, 0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form-note {
  margin: 0;
  font-size: 12px;
}

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 46px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-brand img {
  width: 160px;
  height: auto;
}
.footer-links h3,
.footer-news h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.footer-links a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}
.newsletter input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.newsletter input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 164, 75, 0.3);
  border-color: rgba(17, 164, 75, 0.55);
}

.footer-legal {
  margin-top: 18px;
  text-align: right;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
}

.footer-legal a {
  color: rgba(255,255,255,0.58);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.82);
}

.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 18px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-inner {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
}
.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: ;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  z-index: 80;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.whatsapp-float:hover {
  transform: translateY(-1px);
}
.whatsapp-float:focus {
  outline: none;
  box-shadow: var(--focus);
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .map-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    height: auto;
    min-height: 700px;
    padding: 96px 0 72px;
  }
  .hero-card {
    max-width: 520px;
  }
  .hero-actions .btn,
  .hero-card-actions,
  .hero-card-note,
  .mini-grid {
    width: 100%;
  }
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card-wide {
    grid-column: auto;
  }
  .contact-card-wide-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-card-wide .btn {
    width: 100%;
    min-width: 0;
  }
  .footer-legal {
    justify-content: flex-start;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-desktop,
  .header-social {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }
  .hero {
    min-height: auto;
    padding: 88px 0 56px;
  }
  .hero-grid {
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  .hero-copy,
  .hero-card {
    justify-self: center;
  }
  .hero-copy {
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.3;
    max-width: 400px;
    margin: 0 auto 12px;
  }
  .lead {
    max-width: 28ch;
  }
  .hero h1 {
    font-size: 27px;
    line-height: 1.08;
    max-width: 290px;
    margin-inline: auto;
  }
  .hero-actions {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 90%;
    padding-inline: 20px;
    font-size: 16px;
    white-space: nowrap;
  }
  .hero-card-actions .btn {
    font-size: 16px;
  }
  .hero-card {
    width: 100%;
    max-width: 100%;
  }
  .hero-card-actions,
  .hero-card-note,
  .mini-grid {
    width: 100%;
    max-width: 100%;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .nav-mobile a {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}
.mobile-menu {
  padding-bottom: 92px;
}

body.no-scroll .whatsapp-float {
  display: none;
}
