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

:root {
  --bg: #05070f;
  --bg2: #080c18;
  --bg3: #0c1022;
  --card: rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.07);
  --card-border-hover: rgba(108,99,255,0.45);
  --primary: #7c6fff;
  --primary2: #b8a9ff;
  --primary-glow: rgba(124,111,255,0.35);
  --accent: #00e5b8;
  --accent2: #00c49a;
  --accent-glow: rgba(0,229,184,0.3);
  --gold: #f5c842;
  --gold2: #ffb800;
  --red: #ff4d6d;
  --text: #e8edf5;
  --text2: #a8b3c8;
  --muted: #5a6a82;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(5,7,15,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(124,111,255,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; flex-shrink: 0; }
.logo i { color: var(--primary); font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.nav-links { display: flex; list-style: none; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  padding: 8px 0 16px;
  background: rgba(5,7,15,0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--card-border);
}
.mobile-menu > a {
  color: var(--text); text-decoration: none;
  padding: 14px 24px; font-weight: 500; font-size: 0.95rem;
  border-bottom: 1px solid var(--card-border);
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center;
}
.mobile-menu > a:hover { color: var(--primary); background: rgba(124,111,255,0.06); }
.mobile-menu.open { display: flex; }

.mobile-menu-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 24px 4px;
}
.mobile-login {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  border: 1px solid var(--card-border);
  color: var(--text) !important; font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.mobile-login:hover { border-color: var(--primary); color: var(--primary) !important; background: rgba(124,111,255,0.08); }
.mobile-get-started {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 50px; font-size: 0.9rem;
  text-decoration: none; font-weight: 600;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9d4edd);
  color: #fff; border: none; padding: 12px 24px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--primary-glow), 0 0 0 1px rgba(124,111,255,0.2);
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--primary-glow), 0 0 0 1px rgba(124,111,255,0.4); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #00a884);
  color: #05070f; border: none; padding: 12px 24px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--accent-glow); }

.btn-ghost { color: var(--text2); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.btn-ghost:hover { color: #fff; }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.12); padding: 12px 24px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(124,111,255,0.1); color: #fff; }

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; gap: 60px;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 700px; height: 700px; background: radial-gradient(circle, #7c6fff, #4c1d95); top: -250px; left: -200px; animation-delay: 0s; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, #00e5b8, #0891b2); top: 35%; right: -150px; animation-delay: 3s; }
.orb3 { width: 350px; height: 350px; background: radial-gradient(circle, #f5c842, #f97316); bottom: -100px; left: 25%; animation-delay: 6s; opacity: 0.1; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,111,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,111,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,111,255,0.12); border: 1px solid rgba(124,111,255,0.35);
  color: var(--primary2); padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(124,111,255,0.15);
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-sub { color: var(--text2); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.hstat { display: flex; flex-direction: column; }
.hstat-num { font-size: 1.8rem; font-weight: 800; color: #fff; }
.hstat span { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.hstat small { color: var(--muted); font-size: 0.8rem; margin-top: 2px; }
.hstat-divider { width: 1px; height: 40px; background: var(--card-border); }

/* ── HERO VISUAL ── */
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.card-3d { position: relative; }
.portfolio-card {
  background: linear-gradient(145deg, rgba(124,111,255,0.1), rgba(0,229,184,0.05));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(124,111,255,0.25);
  border-radius: 28px; padding: 28px; width: 320px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,111,255,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(3deg); }
  50% { transform: translateY(-15px) rotateY(-5deg) rotateX(3deg); }
}
.pc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: var(--muted); font-size: 0.85rem; }
.pc-badge { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; }
.pc-badge.live { color: var(--accent); }
.pc-badge.live i { font-size: 0.5rem; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.pc-value { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.5px; }
.pc-change { font-size: 0.85rem; margin-bottom: 20px; }
.pc-change.positive { color: var(--accent); }
.pc-chart { height: 60px; margin-bottom: 20px; }
.pc-chart svg { width: 100%; height: 100%; }
.pc-coins { display: flex; flex-direction: column; gap: 10px; }
.coin-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.coin-item img { width: 22px; height: 22px; }
.coin-item span:last-child { margin-left: auto; }
.coin-item .pos { color: var(--accent); font-weight: 600; }

.floating-badge {
  position: absolute;
  background: rgba(12,16,34,0.9);
  backdrop-filter: blur(16px); border: 1px solid rgba(124,111,255,0.3);
  padding: 10px 16px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.fb1 { top: -20px; right: -30px; color: var(--accent); animation: cardFloat 5s ease-in-out infinite 1s; }
.fb2 { bottom: 20px; left: -40px; color: var(--primary2); animation: cardFloat 5s ease-in-out infinite 2s; }

/* ── TICKER ── */
.ticker-wrap {
  background: rgba(124,111,255,0.04);
  border-top: 1px solid rgba(124,111,255,0.12);
  border-bottom: 1px solid rgba(124,111,255,0.12);
  overflow: hidden; padding: 14px 0;
}
.ticker {
  display: flex; gap: 48px; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap; color: var(--text);
}
.ticker span img { width: 18px; height: 18px; }
.ticker .up { color: var(--accent); font-weight: 600; }
.ticker .down { color: var(--red); font-weight: 600; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS COMMON ── */
.section-label {
  display: inline-block; color: var(--primary);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 48px; line-height: 1.2; }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(124,111,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,111,255,0.06), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,111,255,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,111,255,0.15);
}
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,111,255,0.25), rgba(0,229,184,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary2); margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(124,111,255,0.2);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; }

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(124,111,255,0.08), rgba(0,229,184,0.04));
  border-top: 1px solid rgba(124,111,255,0.12);
  border-bottom: 1px solid rgba(124,111,255,0.12);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,111,255,0.06), transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; position: relative; }
.stat-card { text-align: center; }
.stat-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.stat-num { font-size: 3rem; font-weight: 900; color: #fff; display: inline; letter-spacing: -1px; }
.stat-suffix { font-size: 2rem; font-weight: 900; color: var(--accent); display: inline; }
.stat-label { color: var(--text2); font-size: 0.85rem; margin-top: 6px; }

/* ── PLANS ── */
.plans { padding: 100px 0; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.plan-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(124,111,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,111,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.plan-card.featured {
  background: linear-gradient(145deg, rgba(124,111,255,0.15), rgba(157,78,221,0.1));
  border-color: rgba(124,111,255,0.5);
  box-shadow: 0 0 60px rgba(124,111,255,0.2), 0 0 0 1px rgba(124,111,255,0.2);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-6px); box-shadow: 0 0 80px rgba(124,111,255,0.3), 0 20px 50px rgba(0,0,0,0.4); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #05070f; padding: 5px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,200,66,0.4);
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.plan-price { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.plan-price span { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.plan-roi { font-size: 2.4rem; font-weight: 900; color: var(--accent); margin-bottom: 28px; letter-spacing: -1px; text-shadow: 0 0 30px var(--accent-glow); }
.plan-roi small { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text2); }
.plan-features li i.fa-check { color: var(--accent); }
.plan-features li i.fa-xmark { color: var(--muted); }
.plan-features li.muted { color: var(--muted); }
.plan-btn { width: 100%; justify-content: center; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; }
.steps { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center; }
.step {
  flex: 1; min-width: 220px; max-width: 280px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(124,111,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  position: relative; transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(124,111,255,0.3); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.step-icon { font-size: 2rem; color: var(--primary2); margin-bottom: 16px; margin-top: 8px; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; }
.step-arrow { color: var(--primary); font-size: 1.2rem; margin-top: 60px; opacity: 0.5; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(124,111,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(124,111,255,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testi-card p { color: var(--text2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}
.testi-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testi-author small { color: var(--muted); font-size: 0.8rem; }

/* ── FAQ ── */
.faq { padding: 100px 0; }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(124,111,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(124,111,255,0.35); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  padding: 20px 24px; text-align: left; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}
.faq-q i { color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text2); font-size: 0.9rem; line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(124,111,255,0.1), rgba(0,229,184,0.06));
  border-top: 1px solid rgba(124,111,255,0.15);
  position: relative; overflow: hidden;
}
.orb-cta1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--primary), transparent); top: -250px; left: -100px; opacity: 0.12; }
.orb-cta2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--accent), transparent); bottom: -200px; right: -50px; opacity: 0.1; }
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-banner p { color: var(--text2); font-size: 1.1rem; margin-bottom: 36px; }

/* ── FOOTER ── */
.footer { padding: 80px 0 0; background: var(--bg2); border-top: 1px solid rgba(124,111,255,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; margin: 16px 0 24px; max-width: 260px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.socials a:hover { color: var(--primary); border-color: rgba(124,111,255,0.4); background: rgba(124,111,255,0.1); box-shadow: 0 4px 16px var(--primary-glow); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col a { color: var(--text2); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary2); }
.footer-bottom {
  border-top: 1px solid var(--card-border); padding: 24px;
  text-align: center; color: var(--muted); font-size: 0.8rem;
}

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

/* ══════════════════════════════════════════
   RESPONSIVE — Desktop · Android · iPhone
══════════════════════════════════════════ */

/* ── DESKTOP  ≥ 1200px (default styles above already cover this) ── */
@media (min-width: 1200px) {
  .hero { gap: 80px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── TABLET / ANDROID  768px – 1199px ── */
@media (max-width: 1199px) and (min-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 110px 32px 80px;
    gap: 48px;
  }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }

  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.82rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; grid-column: span 2; max-width: 420px; margin: 0 auto; }
  .plan-card.featured:hover { transform: translateY(-6px); }

  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }

  .steps { gap: 12px; }
  .step { min-width: 200px; }
  .step-arrow { display: none; }

  .portfolio-card { width: 300px; }
}

/* ── SMALL ANDROID / LARGE PHONE  481px – 767px ── */
@media (max-width: 767px) and (min-width: 481px) {
  .navbar { padding: 12px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; margin-left: auto; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 40px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
  .hero-cta .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; gap: 16px; }
  .hstat-num, .hstat span { font-size: 1.4rem; }
  .hero-visual { width: 100%; }
  .portfolio-card { width: 290px; }
  .fb1, .fb2 { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }

  .section-title { font-size: 1.7rem; }
  .features, .plans, .how, .testimonials, .faq { padding: 70px 0; }
  .stats-section { padding: 60px 0; }
  .cta-banner { padding: 70px 20px; }
}

/* ── iPHONE / SMALL PHONE  ≤ 480px ── */
@media (max-width: 480px) {
  .navbar { padding: 10px 0; }
  .nav-container { padding: 0 16px; }
  .logo { font-size: 1.1rem; }
  .logo i { font-size: 1.2rem; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .mobile-menu { padding: 12px 16px 16px; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 16px 50px;
    gap: 32px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero h1 { font-size: 1.9rem; line-height: 1.15; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
  .hero-cta .btn-lg { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
  .hero-stats { flex-direction: row; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .hstat-num, .hstat span { font-size: 1.3rem; }
  .hstat small { font-size: 0.72rem; }
  .hstat-divider { display: none; }

  .hero-visual { width: 100%; }
  .portfolio-card { width: 100%; max-width: 320px; padding: 20px; }
  .pc-value { font-size: 1.6rem; }
  .fb1, .fb2 { display: none; }

  .container { padding: 0 16px; }
  .section-label { font-size: 0.72rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 32px; }

  .features, .plans, .how, .testimonials, .faq { padding: 56px 0; }
  .stats-section { padding: 48px 0; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; }
  .fc-icon { width: 44px; height: 44px; font-size: 1.1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2.2rem; }
  .stat-suffix { font-size: 1.6rem; }

  .plans-grid { grid-template-columns: 1fr; gap: 20px; }
  .plan-card { padding: 28px 20px; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .plan-roi { font-size: 1.8rem; }

  .steps { flex-direction: column; align-items: center; gap: 28px; }
  .step { max-width: 100%; width: 100%; min-width: unset; padding: 28px 20px; }
  .step-arrow { display: none; }

  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 24px; }

  .faq-q { font-size: 0.88rem; padding: 16px 18px; }
  .faq-a { font-size: 0.85rem; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }

  .cta-banner { padding: 56px 16px; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.95rem; }
  .cta-banner .btn-lg { width: 100%; justify-content: center; }

  .footer { padding: 56px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-brand { grid-column: unset; }
  .footer-brand p { max-width: 100%; }

  .ticker { gap: 28px; }
  .ticker span { font-size: 0.78rem; }
}
