/* ===================================================
   DEAL SCOUT - LANDING PAGE
   Archetype: interactive_gamified
   Colors: #0f172a (navy), #22c55e (green), #eab308 (yellow), #ef4444 (red)
   =================================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-card: #141c2e;
  --green: #22c55e;
  --green-light: #4ade80;
  --green-glow: rgba(34, 197, 94, 0.25);
  --green-bg: rgba(34, 197, 94, 0.1);
  --yellow: #eab308;
  --yellow-light: #facc15;
  --yellow-bg: rgba(234, 179, 8, 0.1);
  --red: #ef4444;
  --red-light: #f87171;
  --red-bg: rgba(239, 68, 68, 0.1);
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-light: #334155;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* === TEXT UTILITIES === */
.text-profit {
  color: var(--green);
  position: relative;
}

.text-loss {
  color: var(--red);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 28px;
  height: 28px;
}

.nav-name {
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--green);
  color: var(--bg);
}

/* === HERO === */
.hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 197, 94, 0.06) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

/* Achievement badge */
.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--green-bg);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.badge-icon {
  display: flex;
  align-items: center;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  font-family: var(--font-mono);
}

/* Headline */
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* Hero form */
.hero-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.25s;
}

.hero-form input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.hero-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--green) 0%, #16a34a 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.35), 0 8px 24px rgba(34, 197, 94, 0.25);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form status */
.form-status {
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* Skip link */
.skip-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.skip-link:hover {
  color: var(--green);
}

/* Hero proof numbers */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-number {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--green);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* === HERO VISUAL: SCORE CARD STACK === */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.score-card-stack {
  position: relative;
  width: 360px;
  height: 380px;
}

.score-card {
  position: absolute;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.score-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  z-index: 10 !important;
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.sc-1 {
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sc-2 {
  top: 130px;
  left: 20px;
  z-index: 2;
  opacity: 0.85;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.sc-3 {
  top: 260px;
  left: 10px;
  z-index: 1;
  opacity: 0.65;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sc-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.sc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 8px;
  font-weight: 800;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.sc-badge-high {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.sc-badge-mid {
  background: var(--yellow-bg);
  color: var(--yellow);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.sc-badge-low {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.sc-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
}

.sc-label {
  color: var(--text-muted);
}

.sc-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text);
}

.sc-progress-wrap {
  margin-top: 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
  position: relative;
}

.sc-progress-bar {
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sc-bar-low {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}

.sc-progress-label {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #fff;
  white-space: nowrap;
}

/* === SECTIONS (SHARED) === */
.section {
  padding: 80px 0;
}

.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.section-badge-red {
  color: var(--red);
  background: var(--red-bg);
  border-color: rgba(239, 68, 68, 0.2);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 640px;
}

/* === PROBLEM SECTION === */
.section-problem {
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.08);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-icon-red {
  background: var(--red-bg);
}

.problem-icon-yellow {
  background: var(--yellow-bg);
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === HOW IT WORKS === */
.section-how {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(34, 197, 94, 0.04) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 42px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.step-number span {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, #16a34a 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
}

.step-xp {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--yellow);
  background: var(--yellow-bg);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(234, 179, 8, 0.2);
  animation: xpFloat 2s ease-in-out infinite;
}

@keyframes xpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* === FEATURES === */
.section-features {
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.08);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 10px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* Feature card interactive elements */
.feature-score-bar {
  height: 24px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.feature-score-fill {
  height: 100%;
  width: var(--score);
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
  transition: width 1s ease;
}

.feature-stars {
  display: flex;
  gap: 4px;
  font-size: 1.3rem;
}

.star-lit { color: var(--yellow); }
.star-dim { color: var(--bg-tertiary); }

.feature-file-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--green);
  letter-spacing: 0.05em;
}

.feature-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}

.mini-bar {
  width: 20%;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  transition: height 0.6s ease;
}

.mb-high { background: var(--green); }
.mb-mid { background: var(--yellow); }
.mb-low { background: var(--red); }

.feature-risk-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.risk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.risk-green { background: var(--green); box-shadow: 0 0 8px var(--green-glow); }
.risk-yellow { background: var(--yellow); box-shadow: 0 0 8px rgba(234, 179, 8, 0.25); }
.risk-red { background: var(--red); box-shadow: 0 0 8px rgba(239, 68, 68, 0.25); }

.feature-history-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.history-pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.hp-dim {
  opacity: 0.4;
}

/* === SOCIAL PROOF / ANCHORING === */
.section-proof {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(34, 197, 94, 0.04) 0%, transparent 70%),
    var(--bg);
}

.proof-anchor-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  margin-bottom: 48px;
}

.anchor-left, .anchor-right {
  text-align: center;
}

.anchor-strikethrough {
  position: relative;
}

.anchor-old-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.anchor-per {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.anchor-new-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--green);
}

.anchor-free .anchor-per {
  color: var(--green);
}

.anchor-context {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.anchor-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.06);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* === BOTTOM CTA === */
.section-cta {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%),
    var(--bg);
}

.cta-wrap {
  max-width: 600px;
}

/* Level badge */
.cta-level-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.level-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.level-ring-svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.level-progress {
  animation: levelFill 2s ease-out forwards;
}

@keyframes levelFill {
  from { stroke-dashoffset: 226; }
  to { stroke-dashoffset: 45; }
}

.level-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--green);
}

.level-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-form {
  justify-content: center;
}

/* === FAQ === */
.section-faq {
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 700px;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-logo {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .proof-anchor-card {
    padding: 36px 32px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-form {
    flex-direction: column;
  }

  .hero-form input[type="email"] {
    width: 100%;
  }

  .hero-proof {
    gap: 16px;
  }

  .proof-number {
    font-size: 1.4rem;
  }

  .problem-grid,
  .steps-track,
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .proof-anchor-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 32px 24px;
  }

  .anchor-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-divider {
    display: none;
  }

  .anchor-old-price,
  .anchor-new-price {
    font-size: 2.2rem;
  }
}
