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

:root {
  --bg:        #06060a;
  --bg-2:      #0d0d16;
  --bg-3:      #111118;
  --glass:     rgba(255, 255, 255, 0.04);
  --glass-2:   rgba(255, 255, 255, 0.07);
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);
  --text:      #f0f0f8;
  --muted:     rgba(240, 240, 248, 0.45);
  --muted-2:   rgba(240, 240, 248, 0.25);
  --accent:    #4f8eff;
  --accent-2:  #a855f7;
  --accent-3:  #06d6a0;
  --glow:      rgba(79, 142, 255, 0.25);
  --glow-2:    rgba(168, 85, 247, 0.2);
  --radius:    16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* === BACKGROUND ORBS === */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(79,142,255,0.22) 0%, transparent 70%); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 70%); top: 40%; right: -150px; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,214,160,0.12) 0%, transparent 70%); bottom: 10%; left: 20%; }

/* === UTILITY === */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.muted-text { color: var(--muted); }
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,255,.1);
  border: 1px solid rgba(79,142,255,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.label-tag.light { color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.section-h {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 52px; max-width: 520px; }
.body-text { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.dot-live {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.mt { margin-top: 24px; }

/* === BUTTONS === */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: .22s ease;
  box-shadow: 0 0 0 rgba(79,142,255,0);
}
.btn-glow:hover {
  background: #6fa3ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(79,142,255,.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--glass);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: .22s ease;
}
.btn-ghost:hover { background: var(--glass-2); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(6,6,10,0);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.navbar.scrolled {
  background: rgba(6,6,10,.85);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.03em; text-decoration: none; color: var(--text); }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 8px 14px; border-radius: var(--radius-sm); transition: .18s ease; }
.nav-links a:hover { color: var(--text); background: var(--glass); }
.btn-nav {
  background: var(--glass-2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-2) !important;
  padding: 9px 20px !important;
}
.btn-nav:hover { background: var(--accent) !important; border-color: var(--accent) !important; color: #fff !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: .22s ease; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-inner { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: .02em;
}
.hero-title {
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-metrics { display: flex; gap: 12px; flex-wrap: wrap; }
.metric-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.metric-val { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.metric-label { font-size: 12px; color: var(--muted); }

.hero-float-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(24px);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 12px))} }
.float-icon { font-size: 28px; }
.float-text { display: flex; flex-direction: column; gap: 2px; }
.float-num { font-size: 26px; font-weight: 900; letter-spacing: -.03em; color: var(--accent-3); }
.float-desc { font-size: 12px; color: var(--muted); }

/* === TICKER === */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--glass);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker span { font-size: 13px; font-weight: 600; color: var(--muted); padding: 0 16px; letter-spacing: .04em; text-transform: uppercase; }
.ticker .sep { color: var(--accent); font-size: 10px; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* === ABOUT === */
.about { padding: 120px 0; position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.about-left { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.avatar-ring {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,142,255,.3), rgba(168,85,247,.3));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 80px rgba(79,142,255,.2);
}
.avatar-inner {
  width: 190px; height: 190px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid var(--border);
}
.avatar-photo {
  background: none;
  overflow: hidden;
}
.avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.logo img { height: 30px; width: auto; display: block; }
.avatar-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-3);
  white-space: nowrap;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.skill-tags span {
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: .18s ease;
}
.skill-tags span:hover { color: var(--accent); border-color: rgba(79,142,255,.4); }
.feature-list { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); }
.feat-icon { color: var(--accent); font-size: 10px; margin-top: 5px; flex-shrink: 0; }

/* === PROBLEMS === */
.problems { padding: 100px 0; position: relative; z-index: 1; }
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: .25s ease;
}
.glass-card:hover {
  border-color: rgba(79,142,255,.3);
  background: var(--glass-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(79,142,255,.15);
}
.card-icon { font-size: 28px; margin-bottom: 16px; }
.glass-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.glass-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* === SERVICES === */
.services { padding: 100px 0; position: relative; z-index: 1; }
.section-header { margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-hero-card {
  background: linear-gradient(135deg, rgba(79,142,255,.1) 0%, rgba(168,85,247,.08) 100%);
  border: 1px solid rgba(79,142,255,.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}
.service-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(79,142,255,.05) 0%, transparent 60%);
  pointer-events: none;
}
.service-hero-card:hover { border-color: rgba(79,142,255,.5); box-shadow: 0 0 60px rgba(79,142,255,.15); }
.s-icon { font-size: 36px; margin-bottom: 18px; }
.service-hero-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.service-hero-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.s-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.s-list li { font-size: 14px; color: var(--muted); }
.s-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,255,.12);
  border: 1px solid rgba(79,142,255,.25);
  padding: 4px 12px;
  border-radius: 100px;
}
.services-col { display: flex; flex-direction: column; gap: 12px; }
.service-sm-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: .22s ease;
}
.service-sm-card:hover { background: var(--glass-2); border-color: var(--border-2); transform: translateX(4px); }
.s-icon-sm { font-size: 22px; flex-shrink: 0; }
.service-sm-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.service-sm-card p { font-size: 13px; color: var(--muted); }

/* === PROCESS === */
.process { padding: 100px 0; position: relative; z-index: 1; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
.step-item { padding-right: 32px; position: relative; }
.step-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .35;
  margin-bottom: 12px;
}
.step-line {
  width: calc(100% - 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(79,142,255,.5) 0%, transparent 100%);
  position: absolute;
  top: 32px;
  left: 64px;
}
.step-line.last { display: none; }
.step-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* === CASES === */
.cases { padding: 100px 0; position: relative; z-index: 1; }
.niches-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 60px; }
.niche-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 100px;
  transition: .18s ease;
}
.niche-tag:hover { color: var(--text); border-color: var(--border-2); background: var(--glass-2); }
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 40px 0;
}
.stat-box { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 20px; }
.stat-big {
  font-size: 52px; font-weight: 900; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus { font-size: 32px; }
.stat-desc { font-size: 13px; color: var(--muted); text-align: center; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* === PRICING === */
.pricing { padding: 100px 0; position: relative; z-index: 1; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.plan-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: .25s ease;
}
.plan-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.plan-glow {
  background: linear-gradient(135deg, rgba(79,142,255,.1) 0%, rgba(168,85,247,.08) 100%);
  border-color: rgba(79,142,255,.35);
  box-shadow: 0 0 60px rgba(79,142,255,.12), inset 0 1px 0 rgba(255,255,255,.05);
}
.plan-glow:hover { border-color: rgba(79,142,255,.6); box-shadow: 0 0 80px rgba(79,142,255,.2); }
.plan-top { display: flex; flex-direction: column; gap: 10px; }
.plan-name {
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hot-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(79,142,255,.15);
  border: 1px solid rgba(79,142,255,.3);
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.plan-price { font-size: 44px; font-weight: 900; letter-spacing: -.03em; }
.plan-price span { font-size: 18px; font-weight: 500; color: var(--muted); }
.plan-price span:first-of-type { font-size: inherit; font-weight: inherit; color: inherit; }
.plan-note { font-size: 12px; color: var(--muted-2); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.plan-list li span { color: var(--accent); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--glass-2);
  color: var(--text);
  border: 1px solid var(--border-2);
  transition: .22s ease;
}
.btn-plan:hover { background: var(--glass-2); border-color: rgba(255,255,255,.3); }
.plan-btn-glow { width: 100%; justify-content: center; border-radius: var(--radius-sm) !important; }
.plan-once { font-size: 15px !important; font-weight: 500; color: var(--muted) !important; }
.plan-result {
  font-size: 13px;
  color: var(--accent-3);
  background: rgba(6,214,160,.08);
  border: 1px solid rgba(6,214,160,.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 4px;
}
.plan-warning {
  font-size: 12px;
  color: rgba(240,190,80,.8);
  background: rgba(240,190,80,.06);
  border: 1px solid rgba(240,190,80,.15);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.cases-link-row { display: flex; justify-content: center; margin-bottom: 40px; }

/* === FAQ === */
.faq { padding: 100px 0; position: relative; z-index: 1; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
  transition: .22s ease;
}
.faq-item:hover { border-color: var(--border-2); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: none;
  transition: .18s ease;
  font-family: inherit;
}
.faq-q:hover { background: var(--glass-2); }
.faq-ico {
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: .22s ease;
  font-weight: 300;
}
.faq-q.open .faq-ico { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--glass);
}
.faq-a.open { display: block; }

/* === CTA === */
.cta-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,142,255,.15) 0%, rgba(168,85,247,.1) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-inner { text-align: center; position: relative; }
.cta-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 52px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: .22s ease;
}
.cta-btn.wa { background: #25d366; color: #fff; }
.cta-btn.wa:hover { background: #1cb955; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.35); }
.cta-btn.phone { background: var(--glass); color: var(--text); border: 1px solid var(--border-2); }
.cta-btn.phone:hover { background: var(--glass-2); transform: translateY(-2px); }
.cta-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.cta-btn.ig:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(220,39,67,.4); }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  background: var(--glass);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.7; }
.footer-nav, .footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contacts a { font-size: 14px; color: var(--muted); text-decoration: none; transition: .18s ease; }
.footer-nav a:hover, .footer-contacts a:hover { color: var(--accent); }
.admin-lnk { font-size: 12px !important; color: var(--muted-2) !important; margin-top: 10px; }
.admin-lnk:hover { color: var(--accent) !important; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--muted-2); }

/* === REVEAL ANIMATION === */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* === MOBILE === */
@media (max-width: 1024px) {
  .hero-float-card { display: none; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-left { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-line { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(6,6,10,.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 20px; gap: 4px; z-index: 99; }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .problems-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; padding: 28px; }
  .stat-divider { display: none; }
  .stat-box { flex: 1 1 40%; padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ticker { animation-duration: 18s; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-metrics { flex-direction: column; }
  .metric-pill { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }
  .about-left { justify-content: center; }
}
