:root {
  --bg: #f6f7fb;
  --paper: #ffffff;
  --ink: #171a2f;
  --muted: #697085;
  --line: rgba(23, 26, 47, 0.13);
  --blue: #293082;
  --blue-dark: #181e63;
  --red: #e50920;
  --red-dark: #ba0618;
  --soft-blue: #edf0ff;
  --soft-red: #fff0f2;
  --shadow: 0 24px 70px rgba(23, 26, 47, 0.13);
  --header-offset: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(310px, 56vw);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 900;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
}

.whatsapp-cta {
  padding: 10px 14px;
  color: #1d7b45;
  background: #eaf8ef;
  border: 1px solid rgba(29, 123, 69, 0.2);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(246, 247, 251, 0.98) 0%, rgba(246, 247, 251, 0.9) 54%, rgba(237, 240, 255, 0.96) 100%),
    radial-gradient(circle at 86% 16%, rgba(229, 9, 32, 0.16), transparent 28%);
}

.hero-copy {
  grid-row: 1 / span 2;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 7.4vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
}

.hero-copy p,
.intro > p,
.categories p,
.compliance p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-copy h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.contact-copy p {
  font-size: clamp(1.1rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(229, 9, 32, 0.2);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-pills span {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-panel {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(229, 9, 32, 0.45), transparent 28%),
    linear-gradient(145deg, var(--blue), #171c64);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.panel-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 8px;
  color: #fff;
  background: rgba(229, 9, 32, 0.92);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 30px;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.proof-numbers {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 26, 47, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(23, 26, 47, 0.12);
  backdrop-filter: blur(18px);
}

.proof-numbers article {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  border: 1px solid rgba(23, 26, 47, 0.09);
  border-radius: 8px;
}

.proof-numbers article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
}

.proof-numbers article:nth-child(even)::before {
  background: var(--blue);
}

.proof-numbers strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2.05rem, 3vw, 3.1rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.proof-numbers article:nth-child(even) strong {
  color: var(--red);
}

.proof-numbers span {
  display: block;
  max-width: 13rem;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.22;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 70px);
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

.intro,
.categories,
.compliance,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro,
.seo-faq {
  background: #fff;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(232, 5, 35, 0.22), transparent 30%),
    linear-gradient(135deg, #20276e 0%, #30398a 55%, #20276e 100%);
}

.benefits article {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(10, 13, 45, 0.22);
}

.benefits article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.benefit-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 54px;
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(232, 5, 35, 0.3);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits h3,
.benefits p {
  position: relative;
  z-index: 1;
}

.benefits h3 {
  font-size: 1.25rem;
}

.benefits p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.audience-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid div,
.steps div,
.lead-form,
.compliance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(23, 26, 47, 0.08);
}

.audience-grid div,
.steps div {
  padding: 24px;
}

.audience-grid strong,
.audience-grid span {
  display: block;
}

.audience-grid span,
.steps p {
  margin-top: 7px;
  color: var(--muted);
}

.categories {
  background: var(--soft-blue);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-list span {
  padding: 14px 18px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(41, 48, 130, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.brand-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 5, 35, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f8ff 52%, #eef1ff 100%);
}

.brand-showcase .section-heading {
  max-width: 980px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.brand-showcase .section-heading p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-grid span {
  display: grid;
  min-height: 92px;
  padding: 18px 16px;
  place-items: center;
  text-align: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(41, 48, 130, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 26, 47, 0.08);
  font-size: clamp(1.02rem, 1.6vw, 1.34rem);
  font-weight: 1000;
  letter-spacing: 0.05em;
}

.brand-grid span:nth-child(3n + 1) {
  color: var(--red);
}

.brand-grid span:last-child {
  color: #fff;
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.16);
}

.brand-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
}

.process {
  background: #fff;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.testimonials {
  background: var(--soft-red);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(23, 26, 47, 0.08);
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.testimonial-grid span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.seo-faq details {
  max-width: 980px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.seo-faq summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 900;
}

.seo-faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  background: var(--bg);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.contact-link-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #fff7f8);
  border: 1px solid rgba(229, 9, 32, 0.2);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 26, 47, 0.08);
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 32, 0.46);
}

.contact-link-card.wide {
  grid-column: 1 / -1;
}

.contact-link-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(229, 9, 32, 0.2);
}

.contact-link-icon.whatsapp {
  background: #25d366;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.contact-link-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link-icon.whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.contact-link-card small,
.contact-link-card strong {
  display: block;
}

.contact-link-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-link-card strong {
  overflow-wrap: anywhere;
  color: var(--red);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.2;
  font-weight: 900;
}

.commercial-manager {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f8ff 100%);
  border: 1px solid rgba(32, 39, 110, 0.12);
  border-radius: 14px;
}

.commercial-manager img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 12px;
}

.commercial-manager span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commercial-manager h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.commercial-manager p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.commercial-manager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #0f6b36;
  background: #e9fff2;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
}

.form-heading {
  padding-bottom: 8px;
}

.form-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.location-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.36fr);
  gap: 12px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 9, 32, 0.12);
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 70px);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  background: var(--blue-dark);
}

.site-footer img {
  width: 190px;
  height: auto;
  background: #fff;
  border-radius: 8px;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: #fff;
  font-weight: 900;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.footer-contacts a {
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-compliance {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-badge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 250px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-badge strong {
  display: grid;
  min-width: 48px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 7px;
  font-size: 0.98rem;
}

.footer-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.adm-logo-card {
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  padding: 14px 18px;
  background: #fff;
  border-radius: 8px;
}

.adm-logo-card img {
  display: block;
  width: min(310px, 100%);
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.copyright {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #1fbd5a;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  left: clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden],
.success-modal[hidden] {
  display: none;
}

.cookie-copy strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.cookie-copy p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 26, 47, 0.62);
}

.cookie-modal-card {
  width: min(100%, 720px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-options {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.cookie-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.success-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 26, 47, 0.66);
}

.success-modal-card {
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(232, 5, 35, 0.28);
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.success-modal-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.success-modal-card p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .proof-numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits,
  .audience-grid,
  .testimonial-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(23, 26, 47, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 16px;
    color: var(--blue);
    background: var(--soft-blue);
    border: 1px solid rgba(41, 48, 130, 0.12);
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 900;
  }

  .site-nav .whatsapp-cta {
    color: #17613a;
    background: #e9f8ef;
    border-color: rgba(23, 97, 58, 0.2);
  }

  .site-nav .nav-cta {
    text-align: center;
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .intro,
  .categories,
  .compliance,
  .contact,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    grid-row: auto;
  }

  .steps,
  .site-footer,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .footer-contacts {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3rem;
  }

  .brand img {
    width: min(250px, 64vw);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .proof-numbers {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .proof-numbers article {
    min-height: 104px;
    padding: 18px;
  }

  .proof-numbers strong {
    font-size: 2.55rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .location-fields {
    grid-template-columns: 1fr;
  }

  .commercial-manager {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .commercial-manager img {
    max-height: 360px;
    aspect-ratio: 1 / 1;
  }

  .benefits,
  .audience-grid,
  .testimonial-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid span {
    min-height: 78px;
  }

  .site-footer img {
    width: 170px;
  }
}
