:root {
  color-scheme: dark;
  --blue-900: #0b2d3a;
  --blue-800: #123f52;
  --gold-500: #c9a24a;
  --gold-300: #e5c46a;
  --paper: #f5f5f5;
  --whatsapp: #168a24;

  --ink: rgba(245, 245, 245, 0.96);
  --muted: rgba(245, 245, 245, 0.72);
  --line: rgba(229, 196, 106, 0.18);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.22);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Avoid sections hiding under the sticky header when using anchor links. */
[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(229, 196, 106, 0.16), transparent 55%),
    radial-gradient(900px 540px at 10% 0%, rgba(18, 63, 82, 0.7), transparent 55%),
    linear-gradient(180deg, var(--blue-900), #061a22);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 20px;
  background: rgba(11, 45, 58, 0.78);
  border-bottom: 1px solid rgba(229, 196, 106, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.38));
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(229, 196, 106, 0.22);
  background: rgba(6, 26, 34, 0.45);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: none;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 196, 106, 0.16);
  background: rgba(6, 26, 34, 0.32);
  color: rgba(245, 245, 245, 0.9);
  font-weight: 850;
  font-size: 14px;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-300);
}

.nav.is-open {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 950;
  color: #041014;
  background:
    radial-gradient(80% 140% at 30% 20%, rgba(255, 255, 255, 0.44), transparent 45%),
    linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 16px 36px rgba(201, 162, 74, 0.22);
  white-space: nowrap;
}

.nav-action:hover {
  transform: translateY(-1px);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    background 160ms ease;
}

.button.primary {
  color: #031014;
  background:
    radial-gradient(90% 140% at 30% 20%, rgba(255, 255, 255, 0.44), transparent 45%),
    linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 18px 44px rgba(201, 162, 74, 0.24);
}

.button.secondary {
  color: var(--paper);
  background: rgba(6, 26, 34, 0.34);
  border-color: rgba(229, 196, 106, 0.22);
}

.button.whatsapp {
  color: #05150a;
  background:
    radial-gradient(90% 140% at 30% 20%, rgba(255, 255, 255, 0.28), transparent 45%),
    linear-gradient(135deg, #21c063, var(--whatsapp));
  box-shadow: 0 18px 44px rgba(22, 138, 36, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.button:active {
  transform: translateY(0);
}

/* WhatsApp Gate (3 quick questions) */
.gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.gate.is-open {
  display: grid;
  place-items: center;
}

.gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.gate-panel {
  position: relative;
  width: min(520px, calc(100% - 28px));
  border-radius: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(229, 196, 106, 0.22);
  background:
    radial-gradient(90% 140% at 20% 20%, rgba(229, 196, 106, 0.14), transparent 55%),
    rgba(6, 26, 34, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  padding: 18px 16px 16px;
}

.gate-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(229, 196, 106, 0.2);
  background: rgba(3, 16, 20, 0.4);
  color: rgba(245, 245, 245, 0.9);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.gate-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.gate-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.gate-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.gate-form label {
  display: grid;
  gap: 8px;
}

.gate-form span {
  color: rgba(245, 245, 245, 0.88);
  font-weight: 850;
  font-size: 13px;
}

.gate-form input[type="text"],
.gate-form input:not([type]),
.gate-form select {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(229, 196, 106, 0.18);
  background: rgba(3, 16, 20, 0.55);
  color: var(--paper);
  outline: none;
}

.gate-form input::placeholder {
  color: rgba(245, 245, 245, 0.54);
}

.gate-form input:focus,
.gate-form select:focus {
  border-color: rgba(229, 196, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(229, 196, 106, 0.12);
}

.gate-age {
  border: 0;
  padding: 0;
  margin: 0;
}

.gate-age legend {
  padding: 0;
  margin-bottom: 8px;
  color: rgba(245, 245, 245, 0.88);
  font-weight: 850;
  font-size: 13px;
}

.age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.age-grid label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(229, 196, 106, 0.16);
  background: rgba(3, 16, 20, 0.35);
  cursor: pointer;
}

.age-grid input {
  accent-color: var(--gold-300);
}

.age-grid span {
  font-size: 13px;
  font-weight: 900;
  color: rgba(245, 245, 245, 0.9);
}

.gate-submit {
  width: 100%;
}

.gate-note {
  margin: 0;
  color: rgba(245, 245, 245, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.gate-error {
  margin: 0;
  color: rgba(255, 210, 210, 0.92);
  font-weight: 850;
  font-size: 13px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    radial-gradient(90% 140% at 30% 20%, rgba(255, 255, 255, 0.22), transparent 45%),
    linear-gradient(135deg, #21c063, var(--whatsapp));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.floating-whatsapp span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #071a10;
  letter-spacing: 0.2px;
  font-size: 11px;
}

.wa-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

@keyframes floatPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  }
}

.floating-whatsapp {
  animation: floatPulse 2.8s ease-in-out infinite;
}

/* Hero */
.hero {
  padding: 42px 0 26px;
}

.hero-grid {
  display: grid;
  gap: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 196, 106, 0.22);
  background: rgba(6, 26, 34, 0.34);
  color: rgba(245, 245, 245, 0.92);
  font-weight: 850;
  font-size: 13px;
}

.pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.lead {
  margin: 14px 0 0;
  color: rgba(245, 245, 245, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.hero-loc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.micro-proof {
  margin: 14px 0 0;
  color: rgba(245, 245, 245, 0.86);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.16);
  background: rgba(6, 26, 34, 0.24);
}

.badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}

.badge span {
  font-weight: 850;
  color: rgba(245, 245, 245, 0.9);
}

.hero-visual {
  position: relative;
  border-radius: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(229, 196, 106, 0.18);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(6, 26, 34, 0.38);
}

.hero-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side at 35% 25%, rgba(229, 196, 106, 0.24), transparent 55%),
    radial-gradient(closest-side at 80% 70%, rgba(18, 63, 82, 0.55), transparent 60%);
  filter: blur(18px);
  opacity: 0.9;
}

.hero-image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */
.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 780px;
}

h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-cta {
  margin-top: 20px;
}

/* Trustbar */
.trustbar {
  padding: 22px 0 10px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.18);
  background: rgba(6, 26, 34, 0.26);
  box-shadow: var(--shadow-soft);
}

.trust-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}

.trust-card strong {
  display: block;
  font-size: 15px;
}

.trust-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 2px;
}

/* Why */
.why-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dark-card {
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.16);
  background:
    radial-gradient(80% 140% at 30% 20%, rgba(229, 196, 106, 0.12), transparent 55%),
    rgba(6, 26, 34, 0.26);
  box-shadow: var(--shadow-soft);
}

.dark-card strong {
  display: block;
  font-size: 15px;
}

.dark-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.benefit-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.18);
  background: rgba(6, 26, 34, 0.24);
  box-shadow: var(--shadow-soft);
}

.benefit-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}

.benefit-card h3 {
  margin: 14px 0 0;
  font-size: 17px;
  letter-spacing: -0.2px;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Simulation */
.sim-grid {
  display: grid;
  gap: 16px;
}

.sim-copy h2 {
  margin-bottom: 10px;
}

.sim-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sim-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sim-points div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.14);
  background: rgba(6, 26, 34, 0.18);
}

.sim-points img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.sim-points span {
  color: rgba(245, 245, 245, 0.9);
  font-weight: 850;
  font-size: 13px;
}

.sim-form {
  padding: 18px 16px;
  border-radius: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(229, 196, 106, 0.2);
  background:
    radial-gradient(90% 140% at 20% 20%, rgba(229, 196, 106, 0.12), transparent 55%),
    rgba(6, 26, 34, 0.28);
  box-shadow: var(--shadow);
}

.sim-form label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sim-form label:first-child {
  margin-top: 0;
}

.sim-form span {
  color: rgba(245, 245, 245, 0.88);
  font-weight: 850;
  font-size: 13px;
}

.sim-form input,
.sim-form select {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(229, 196, 106, 0.18);
  background: rgba(3, 16, 20, 0.55);
  color: var(--paper);
  outline: none;
}

.sim-form input::placeholder {
  color: rgba(245, 245, 245, 0.54);
}

.sim-form input:focus,
.sim-form select:focus {
  border-color: rgba(229, 196, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(229, 196, 106, 0.12);
}

.sim-form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 14px;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(245, 245, 245, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.form-error {
  margin: 10px 0 0;
  color: rgba(255, 210, 210, 0.92);
  font-weight: 850;
  font-size: 13px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.16);
  background: rgba(6, 26, 34, 0.22);
  box-shadow: var(--shadow-soft);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #041014;
  font-weight: 950;
  background:
    radial-gradient(80% 140% at 30% 20%, rgba(255, 255, 255, 0.42), transparent 45%),
    linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.step strong {
  display: block;
  font-size: 16px;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.16);
  background: rgba(6, 26, 34, 0.22);
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: rgba(245, 245, 245, 0.96);
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.quotes {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.quote {
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.14);
  background:
    radial-gradient(80% 140% at 20% 20%, rgba(229, 196, 106, 0.1), transparent 55%),
    rgba(6, 26, 34, 0.2);
}

.quote p {
  margin: 0;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.9);
}

.quote span {
  display: block;
  margin-top: 10px;
  color: rgba(245, 245, 245, 0.62);
  font-size: 12px;
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.regions-grid span {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(229, 196, 106, 0.14);
  background: rgba(6, 26, 34, 0.2);
  color: rgba(245, 245, 245, 0.9);
  font-weight: 850;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(229, 196, 106, 0.14);
  background: rgba(6, 26, 34, 0.2);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 46px 0 60px;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(229, 196, 106, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(6, 26, 34, 0.22), rgba(6, 26, 34, 0.42));
  border-top: 1px solid rgba(229, 196, 106, 0.12);
}

.final-grid {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  border-radius: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(229, 196, 106, 0.18);
  background: rgba(6, 26, 34, 0.22);
  box-shadow: var(--shadow);
}

.final-grid h2 {
  font-size: 26px;
}

.final-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 34px 0 80px;
  border-top: 1px solid rgba(229, 196, 106, 0.12);
  background: rgba(3, 16, 20, 0.55);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 245, 245, 0.92);
}

.footer-links a {
  display: block;
  color: rgba(245, 245, 245, 0.82);
  padding: 7px 0;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-contact a {
  display: inline-flex;
  padding: 10px 0;
  color: rgba(245, 245, 245, 0.92);
  font-weight: 950;
}

.footer-note {
  display: block;
  margin-top: 10px;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.6;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 196, 106, 0.12);
  display: flex;
  justify-content: center;
}

.footer-dev {
  color: rgba(245, 245, 245, 0.72);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.footer-dev:hover {
  color: var(--gold-300);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .floating-whatsapp {
    animation: none;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Desktop enhancements */
@media (min-width: 860px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 14px 5vw;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: center;
  }

  .hero {
    padding: 66px 0 34px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 26px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

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

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

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

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

  .sim-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 22px;
  }

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

  .quotes {
    grid-template-columns: 1fr 1fr;
  }

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

  .final-grid {
    grid-template-columns: 1fr auto;
    padding: 22px 22px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
    align-items: start;
  }
}
