/* ═══════════════════════════════════════════════════
   ARTEM — Roofing & Construction Lead Generation
   style.css
═══════════════════════════════════════════════════ */

/* 1. Variables
   2. Reset & Base
   3. Typography
   4. Layout
   5. Utilities
   6. Navbar
   7. Hero
   8. Services
   9. Funnel / How It Works
  10. Results / Case Studies
  11. About
  12. FAQ
  13. Contact
  14. Footer
  15. Animations
  16. Responsive
*/

/* ─── 1. Variables ─────────────────────────────── */
:root {
  --bg:              hsl(210, 20%, 98%);
  --fg:              hsl(220, 30%, 12%);
  --primary:         hsl(220, 30%, 12%);
  --primary-fg:      hsl(42,  100%, 95%);
  --secondary:       hsl(210, 20%, 94%);
  --accent:          hsl(38,  92%, 55%);
  --accent-fg:       hsl(220, 30%, 12%);
  --muted:           hsl(220, 10%, 46%);
  --border:          hsl(220, 13%, 88%);
  --card:            hsl(0,   0%,  100%);
  --radius:          0.5rem;
  --nav-h:           4rem;

  --gold-gradient:   linear-gradient(135deg, hsl(38, 92%, 55%), hsl(42, 95%, 62%));
  --hero-gradient:   linear-gradient(135deg, hsl(220, 30%, 12%) 0%, hsl(220, 25%, 20%) 50%, hsl(225, 20%, 28%) 100%);
  --shadow-gold:     0 4px 20px -4px hsla(38, 92%, 55%, 0.3);
  --shadow-card:     0 4px 24px -8px hsla(220, 30%, 12%, 0.08);
  --shadow-card-hover: 0 8px 32px -8px hsla(220, 30%, 12%, 0.14);

  --font-display:    'Space Grotesk', system-ui, sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;
}

/* ─── 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);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* ─── 3. Typography ────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.125rem; }

p  { color: var(--muted); line-height: 1.75; }
strong { color: var(--fg); font-weight: 600; }

.mt-3 { margin-top: 0.75rem; }

/* ─── 4. Layout ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--light     { background: var(--bg); }
.section--secondary { background: var(--secondary); }

/* ─── 5. Utilities ─────────────────────────────── */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-gradient { background: var(--gold-gradient); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--accent-fg);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { opacity: 0.88; }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--primary-fg);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); }

.btn--lg   { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 0.9375rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Section labels + headers */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.0625rem; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Tags */
.tag {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  background: var(--secondary);
  color: var(--fg);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Cards */
.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: var(--shadow-card-hover); }

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-fg);
  flex-shrink: 0;
}
.card__icon svg { width: 1.25rem; height: 1.25rem; }
.card h3 { color: var(--fg); margin-bottom: 0.5rem; font-size: 1.0625rem; }
.card p  { font-size: 0.9375rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

/* ─── 6. Navbar ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsla(210, 20%, 98%, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--border); }

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

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.logo-t5 {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.navbar__links a:not(.btn):hover { color: var(--fg); }

.navbar__toggle {
  display: flex;
  align-items: center;
  color: var(--fg);
  padding: 0.25rem;
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.navbar__mobile.open { display: flex; }

.mobile-link {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--fg); }
.mobile-cta {
  border-bottom: none;
  margin: 1rem 1.5rem;
  text-align: center;
  justify-content: center;
}

/* ─── 7. Hero ──────────────────────────────────── */
.hero {
  background: var(--hero-gradient);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  border: 1px solid hsla(38, 92%, 55%, 0.3);
  background: hsla(38, 92%, 55%, 0.1);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__badge svg { flex-shrink: 0; }

.hero__title {
  color: var(--primary-fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero__sub {
  font-size: 1.0625rem;
  color: hsla(42, 100%, 95%, 0.72);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__avatar {
  display: flex;
  justify-content: center;
}
.hero__avatar-wrap {
  position: relative;
  display: inline-block;
}

/* Ground shadow */
.hero__avatar-wrap::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 22px;
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.10) 45%,
    transparent 72%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(3px);
}

.avatar-img {
  width: 17rem;
  display: block;
  position: relative;
  z-index: 1;
}

.hero__name-label {
  position: absolute;
  top: 14%;
  left: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.15rem;
  color: var(--accent);
  white-space: nowrap;
}
.hero__name-label span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.hero__name-label svg { color: var(--accent); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsla(38, 92%, 55%, 0.2);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.hero__stat {
  border-left: 1px solid hsla(38, 92%, 55%, 0.3);
  padding-left: 1rem;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-fg);
  line-height: 1.1;
}
.hero__stat-label {
  font-size: 0.875rem;
  color: hsla(42, 100%, 95%, 0.5);
  margin-top: 0.25rem;
}

/* ─── 8. Services ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* ─── 9. Funnel / How It Works ─────────────────── */
.funnel {
  position: relative;
}

.funnel__line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 0;
}

.funnel__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.funnel__step:last-child { margin-bottom: 0; }

.funnel__card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.funnel__step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.funnel__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-fg);
}
.funnel__icon svg { width: 1.125rem; height: 1.125rem; }
.funnel__step-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.funnel__card h3 { color: var(--fg); margin-bottom: 0.5rem; }
.funnel__card p  { font-size: 0.9375rem; }

.funnel__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  display: none;
  flex-shrink: 0;
  z-index: 2;
}
.funnel__spacer { display: none; }

/* ─── 10. Results / Case Studies ───────────────── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.result-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsla(38, 92%, 55%, 0.2);
  background: hsla(38, 92%, 55%, 0.04);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.result-card:hover { box-shadow: var(--shadow-card-hover); }

.result-card__cat {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.result-card h3 { color: var(--fg); font-size: 1.0625rem; margin-bottom: 0.75rem; }
.result-card p  { font-size: 0.9375rem; }

.result-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}
.metric-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ─── 11. About ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__left .section-label { margin-bottom: 0.75rem; }
.about__left h2 { margin-bottom: 1rem; }

.about__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about__icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: hsla(38, 92%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}
.about__icon svg { width: 1rem; height: 1rem; }
.about__list span { font-size: 0.9375rem; color: var(--fg); line-height: 1.5; }

.about__card {
  background: var(--hero-gradient);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
}
.about__card h3 {
  color: var(--primary-fg);
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}
.about__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__point-icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: hsla(38, 92%, 55%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}
.about__point-icon svg { width: 1rem; height: 1rem; }
.about__point h4 { color: var(--primary-fg); font-size: 0.9375rem; margin-bottom: 0.2rem; }
.about__point p  { color: hsla(42, 100%, 95%, 0.6); font-size: 0.875rem; }

/* ─── 12. FAQ ──────────────────────────────────── */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fg);
  gap: 1rem;
  transition: background 0.2s;
  line-height: 1.4;
}
.faq-question:hover { background: var(--secondary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] {
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ─── 13. Contact ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info .section-label { margin-bottom: 0.75rem; }
.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p { font-size: 1.0625rem; margin-bottom: 2rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.contact__detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-fg);
}
.contact__detail-icon svg { width: 1.125rem; height: 1.125rem; }
.detail-title { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.detail-value { font-size: 0.875rem; color: var(--muted); }

.contact__audit-box {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid hsla(38, 92%, 55%, 0.25);
  background: hsla(38, 92%, 55%, 0.05);
}
.contact__audit-box h4 { font-size: 0.9375rem; color: var(--fg); margin-bottom: 0.5rem; }
.contact__audit-box p  { font-size: 0.875rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsla(38, 92%, 55%, 0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: hsl(0, 84%, 60%); }
.form-group textarea { resize: none; }

.form-error { font-size: 0.8125rem; color: hsl(0, 84%, 50%); min-height: 1rem; }

.form-status {
  text-align: center;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  margin-top: 0.25rem;
  display: none;
}
.form-status.success {
  display: block;
  background: hsla(142, 71%, 45%, 0.1);
  color: hsl(142, 60%, 28%);
  border: 1px solid hsla(142, 71%, 45%, 0.3);
}
.form-status.error {
  display: block;
  background: hsla(0, 84%, 60%, 0.08);
  color: hsl(0, 70%, 40%);
  border: 1px solid hsla(0, 84%, 60%, 0.25);
}

/* ─── 14. Footer ───────────────────────────────── */
.footer {
  background: var(--primary);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-fg);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: hsla(42, 100%, 95%, 0.6);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.footer__nav a:hover { color: var(--primary-fg); }
.footer__copy { font-size: 0.75rem; color: hsla(42, 100%, 95%, 0.35); }

/* ─── 15. Animations ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero elements animate on load via CSS keyframes */
.hero .fade-up {
  animation: fadeUpLoad 0.6s ease forwards;
}
@keyframes fadeUpLoad {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Avatar float animation ───────────────────── */
@keyframes avatarFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}
@keyframes shadowPulse {
  0%   { transform: translateX(-50%) scaleX(1)    scaleY(1);    opacity: 1; }
  50%  { transform: translateX(-50%) scaleX(0.7)  scaleY(0.6);  opacity: 0.4; }
  100% { transform: translateX(-50%) scaleX(1)    scaleY(1);    opacity: 1; }
}
.avatar-img {
  animation: avatarFloat 4s ease-in-out infinite;
  animation-delay: 0.8s;
}
.hero__avatar-wrap::before {
  animation: shadowPulse 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* ─── 16. Responsive ───────────────────────────── */

/* ── 640px — Tablet ── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero__stats   { grid-template-columns: repeat(4, 1fr); }
}

/* ── 768px — Desktop ── */
@media (min-width: 768px) {
  .navbar__links  { display: flex; }
  .navbar__toggle { display: none; }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 3rem;
  }
  .hero__avatar { justify-content: flex-end; }
  .avatar-img   { width: 22rem; }
  .hero__avatar-wrap::before { width: 72%; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .about-grid   { grid-template-columns: 1fr 1fr; }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── 1024px — Large ── */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(3, 1fr); }
  .avatar-img    { width: 27rem; }
  .hero__avatar-wrap::before { width: 68%; }

  /* Funnel timeline */
  .funnel__line   { display: block; }
  .funnel__dot    { display: flex; align-self: center; }
  .funnel__spacer { display: block; flex: 1; }

  .funnel__step {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    padding: 1.5rem 0;
    position: relative;
  }

  /* All cards take half the space */
  .funnel__card {
    flex: 1;
    max-width: calc(50% - 2rem);
  }

  /* Odd steps: card | dot | spacer */
  .funnel__step:nth-child(odd) .funnel__card    { order: 1; margin-right: 2rem; }
  .funnel__step:nth-child(odd) .funnel__dot     { order: 2; }
  .funnel__step:nth-child(odd) .funnel__spacer  { order: 3; }

  /* Even steps: spacer | dot | card */
  .funnel__step:nth-child(even) .funnel__spacer { order: 1; }
  .funnel__step:nth-child(even) .funnel__dot    { order: 2; }
  .funnel__step:nth-child(even) .funnel__card   { order: 3; margin-left: 2rem; }
}
