/* ═══════════════════════════════════════════
   SafeX360 — Modern Dark Design
   Glassmorphism | Gradients | Micro-interactions
   ═══════════════════════════════════════════ */

:root {
  --bg: #08080d;
  --bg-elevated: #0e0e16;
  --bg-card: rgba(255,255,255,0.03);
  --text: #f0f0f5;
  --text-muted: #9a9aa8;
  --text-dim: #6a6a78;
  --green: #00d084;
  --green-dim: rgba(0,208,132,0.12);
  --teal: #00b4d8;
  --gold: #ff9f43;
  --red: #ff4757;
  --orange: #ff9f43;
  --purple: #a78bfa;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(0,208,132,0.2);
  --glass: rgba(14,14,22,0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-green: 0 8px 40px rgba(0,208,132,0.12);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(0,208,132,0.25); color: #fff; }

/* ─── UTILITIES ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.highlight { color: var(--green); font-weight: 600; }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  z-index: 9999; width: 0%; transition: width 0.1s;
  box-shadow: 0 0 10px rgba(0,208,132,0.5);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,13,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(8,8,13,0.9); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.15rem;
  text-decoration: none; letter-spacing: -0.02em;
  font-family: 'Space Grotesk', sans-serif;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; padding: 6px 14px; border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-cta {
  background: linear-gradient(135deg, var(--green), #00b86e) !important;
  color: var(--bg) !important; font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,208,132,0.3); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; gap: 5px; flex-direction: column; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: rgba(8,8,13,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 24px;
  display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-muted); text-decoration: none; padding: 10px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-menu .nav-cta { text-align: center; margin-top: 4px; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px; font-size: 0.9rem;
  font-weight: 600; text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); font-family: inherit; white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-main {
  background: linear-gradient(135deg, var(--green), #00c278);
  color: var(--bg); box-shadow: 0 4px 20px rgba(0,208,132,0.25);
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,208,132,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.12); }
.btn-secondary {
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--border); width: 100%;
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hover); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.sec-tag { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,208,132,0.15); }
.sec-tag.sec-red { background: rgba(255,71,87,0.1); color: var(--red); border-color: rgba(255,71,87,0.15); }
.sec-tag.sec-orange { background: rgba(255,159,67,0.1); color: var(--orange); border-color: rgba(255,159,67,0.15); }
.sec-tag.sec-purple { background: rgba(167,139,250,0.1); color: var(--purple); border-color: rgba(167,139,250,0.15); }

.sec-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.sec-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,208,132,0.15), transparent 70%); top: -10%; right: -10%; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%); bottom: -5%; left: -8%; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,208,132,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,208,132,0.025) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero .container { position: relative; z-index: 2; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,208,132,0.08); border: 1px solid rgba(0,208,132,0.15);
  color: var(--green); font-size: 0.78rem; font-weight: 500;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-title .line { display: block; }
.hero-title .line.gradient { margin-top: 4px; }

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--text-muted);
  max-width: 620px; margin: 0 auto 20px; line-height: 1.7;
}
.hero-desc strong { color: #fff; font-weight: 600; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px;
}
.h-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
}
.h-check svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════ */
.problem { padding: 100px 0; }
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prob-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px); transition: all 0.35s ease;
}
.prob-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-green); }
.prob-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; background: rgba(255,255,255,0.03);
  color: var(--c);
}
.prob-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.prob-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process { padding: 100px 0; background: var(--bg-elevated); position: relative; }
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px 28px;
  transition: all 0.3s ease; position: relative;
}
.step:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.035); }
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: rgba(0,208,132,0.25); line-height: 1; flex-shrink: 0; min-width: 42px;
}
.step-body { flex: 1; }
.step-time {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); background: var(--green-dim);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.step-body h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: #fff; }
.step-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.step-final { border-color: rgba(0,208,132,0.25); background: linear-gradient(135deg, rgba(0,208,132,0.05), transparent); }
.step-connector {
  width: 2px; height: 24px; background: linear-gradient(180deg, rgba(0,208,132,0.3), rgba(0,208,132,0.1));
  margin-left: 50px;
}

/* ═══════════════════════════════════════════
   WHY DIFFERENT
   ═══════════════════════════════════════════ */
.diff { padding: 100px 0; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.diff-col {
  border-radius: var(--radius); padding: 32px;
  backdrop-filter: blur(10px);
}
.diff-bad { background: rgba(255,71,87,0.03); border: 1px solid rgba(255,71,87,0.1); }
.diff-good { background: linear-gradient(180deg, rgba(0,208,132,0.06), rgba(0,208,132,0.02)); border: 1px solid rgba(0,208,132,0.15); }
.diff-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.diff-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.diff-icon-bad { background: rgba(255,71,87,0.12); color: var(--red); }
.diff-icon-good { background: rgba(0,208,132,0.15); color: var(--green); }
.diff-head h4 { font-size: 1.15rem; font-weight: 700; }
.diff-bad .diff-head h4 { color: var(--red); }
.diff-good .diff-head h4 { color: var(--green); }
.diff-list { list-style: none; }
.diff-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 0.88rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.diff-list li:last-child { border-bottom: none; }
.dx { color: var(--red); font-weight: 700; font-size: 1rem; flex-shrink: 0; line-height: 1.3; }
.dc { color: var(--green); font-weight: 700; font-size: 1rem; flex-shrink: 0; line-height: 1.3; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing { padding: 100px 0; background: var(--bg-elevated); position: relative; }
.pricing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(10px); transition: all 0.4s ease; position: relative;
}
.price-card:hover { border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow); }
.price-popular { border-color: rgba(0,208,132,0.3); box-shadow: 0 0 40px rgba(0,208,132,0.08), var(--shadow); transform: scale(1.03); z-index: 2; }
.price-popular:hover { box-shadow: 0 0 60px rgba(0,208,132,0.15), var(--shadow); }
.price-pop-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), #00b86e);
  color: var(--bg); font-size: 0.65rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,208,132,0.3);
}
.price-name { font-size: 1.15rem; font-weight: 800; color: #fff; }
.price-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
.price-block { border-radius: var(--radius-sm); padding: 16px; margin-bottom: 14px; }
.price-impl { background: rgba(255,255,255,0.02); }
.price-month { background: rgba(0,208,132,0.04); border: 1px solid rgba(0,208,132,0.1); }
.price-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; }
.price-value { font-size: 1.9rem; font-weight: 800; color: #fff; }
.price-value span { font-size: 0.72rem; font-weight: 400; color: var(--text-muted); }
.price-green { color: var(--green); }
.price-hint { font-size: 0.72rem; color: var(--text-dim); margin-top: 4px; }
.price-feats { margin-top: 20px; }
.price-feat-title { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 10px; font-weight: 600; }
.price-feats ul { list-style: none; }
.price-feats li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 0.8rem; color: var(--text-muted); }
.price-feats li svg { flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════ */
.guarantee { padding: 100px 0; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(10px); transition: all 0.35s ease;
}
.g-card:hover { transform: translateY(-5px); border-color: var(--border-hover); box-shadow: var(--shadow-green); }
.g-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,208,132,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 16px;
}
.g-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.g-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   REALITY CHECK
   ═══════════════════════════════════════════ */
.reality { padding: 100px 0; background: var(--bg-elevated); position: relative; }
.reality::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.real-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-bottom: 28px; }
.real-col { border-radius: var(--radius); padding: 28px; }
.real-bad { background: rgba(255,71,87,0.03); border: 1px solid rgba(255,71,87,0.08); }
.real-good { background: rgba(0,208,132,0.04); border: 1px solid rgba(0,208,132,0.1); }
.real-col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.real-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.real-col ul { list-style: none; }
.real-col li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.85rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.real-col li:last-child { border-bottom: none; }
.real-col li strong { color: var(--text); font-weight: 600; }
.rx { color: var(--red); font-weight: 700; }
.rc { color: var(--green); font-weight: 700; }
.real-arrow { color: var(--green); display: flex; align-items: center; justify-content: center; }
.real-result {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 28px; text-align: center;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item.active { border-color: var(--border-hover); }
.faq-q {
  width: 100%; padding: 18px 24px; background: none; border: none;
  color: #fff; font-size: 0.92rem; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--text-dim); font-weight: 400; transition: all 0.3s; }
.faq-item.active .faq-q::after { content: '−'; color: var(--green); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.65;
}
.faq-item.active .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ═══════════════════════════════════════════
   CONTACT / CTA
   ═══════════════════════════════════════════ */
.contact { padding: 100px 0; position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,208,132,0.06), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(60px);
}
.contact-inner { position: relative; z-index: 2; }
.contact-content { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-content .sec-title { margin-bottom: 16px; }
.contact-content p { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; line-height: 1.7; }
.contact-content p strong { color: #fff; }
.contact-info { display: flex; justify-content: center; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.ci {
  display: flex; align-items: center; gap: 8px; color: var(--text-muted);
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.ci:hover { color: var(--green); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { padding: 40px 0 80px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.fb-name { font-weight: 700; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.fb-tag { font-size: 0.7rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════
   STICKY BAR
   ═══════════════════════════════════════════ */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(8,8,13,0.85); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); padding: 12px 24px;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky.show { transform: translateY(0); }
.sticky-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-inner span { font-size: 0.82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features { padding: 100px 0; background: var(--bg-elevated); position: relative; }
.features::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

.features-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 40px;
}
.feature-tab {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.78rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; cursor: pointer;
  transition: all 0.25s ease; font-family: inherit;
}
.feature-tab:hover { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.1); }
.feature-tab.active {
  background: var(--green-dim); color: var(--green); border-color: rgba(0,208,132,0.25);
  box-shadow: 0 4px 16px rgba(0,208,132,0.1);
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  backdrop-filter: blur(10px); transition: all 0.35s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--border-hover); box-shadow: var(--shadow-green); }
.feature-card.hidden { display: none; }

.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,208,132,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 16px;
}
.feature-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.feature-sales {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--green); background: var(--green-dim);
  padding: 6px 12px; border-radius: 8px; line-height: 1.4;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
  .g-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-popular { transform: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .real-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; height: 56px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-checks { flex-direction: column; align-items: flex-start; gap: 10px; max-width: 280px; margin: 0 auto; }
  section { padding: 60px 0 !important; }
  .prob-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-tabs { gap: 6px; }
  .feature-tab { padding: 6px 12px; font-size: 0.72rem; }
  .step { flex-direction: column; gap: 12px; }
  .step-connector { margin-left: 20px; height: 16px; }
  .step-num { font-size: 1.3rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .sticky-inner span { display: none; }
  .sticky-inner { justify-content: center; }
  .contact-info { flex-direction: column; gap: 12px; align-items: center; }
}
