/* ================================================================
   MIDWEST LEAD LLC — style.css
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --bg-primary:    #06090F;
  --bg-secondary:  #0D1424;
  --bg-card:       #111827;
  --bg-card-hover: #162035;

  --accent:        #F97316;
  --accent-dark:   #C2410C;
  --accent-glow:   rgba(249, 115, 22, 0.10);

  --text-primary:   #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;

  --border:        rgba(255, 255, 255, 0.07);
  --border-accent: rgba(249, 115, 22, 0.30);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1100px;
  --container-px:  1.25rem;
  --section-py:    5.5rem;
  --header-h:      70px;

  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p  { line-height: 1.72; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
  display: block;
}

/* ----------------------------------------------------------------
   4. LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section       { padding: var(--section-py) 0; }
.section--alt  { background-color: var(--bg-secondary); }

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.30);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ----------------------------------------------------------------
   6. HEADER / NAV
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(6, 9, 15, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.55); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.nav__logo .dot { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text-primary); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--container-px);
  flex-direction: column;
  gap: 0.25rem;
  z-index: 199;
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 0.75rem; width: 100%; }

/* ----------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-primary);
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.065) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 30% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 85% at 30% 50%, black 30%, transparent 100%);
}

/* Orange glow upper-right */
.hero::after {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: 4rem 0 5rem;
}

.hero h1 { text-transform: uppercase; margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--accent); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.25rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   8. PROBLEM
   ---------------------------------------------------------------- */
.problem__intro { max-width: 600px; margin-bottom: 2.75rem; }
.problem__intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: border-color var(--transition);
}
.problem-card:hover { border-color: var(--border-accent); }

.problem-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.625rem;
}
.problem-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.problem-card h3 { font-size: 1.1rem; line-height: 1.2; margin-top: 0.2rem; }
.problem-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ----------------------------------------------------------------
   9. SOLUTION / HOW IT WORKS
   ---------------------------------------------------------------- */
.solution__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.25rem;
}
.solution__header p {
  color: var(--text-secondary);
  margin-top: 0.875rem;
  font-size: 1.0625rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--border-accent); }

.step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(249,115,22,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step__icon { font-size: 2rem; margin-bottom: 0.875rem; display: block; }
.step h3    { font-size: 1.2rem; margin-bottom: 0.625rem; }
.step p     { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ----------------------------------------------------------------
   10. SERVICES
   ---------------------------------------------------------------- */
.services__header { text-align: center; max-width: 580px; margin: 0 auto 2.75rem; }
.services__header p { color: var(--text-secondary); margin-top: 0.75rem; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.service-card__icon { font-size: 2.25rem; display: block; margin-bottom: 1.1rem; }
.service-card h3    { font-size: 1.25rem; margin-bottom: 0.625rem; }
.service-card > p   { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.25rem; }
.service-card ul    { display: flex; flex-direction: column; gap: 0.45rem; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   11. BENEFITS
   ---------------------------------------------------------------- */
.benefits__header { text-align: center; max-width: 580px; margin: 0 auto 2.75rem; }
.benefits__header p { color: var(--text-secondary); margin-top: 0.75rem; }

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); }

.benefit-card__icon { font-size: 2.25rem; display: block; margin-bottom: 0.875rem; }
.benefit-card h3    { font-size: 1.1rem; margin-bottom: 0.5rem; }
.benefit-card p     { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ----------------------------------------------------------------
   12. WHY US
   ---------------------------------------------------------------- */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-us__content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 1rem 0 2rem;
  line-height: 1.75;
}

.why-list { display: flex; flex-direction: column; gap: 0.75rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.why-item:hover { border-color: var(--border-accent); }

.why-item__check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 800;
  margin-top: 0.2rem;
}

.why-item__text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.why-item__text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.why-us__aside { position: sticky; top: calc(var(--header-h) + 2rem); }

.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}
.aside-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.aside-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.aside-card .btn { width: 100%; margin-bottom: 1rem; }
.aside-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   13. CTA / FORM
   ---------------------------------------------------------------- */
.cta-form-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-form__header { text-align: center; max-width: 580px; margin: 0 auto 3rem; }
.cta-form__header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 0.875rem;
  line-height: 1.75;
}

.ghl-embed-wrapper { max-width: 720px; margin: 0 auto; }

.ghl-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
}
.ghl-placeholder__icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.ghl-placeholder h3    { font-size: 1.25rem; color: var(--accent); margin-bottom: 0.5rem; }
.ghl-placeholder p     { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.4rem; }
.ghl-placeholder code  {
  font-size: 0.8rem;
  color: var(--accent);
  background: rgba(249,115,22,0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.form-consent {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 0.775rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}
.form-consent a { color: var(--accent); text-decoration: underline; }

/* ----------------------------------------------------------------
   14. FAQ
   ---------------------------------------------------------------- */
.faq__header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.faq__header p { color: var(--text-secondary); margin-top: 0.75rem; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.625rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  transition: background var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}
.faq-question:hover { background: var(--bg-card-hover); }

.faq-chevron {
  width: 22px; height: 22px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: var(--bg-card);
}
.faq-answer.open { max-height: 400px; }

.faq-answer__inner {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .nav__logo { display: inline-block; margin-bottom: 0.75rem; }
.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 0.75rem;
}
.footer__brand a {
  font-size: 0.875rem;
  color: var(--accent);
  transition: opacity var(--transition);
}
.footer__brand a:hover { opacity: 0.8; }

.footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer__disclaimer {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 850px;
}

/* ----------------------------------------------------------------
   16. LEGAL PAGES
   ---------------------------------------------------------------- */
.legal-page { padding-top: var(--header-h); }

.legal-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 2.75rem;
}
.legal-hero h1  { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.5rem; }
.legal-meta     { font-size: 0.85rem; color: var(--text-muted); }

.legal-body { padding: 3.5rem 0 5rem; }

.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.875rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul, .legal-content ol { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--accent); text-decoration: underline; }

.legal-highlight {
  background: rgba(249,115,22,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-highlight p { margin-bottom: 0 !important; font-size: 0.9375rem; }

/* ----------------------------------------------------------------
   17. THANK YOU PAGE
   ---------------------------------------------------------------- */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
}
.thank-you-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--container-px);
}
.thank-you-card {
  max-width: 580px;
  width: 100%;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
}
.ty-icon { font-size: 3.5rem; display: block; margin-bottom: 1.25rem; }
.thank-you-card h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.875rem; }
.thank-you-card > p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.72;
}
.next-steps {
  background: rgba(249,115,22,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}
.next-steps h3 { font-size: 1rem; margin-bottom: 0.875rem; }
.next-steps ul { display: flex; flex-direction: column; gap: 0.5rem; }
.next-steps li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.next-steps li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.thank-you-card .btn { margin-top: 0.5rem; }

/* ----------------------------------------------------------------
   18. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --section-py: 4rem; }

  .nav__links,
  .nav__actions .btn  { display: none; }
  .nav__toggle        { display: flex; }

  .steps              { grid-template-columns: 1fr; }
  .service-cards      { grid-template-columns: 1fr; }
  .benefit-cards      { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-us__aside      { position: static; }
  .footer__top        { grid-template-columns: 1fr 1fr; }
  .footer__brand      { grid-column: 1 / -1; }
  .problem-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 3rem; }

  .hero__actions       { flex-direction: column; }
  .hero__actions .btn  { width: 100%; }
  .benefit-cards       { grid-template-columns: 1fr; }
  .footer__top         { grid-template-columns: 1fr; gap: 2rem; }
  .thank-you-card      { padding: 2.5rem 1.5rem; }
  .legal-content h2    { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
