/* ===========================================
   CARTEL CAPITALS — styles.css
   Mobile-First Design
   =========================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #F0C060;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --green: #1A7A3E;
  --green-dark: #0D3D22;
  --dark: #080E0A;
  --dark-2: #0F1A12;
  --dark-3: #162019;
  --dark-4: #1C2A1F;
  --text: #E8F0EA;
  --text-muted: #8DA494;
  --border: rgba(201, 168, 76, 0.18);
  --border-dim: rgba(255,255,255,0.07);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
  --font-head: 'Oswald', sans-serif;
  --font-display:'Bebas Neue', cursive;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY HELPERS --- */
.gold { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- CONTAINER --- */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* --- SECTION --- */
.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--dark-2);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  padding: 16px 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #A8722A 100%);
  color: #0D1A10;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4), 0 0 0 0 var(--gold-glow);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(201, 168, 76, 0.55);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 18px 36px;
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
  border-radius: 14px;
  font-size: 1.1rem;
  padding: 20px 32px;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0D1A10;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 500px;
  z-index: 100;
  padding: 8px 12px 8px 16px;
  background: rgba(15, 26, 18, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nav.scrolled {
  background: rgba(15, 26, 18, 0.9);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(201, 168, 76, 0.1);
}

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

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

.nav-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 122, 62, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ADE80; }
  50% { opacity: 0.6; box-shadow: 0 0 16px #4ADE80; }
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 60px var(--gold-glow), 0 0 0 2px var(--border);
  animation: float 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 11vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: 100%;
  max-width: 380px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dim);
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Hero chart mockup */
.hero-chart-mockup {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 20px 16px 12px;
  width: 100%;
  max-width: 380px;
  margin-top: 8px;
}

.chart-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.chart-bar.gain {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 8px var(--gold-glow);
}

.chart-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
}

.signal-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 14px 0;
  overflow: hidden;
}

.trust-scroll {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scroll-trust 22s linear infinite;
}

@keyframes scroll-trust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.trust-sep {
  color: var(--gold);
  opacity: 0.5;
}

/* --- STEPS --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.step {
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::before { opacity: 1; }
.step:hover { border-color: var(--border); box-shadow: var(--shadow-gold); }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.step-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--border), transparent);
  margin: 0 auto;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::after { opacity: 0.5; }
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feat-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.feat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.t-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

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

.t-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.t-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- WINS LIST --- */
.wins-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
  transition: border-color 0.3s;
}

.win-row.win { border-left: 3px solid var(--gold); }
.win-row.loss { border-left: 3px solid rgba(255,80,80,0.6); opacity: 0.6; }
.win-row:hover { border-color: var(--border); }

.win-pair {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  min-width: 70px;
}

.win-dir {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}

.win-dir.buy {
  background: rgba(74, 222, 128, 0.12);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.win-dir.sell {
  background: rgba(248, 113, 113, 0.12);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.win-pips {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  flex: 1;
  text-align: right;
}

.win-row.loss .win-pips { color: #F87171; }

.win-badge {
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 56px;
  text-align: right;
  color: #4ADE80;
}

.loss-badge { color: #F87171; }

.wins-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: italic;
  text-align: center;
}

/* --- PRICING --- */
.join-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card {
  background: linear-gradient(160deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-gold);
  text-align: center;
  overflow: hidden;
}

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

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0D1A10;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-top: 10px;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 0 auto 28px auto;
  width: max-content;
  max-width: 100%;
}

.pricing-list li {
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-secure {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--border);
}

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

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] {
  color: var(--gold-light);
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

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

.faq-a.open {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-a p {
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
  background: var(--dark-2);
}

.final-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(26, 122, 62, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 40px var(--gold-glow);
}

.final-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.final-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dim);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.65;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

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

/* --- ANIMATIONS ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.65s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.75s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.85s; opacity: 1; transform: none; }

/* --- TABLET RESPONSIVE (≥ 480px) --- */
@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }
}

/* --- DESKTOP (≥ 768px) --- */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

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

  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-direction: row;
    align-items: stretch;
  }

  .step-connector {
    width: 28px;
    height: 2px;
    margin: auto 0;
    background: linear-gradient(90deg, var(--border), transparent);
  }

  .step {
    flex: 1;
  }

  .hero {
    padding-top: 140px;
  }
}

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