:root {
  color-scheme: light;
  --ink: #0a1f44;
  --body: #44557a;
  --muted: #7a8aa6;
  --teal: #079894;
  --teal-dark: #05726f;
  --teal-soft: #e4f8f7;
  --teal-tint: #f3fbfa;
  --sky: #eef8fb;
  --line: #e3ebf2;
  --line-soft: #eef3f7;
  --panel: #ffffff;
  --navy: #04265a;
  --navy-deep: #021a40;
  --gold: #f5b631;
  --ok: #0a7a4a;
  --shadow-sm: 0 6px 16px rgba(4, 38, 90, 0.06);
  --shadow-md: 0 14px 36px rgba(4, 38, 90, 0.08);
  --shadow-lg: 0 28px 60px rgba(4, 38, 90, 0.14);
  --shadow-cta: 0 14px 26px rgba(7, 152, 148, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--body);
  background: #f6fbfc;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

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

.icon {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 30px;
  height: 30px;
}

/* ------------ Header ------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.nav {
  width: min(1200px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark .icon {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switch a {
  padding: 8px 12px;
  color: var(--muted);
}

.language-switch a[aria-current="page"] {
  background: var(--teal);
  color: #fff;
}

.thank-you-page {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
}

.thank-you-card {
  max-width: 760px;
  margin: 48px auto;
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.thank-you-card p {
  margin: 0;
}

.thank-you-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.thank-you-list {
  display: grid;
  gap: 12px;
}

/* ------------ Hero ------------ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(7, 152, 148, 0.12), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(7, 152, 148, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--teal-tint) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: start;
  padding: 64px 0 80px;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 24px 0;
}

.hero-image {
  position: absolute;
  top: 0;
  right: -40px;
  width: 64%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: var(--radius-lg);
  -webkit-mask-image: linear-gradient(95deg, transparent 0%, rgba(0, 0, 0, 0.12) 26%, rgba(0, 0, 0, 0.55) 48%, #000 70%, #000 100%);
          mask-image: linear-gradient(95deg, transparent 0%, rgba(0, 0, 0, 0.12) 26%, rgba(0, 0, 0, 0.55) 48%, #000 70%, #000 100%);
  box-shadow: var(--shadow-lg);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

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

h1 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 540px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button .icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(7, 152, 148, 0.32);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-whatsapp {
  color: #128c7e;
}

.button-block {
  width: 100%;
}

.quick-trust {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.quick-trust > div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 16px 12px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.quick-trust > div:last-child {
  border-right: 0;
}

.trust-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.trust-ico .icon {
  width: 18px;
  height: 18px;
}

/* ------------ Lead card / form ------------ */
.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(7, 152, 148, 0.35), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.lead-card h2 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lead-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label,
.field-group legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

label {
  display: grid;
  gap: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #a4b0c2;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(7, 152, 148, 0.14);
}

.field-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-group legend {
  margin-bottom: 8px;
}

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.radio-card span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--body);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.radio-card input:checked + span {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.privacy-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, var(--teal-tint) 100%);
}

.section-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 640px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.panel h2,
.panel h3 {
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.panel h3 {
  font-size: 19px;
}

.panel p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(7, 152, 148, 0.16);
}

.icon-badge .icon {
  width: 26px;
  height: 26px;
}

.checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--body);
  font-size: 15px;
}

.checks li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat,
    var(--teal);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--teal) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(7, 152, 148, 0.12);
}

.step-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  box-shadow: 0 10px 22px rgba(7, 152, 148, 0.18);
  position: relative;
}

.step-icon .icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.7;
}

.step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border: 3px solid var(--teal-tint);
}

.step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--body);
  font-size: 14.5px;
}

/* Areas */
.areas {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.area {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.area:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.area-ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.area-ico .icon {
  width: 20px;
  height: 20px;
}

/* Reviews + FAQ */
.reviews-faq {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin: 2px 0 10px;
}

.review-meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.quote {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  color: var(--body);
  font-size: 13.5px;
  background: var(--teal-tint);
}

.quote .stars {
  font-size: 14px;
  margin: 0 0 8px;
}

.quote strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

details:last-of-type {
  border-bottom: 0;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.18s ease;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ------------ Footer ------------ */
.site-footer {
  background: var(--navy);
  background-image:
    radial-gradient(600px 260px at 90% 0%, rgba(7, 152, 148, 0.18), transparent 60%),
    radial-gradient(500px 240px at -5% 110%, rgba(7, 152, 148, 0.10), transparent 60%);
  color: #fff;
  padding: 56px 0 22px;
}

.footer-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.footer-brand strong {
  color: #fff;
  font-size: 17px;
}

.site-footer h3,
.site-footer strong {
  color: #fff;
  font-weight: 800;
}

.footer-grid > div > strong {
  display: block;
  margin-top: 6px;
  min-height: 34px;
  line-height: 1.2;
}

.footer-grid > div > p,
.footer-grid > div > .footer-links {
  margin-top: 12px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-list {
  word-break: break-word;
}

.contact-list a {
  display: inline;
  color: #62dcd6;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.contact-list a:hover,
.contact-list a:focus {
  color: #ffffff;
}

.footer-bottom {
  width: min(1200px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ------------ Form status ------------ */
.form-status {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ok);
  background: #e8f7ee;
  border: 1px solid #b8e3c8;
  font-size: 13.5px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

/* ------------ Responsive ------------ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0 52px;
  }

  .lead-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-stage {
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-text {
    order: 1;
    max-width: none;
  }

  .hero-image {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .hero-image img {
    aspect-ratio: 16 / 10;
    -webkit-mask-image: none;
            mask-image: none;
    object-position: center;
  }
}

@media (max-width: 880px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    min-height: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: none;
    white-space: nowrap;
  }

  .info-grid,
  .steps,
  .reviews-faq,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 18px;
  }

  .steps::before {
    display: none;
  }

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

  .section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .reviews-faq {
    gap: 18px;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: #fff;
  }

  .nav {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    background:
      radial-gradient(600px 360px at 100% 0%, rgba(7, 152, 148, 0.10), transparent 60%),
      linear-gradient(180deg, #ffffff 0%, var(--teal-tint) 100%);
  }

  .hero-inner {
    padding: 28px 0 40px;
    gap: 26px;
  }

  h1 {
    font-size: clamp(32px, 8vw, 38px);
    line-height: 1.1;
  }

  .hero-lede {
    font-size: 16px;
  }

  .eyebrow {
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .quick-trust {
    grid-template-columns: 1fr 1fr;
  }

  .quick-trust > div {
    min-height: 92px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .quick-trust > div:nth-child(2n) {
    border-right: 0;
  }

  .quick-trust > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .form-grid,
  .radio-row {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 22px 20px;
    border-radius: var(--radius-md);
  }

  .lead-card h2 {
    font-size: 20px;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .panel {
    padding: 22px 20px;
    border-radius: var(--radius-md);
  }

  .step {
    padding: 24px 18px;
  }

  .step-icon {
    width: 76px;
    height: 76px;
  }

  .step-icon .icon {
    width: 30px;
    height: 30px;
  }

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

  .area {
    padding: 18px 10px;
    font-size: 13.5px;
  }

  .site-footer {
    padding: 44px 0 18px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    margin-top: 28px;
    justify-content: flex-start;
    gap: 4px;
  }
}

@media (max-width: 360px) {
  .brand-text span {
    display: none;
  }

  h1 {
    font-size: 28px;
  }

  .quick-trust > div {
    min-height: 84px;
    padding: 12px 8px;
    font-size: 11.5px;
  }
}
