/* ============================================================
   Soma Tax — Landing page
   ============================================================ */

:root {
  --navy-900: #000028;
  --navy-800: #050947;
  --navy-700: #101866;
  --navy-600: #1e3a8a;
  --navy-500: #2a4fb3;
  --ink: #0f172a;
  --text: #1f2a44;
  --muted: #4a5568;
  --muted-2: #6b7794;
  --line: #e6eaf2;
  --line-strong: #cdd5e3;
  --snow: #f7f9fc;
  --cream: #f3eee3;
  --white: #ffffff;
  --gold: #c9a24c;
  --gold-soft: #e6c986;
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --danger: #b42318;

  --shadow-sm: 0 1px 2px rgba(10, 26, 58, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(10, 26, 58, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 26, 58, 0.35);
  --shadow-gold: 0 12px 30px -12px rgba(201, 162, 76, 0.55);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  --container: 1180px;
  --container-narrow: 820px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Libre Baskerville", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ------------------------------ Layout */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-light {
  background: var(--white);
}
.section-cream {
  background: var(--snow);
}
.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #e7ecf7;
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-dark .lead {
  color: #c2cde3;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.section-head h2 {
  margin: 12px 0 14px;
}
.section-head .lead {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(20, 44, 94, 0.06);
  padding: 7px 12px;
  border-radius: 999px;
}
.eyebrow.light {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 76, 0.18);
}

/* ------------------------------ Typography */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}
h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}
h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
}
p {
  margin: 0;
}
.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--muted);
  line-height: 1.6;
}
.accent {
  color: var(--navy-700);
  font-style: italic;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
}

/* ------------------------------ Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-sm {
  padding: 10px 16px;
  font-size: 13.5px;
}
.btn-lg {
  padding: 15px 28px;
  font-size: 15.5px;
}
.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--wa-dark);
  box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.65);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ------------------------------ Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -16px rgba(10, 26, 58, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: auto;
  height: 34px;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.brand-soma {
  color: var(--navy-900);
}
.brand-tax {
  color: var(--gold);
  margin-left: 2px;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}
.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
.site-nav a:hover {
  color: var(--navy-700);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.site-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: #fff;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.mobile-drawer a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--navy-900);
}
.mobile-drawer.open {
  display: flex;
}

/* ------------------------------ Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: #e9efff;
  padding: clamp(72px, 11vw, 130px) 0 clamp(80px, 12vw, 140px);
  background: linear-gradient(180deg, #08163a 0%, #0c2154 60%, #0a1a3a 100%);
  isolation: isolate;
}
.hero h1 {
  color: #fff;
  max-width: 18ch;
}
.hero h1 .accent {
  color: var(--gold-soft);
}
.hero h1 .accent::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-pattern {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background-image: url("assets/pattern.svg");
  background-size: 560px 560px;
  opacity: 0.18;
  will-change: transform;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -200px;
  top: -250px;
  background: radial-gradient(closest-side, rgba(201, 162, 76, 0.22), transparent 70%);
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  max-width: 980px;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: #c2cde3;
  max-width: 60ch;
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-divider {
  font-size: 13px;
  color: #8da0c7;
  letter-spacing: 0.02em;
}
.hero-microcopy {
  margin-top: 14px;
  font-size: 13.5px;
  color: #8da0c7;
}

.hero-stats {
  list-style: none;
  margin: 56px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats span {
  font-size: 13px;
  color: #97a7c6;
  letter-spacing: 0.02em;
}

/* ------------------------------ Grids & cards */

.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-tight {
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.benefit .card-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 44, 94, 0.08), rgba(201, 162, 76, 0.1));
  color: var(--navy-700);
  margin-bottom: 18px;
}
.benefit h3 {
  margin-bottom: 8px;
}
.benefit p {
  color: var(--muted);
  font-size: 15px;
}

.benefit-highlight {
  background: linear-gradient(180deg, #fff 0%, #fbf6ea 100%);
  border-color: rgba(201, 162, 76, 0.4);
}
.benefit-highlight .card-icon {
  background: var(--gold);
  color: #fff;
}
.benefit-highlight .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e7ecf7;
  border-radius: var(--radius);
  padding: 22px 22px;
  font-weight: 500;
  font-size: 15.5px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.pill:hover {
  border-color: rgba(201, 162, 76, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ------------------------------ Timeline */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--gold) 8%,
    var(--gold) 92%,
    transparent 100%
  );
  opacity: 0.4;
  z-index: 0;
}
.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  z-index: 1;
}
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px -8px rgba(10, 26, 58, 0.5);
}
.timeline-item h3 {
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ------------------------------ Features */

.feature {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature h3 {
  margin-bottom: 6px;
}
.feature p {
  color: var(--muted);
  font-size: 14.5px;
}
.feature-icon {
  flex: 0 0 48px;
  margin-bottom: 0;
}

/* ------------------------------ Cases */

.case {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(20, 44, 94, 0.07);
  padding: 5px 10px;
  border-radius: 999px;
}
.case-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.case-quote strong {
  color: var(--navy-700);
  font-weight: 600;
}
.case-meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted-2);
}

/* ------------------------------ FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] {
  border-color: rgba(201, 162, 76, 0.45);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--navy-700);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ------------------------------ Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-form-wrap h2 {
  margin: 12px 0 10px;
}

.lead-form {
  margin-top: 28px;
  background: #fff;
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
}
.field-hint {
  font-weight: 400;
  color: var(--muted-2);
  font-size: 12.5px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}
.field-error {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 0;
}
.field.invalid .field-error {
  min-height: 16px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--navy-700);
}

.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: -4px;
}

.contact-side .contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #e7ecf7;
}
.contact-side h3 {
  color: #fff;
  margin-bottom: 8px;
}
.contact-side p {
  color: #c2cde3;
  font-size: 15px;
  margin-bottom: 18px;
}
.contact-side hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px 0;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #d4dceb;
}
.contact-list a:hover {
  color: var(--gold-soft);
}
.contact-label {
  color: #8da0c7;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-trust {
  margin-top: 18px;
  font-size: 12.5px;
  color: #97a7c6;
}

/* ------------------------------ Footer */

.site-footer {
  background: #07112a;
  color: #b6c0d6;
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.footer-brand .brand-text {
  font-size: 22px;
  color: #fff;
}
.footer-brand p {
  margin-top: 10px;
  max-width: 36ch;
  color: #95a2bd;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a:hover {
  color: var(--gold-soft);
}
.footer-meta p {
  margin: 0 0 8px;
}
.footer-dis {
  color: #6e7c98;
  font-size: 12.5px;
  line-height: 1.5;
}

/* ------------------------------ Floating WA + toast */

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 40;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    background 0.2s var(--ease);
}
.float-wa.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-wa:hover {
  background: var(--wa-dark);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 60;
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ------------------------------ Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .hero-pattern {
    transform: none !important;
  }
}

/* ------------------------------ Responsive */

@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-cta .btn-whatsapp.btn-sm {
    display: none;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .cta-divider {
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 22px;
  }
}
