/* =========================================
   DESIGN SYSTEM — BrutalReply v8
   Clean, professional, no AI slop
   ========================================= */

:root {
  --bg-primary: #f7f0e6;
  --bg-secondary: #f0e8d8;
  --bg-card: #ffffff;
  --bg-card-hover: #fdfbf8;

  --text-primary: #1a1612;
  --text-secondary: #5c5347;
  --text-muted: #9a8e7f;
  --text-accent: #c45d3e;

  --accent: #c45d3e;
  --accent-hover: #d4714f;

  --green: #2d7a4f;
  --border: #e8dfd0;
  --border-hover: #d4c9b6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(26,22,18,0.04);
  --shadow-md: 0 4px 16px rgba(26,22,18,0.06);
  --shadow-lg: 0 8px 32px rgba(26,22,18,0.08);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: white; }

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,240,230,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active { display: flex; }

.mobile-link { font-size: 1rem; padding: 0.5rem 0; color: var(--text-secondary); }
.mobile-link:hover { color: var(--text-primary); }

/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(64px + 6rem) 2rem 6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 900px;
}

.hero-title .platform-icons {
  display: inline-flex;
  gap: 12px;
  vertical-align: middle;
  margin: 0 8px;
}

.hero-title .platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  transition: all 0.3s;
}

.hero-title .platform-icon.whatsapp {
  background: linear-gradient(145deg, #25d366, #128c7e);
  transform: rotate(-10deg);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.hero-title .platform-icon.instagram {
  background: linear-gradient(145deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transform: rotate(10deg);
  box-shadow: 0 8px 30px rgba(220,39,67,0.4);
}

.hero-title .platform-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.125rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =========================================
   SECTIONS
   ========================================= */

.section { padding: 6rem 2rem; }
.section-dark { background: var(--bg-secondary); }

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

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   STEPS
   ========================================= */

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

.step-card {
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.step-card:hover .step-number { color: var(--accent); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   UPLOAD ZONE
   ========================================= */

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  max-width: 640px;
  margin: 0 auto 2rem;
  background: var(--bg-card);
}

.upload-zone:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.upload-zone.drag-over {
  border-color: var(--accent);
  transform: scale(1.01);
}

.upload-zone.has-file {
  border-style: solid;
  padding: 1.5rem;
  cursor: default;
}

.upload-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.upload-zone:hover .upload-icon {
  color: var(--accent);
  transform: translateY(-4px);
}

.upload-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.upload-hint { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.upload-formats { display: flex; justify-content: center; gap: 0.5rem; }

.format-badge {
  font-family: monospace;
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.upload-preview { position: relative; display: flex; justify-content: center; }

.upload-preview img {
  max-height: 300px;
  border-radius: var(--radius-md);
  object-fit: contain;
  border: 1px solid var(--border);
}

.upload-remove {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.upload-remove:hover { transform: scale(1.1); background: var(--accent); }

#analyzeBtn { display: block; margin: 0 auto; max-width: 320px; }

/* =========================================
   LANGUAGE SELECTOR
   ========================================= */

.language-selector { margin-bottom: 2rem; text-align: center; }

.language-selector-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.language-options { display: flex; gap: 0.5rem; justify-content: center; }

.language-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.language-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }

.language-btn.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* =========================================
   LOADING
   ========================================= */

.loading-container { max-width: 640px; margin: 0 auto 3rem; text-align: center; }

.loading-bar-track {
  width: 100%;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.loading-stages { display: flex; flex-direction: column; gap: 0.25rem; }

.loading-stage { font-size: 0.85rem; color: var(--text-muted); transition: all 0.3s; }
.loading-stage.active { color: var(--text-primary); font-weight: 500; }
.loading-stage.done { color: var(--green); }
.loading-stage.done::before { content: '\2713 '; }

/* =========================================
   RESULTS — Clean, professional
   ========================================= */

.results { max-width: 700px; margin: 0 auto; }

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Score */
.score-card { display: flex; align-items: center; gap: 3rem; }

.score-ring { position: relative; width: 120px; height: 120px; flex-shrink: 0; }

.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.score-ring-bg { fill: none; stroke: var(--bg-secondary); stroke-width: 8; }

.score-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16,1,0.3,1);
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.score-info { flex: 1; }

.score-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.score-subtitle { color: var(--text-secondary); font-size: 0.95rem; }

/* Analysis sections */
.analysis-section { position: relative; }

.analysis-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.analysis-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analysis-badge.free { background: #dcfce7; color: #166534; }
.analysis-badge.premium { background: #fef3c7; color: #92400e; }

.analysis-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.analysis-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.analysis-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Paywall — Clean, not sleazy */
.paywall-section {
  position: relative;
  overflow: hidden;
}

.paywall-content { max-height: 200px; overflow: hidden; position: relative; }

.paywall-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-card));
}

.paywall-cta-box {
  text-align: center;
  padding: 2rem 0 0;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

.paywall-cta-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.paywall-cta-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  scroll-snap-align: start;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.testimonial-avatar svg { display: block; }

.testimonial-info { flex: 1; }

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-flag { font-size: 0.85rem; }

.testimonial-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.testimonial-type.family { background: #fef3c7; color: #92400e; }
.testimonial-type.girlfriend { background: #fce7f3; color: #9d174d; }
.testimonial-type.friends { background: #dbeafe; color: #1e40af; }
.testimonial-type.ex { background: #fee2e2; color: #991b1b; }
.testimonial-type.work { background: #e0e7ff; color: #3730a3; }

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

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.testimonials-nav button:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* =========================================
   STATS
   ========================================= */

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* =========================================
   WALL OF LOVE — Marquee
   ========================================= */

.wall-section { overflow: hidden; }

.wall-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marquee-left 40s linear infinite;
  width: max-content;
  padding: 1rem 0;
}

.wall-marquee.reverse { animation: marquee-right 40s linear infinite; }
.wall-marquee:hover { animation-play-state: paused; }

.wall-card {
  flex: 0 0 180px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.wall-card:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.wall-card svg { display: block; }

.wall-card-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* =========================================
   PRICING
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card-featured { border-color: var(--accent); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-currency { font-size: 1.5rem; font-weight: 400; vertical-align: top; }

.pricing-features { list-style: none; margin-bottom: 2rem; }

.pricing-features li {
  padding: 0.625rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 600; }

/* =========================================
   FAQ
   ========================================= */

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: all 0.3s;
}

.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); color: var(--accent); }
.faq-question:hover { color: var(--accent); }

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =========================================
   CTA
   ========================================= */

.cta-section { text-align: center; border-top: 1px solid var(--border); }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-text { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }

/* =========================================
   FOOTER
   ========================================= */

.footer { padding: 6rem 2rem 2rem; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; line-height: 1.6; }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

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

.footer-disclaimer { max-width: 500px; text-align: right; }

/* =========================================
   SPINNER
   ========================================= */

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.results .result-card { animation: fadeInUp 0.5s ease both; }
.results .result-card:nth-child(1) { animation-delay: 0s; }
.results .result-card:nth-child(2) { animation-delay: 0.1s; }
.results .result-card:nth-child(3) { animation-delay: 0.2s; }
.results .result-card:nth-child(4) { animation-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 968px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-title .platform-icon { width: 56px; height: 56px; border-radius: 14px; }
  .hero-title .platform-icon svg { width: 28px; height: 28px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .score-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 280px; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .upload-zone { padding: 2rem 1rem; }
  .result-card { padding: 1.5rem; }
}

/* =========================================
   A11Y
   ========================================= */

.btn:focus-visible, .nav-link:focus-visible, .nav-cta:focus-visible, .upload-zone:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .wall-marquee, .wall-marquee.reverse { animation: none; }
}
