/* ===================================
   SOLAR LEADS – Shared Stylesheet
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --orange: #FF5C00;
  --orange-light: #FF7A2E;
  --orange-glow: rgba(255,92,0,0.15);
  --green: #0D2B1A;
  --green-mid: #1A4A2E;
  --gold: #FFBE00;
  --cream: #FDFCF8;
  --white: #FFFFFF;
  --dark: #0F1A0D;
  --text: #2A2A2A;
  --text-muted: #6B7B6B;
  --border: #E4E9E4;
  --section-bg: #F4F7F4;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  color: var(--dark);
}

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

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

/* ——— NAV ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--orange); }
.nav-logo .sun-icon { font-size: 1.5rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; display: block; transition: all .3s; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,92,0,0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,92,0,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-lg { padding: 20px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ——— HERO ——— */
.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 80px 6vw 60px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255,92,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,190,0,0.06) 0%, transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(255,92,0,0.05);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,0,0.1);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,92,0,0.2);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item .check { color: var(--orange); font-size: 1rem; }

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.hero-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.savings-display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.savings-display span { color: var(--orange); }

.savings-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

.savings-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.savings-row strong { font-weight: 600; color: var(--green-mid); }

.floating-badge {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,92,0,0.4);
  transform: rotate(3deg);
}
.floating-badge .big { font-size: 1.4rem; display: block; line-height: 1; }

/* ——— SECTIONS ——— */
.section { padding: 80px 6vw; }
.section-alt { background: var(--section-bg); }
.section-dark { background: var(--green); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.container { max-width: 1100px; margin: 0 auto; }

/* ——— BENEFIT CARDS ——— */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.benefit-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ——— STEPS ——— */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 15%;
  width: 70%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 6px rgba(255,92,0,0.1);
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ——— CTA BANNER ——— */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FF3D00 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner::before {
  content: '☀';
  position: absolute;
  font-size: 200px;
  opacity: 0.07;
  top: -30px; right: -20px;
  line-height: 1;
}

.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner .btn-secondary { background: var(--white); color: var(--orange); }
.cta-banner .btn-secondary:hover { background: var(--cream); }

/* ——— STATS ——— */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 60px;
}

.stat {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ——— FAQ ——— */
.faq { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .icon { flex-shrink: 0; font-size: 1.2rem; transition: transform .3s; }
.faq-q.open .icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s;
}
.faq-a.open { max-height: 300px; }
.faq-a p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ——— REVIEWS ——— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-location { font-size: 0.78rem; color: var(--text-muted); }

/* ——— FOOTER ——— */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 6vw 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 0.88rem; transition: color .2s; }
.footer ul a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 80px 6vw 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ——— FUNNEL STYLES ——— */
.funnel-wrap {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 60px 6vw;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,92,0,0.07) 0%, transparent 60%), var(--cream);
}

.funnel-box {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
}

.funnel-header {
  background: linear-gradient(135deg, var(--orange), #FF3D00);
  padding: 32px;
  color: var(--white);
  text-align: center;
}

.funnel-header h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.funnel-header p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.progress-wrap { padding: 24px 32px 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 50px;
  transition: width .4s ease;
}

.funnel-step { padding: 32px; display: none; }
.funnel-step.active { display: block; }

.funnel-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.funnel-step > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.choice-btn {
  padding: 20px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.choice-btn:hover, .choice-btn.selected {
  border-color: var(--orange);
  background: rgba(255,92,0,0.05);
  color: var(--orange);
}
.choice-btn .emoji { display: block; font-size: 2rem; margin-bottom: 8px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--dark); }

.form-input, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}

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

.funnel-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 8px;
}

.btn-next, .btn-back {
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-next { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(255,92,0,0.3); }
.btn-next:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-back { background: none; color: var(--text-muted); }
.btn-back:hover { color: var(--dark); }

.disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; text-align: center; line-height: 1.5; }

/* Success screen */
.funnel-success { padding: 48px 32px; text-align: center; display: none; }
.funnel-success.active { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.funnel-success h2 { font-size: 1.6rem; margin-bottom: 12px; }
.funnel-success p { color: var(--text-muted); max-width: 380px; margin: 0 auto 28px; }
.success-steps { text-align: left; background: var(--section-bg); border-radius: var(--radius); padding: 20px 24px; margin: 0 auto; max-width: 360px; }
.success-steps li { display: flex; gap: 10px; padding: 8px 0; font-size: 0.9rem; }
.success-steps li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ——— SEO PAGE ——— */
.seo-content { max-width: 800px; margin: 0 auto; }
.seo-content h2 { font-size: 1.7rem; font-weight: 800; margin: 48px 0 16px; }
.seo-content h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; color: var(--green-mid); }
.seo-content p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.seo-content ul { list-style: none; margin-bottom: 24px; }
.seo-content ul li { padding: 8px 0; font-size: 0.95rem; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.seo-content ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.info-box {
  background: rgba(255,92,0,0.06);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box strong { display: block; font-size: 0.9rem; color: var(--orange); margin-bottom: 6px; }
.info-box p { margin: 0; font-size: 0.9rem; }

.inline-cta {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  color: var(--white);
}
.inline-cta h3 { color: var(--white); margin-bottom: 10px; }
.inline-cta p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ——— RATGEBER ——— */
.article-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-meta span { display: flex; align-items: center; gap: 6px; }

/* ——— UEBER UNS ——— */
.team-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}

/* ——— KONTAKT ——— */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.kontakt-info h3 { font-size: 1.1rem; margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.contact-item span { font-size: 0.9rem; color: var(--text-muted); }

.kontakt-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.kontakt-form h3 { margin-bottom: 28px; }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .hero { min-height: auto; padding: 60px 5vw 40px; }
  .section { padding: 60px 5vw; }
  .choice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; }
  .funnel-box { border-radius: 16px; }
  .funnel-step, .funnel-header { padding: 24px; }
  .progress-wrap { padding: 20px 24px 0; }
}

/* Animation utilities */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp .6s ease forwards;
}
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .2s; opacity: 0; }
.delay-3 { animation-delay: .3s; opacity: 0; }
.delay-4 { animation-delay: .4s; opacity: 0; }
