/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6c47ff;
  --primary-dark: #5535e0;
  --primary-light: #8b6bff;
  --accent: #00d4aa;
  --accent2: #ff6b6b;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1a1a24;
  --surface: #16161f;
  --surface-2: #1e1e2a;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(108,71,255,0.5);
  --text: #e8e8f0;
  --text-muted: #7878a0;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108,71,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,71,255,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--primary-light); color: var(--primary-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-lg { padding: 15px 32px; font-size: 1.02rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(10,10,15,0.95); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 66px;
}
.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  transition: color var(--transition);
}
.hamburger:hover { color: var(--primary-light); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
}

/* animated mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108,71,255,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0,212,170,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* floating grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,71,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,71,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

/* particles canvas */
#particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,71,255,0.12);
  border: 1px solid rgba(108,71,255,0.28);
  color: var(--primary-light);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(108,71,255,0); }
  50%      { box-shadow: 0 0 0 6px rgba(108,71,255,0.08); }
}
@keyframes dot-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 22px;
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}
.stat-divider { width: 1px; height: 44px; background: var(--border); }

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--dark-2), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--dark-2), transparent); }

.ticker {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker span { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.ticker-dot { color: var(--primary); opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--dark-2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.section-tag::before { left: 0; }
.section-tag::after  { right: 0; }

.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== CARDS (SERVICES) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(108,71,255,0.15); }
.card:hover::before { transform: scaleX(1); }

.card-featured {
  border-color: rgba(108,71,255,0.35);
  background: linear-gradient(145deg, rgba(108,71,255,0.07) 0%, var(--surface) 60%);
}
.card-featured::before { transform: scaleX(1); }

.card-badge {
  position: absolute;
  top: -1px; left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.card:hover .card-icon { transform: scale(1.15) rotate(-5deg); }
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 22px; line-height: 1.75; }
.card-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 5px 0 5px 18px;
  position: relative;
  transition: color var(--transition);
}
.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  transition: transform var(--transition);
}
.card:hover .card-list li { color: var(--text); }
.card:hover .card-list li::before { transform: translateX(3px); }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 210px;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.step:hover .step-num { opacity: 1; }
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.step-arrow {
  font-size: 1.2rem;
  color: var(--border-hover);
  margin-top: 40px;
  flex-shrink: 0;
  opacity: 0.5;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: translateX(0); opacity: 0.4; }
  50%      { transform: translateX(4px); opacity: 0.9; }
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(0deg, rgba(108,71,255,0.06), transparent);
  transition: height 0.4s ease;
}
.feature:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.feature:hover::after { height: 100%; }
.feature-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.feature:hover .feature-icon { transform: scale(1.2); }
.feature h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.feature p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; position: relative; z-index: 1; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.pricing-card-featured {
  border-color: rgba(108,71,255,0.45);
  background: linear-gradient(145deg, rgba(108,71,255,0.1) 0%, var(--surface) 60%);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.price-period { color: var(--text-muted); font-size: 0.9rem; }
.price-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 26px; line-height: 1.65; }
.pricing-list { margin-bottom: 28px; }
.pricing-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-card:hover .pricing-list li { color: var(--text); }

/* ===== SUBSCRIBE ===== */
.subscribe-section {
  background: linear-gradient(135deg, rgba(108,71,255,0.06) 0%, var(--dark) 60%);
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.subscribe-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(108,71,255,0.25);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.subscribe-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.subscribe-content h2 { font-size: 1.9rem; font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.subscribe-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.subscribe-disclaimer {
  font-size: 0.78rem !important;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
  line-height: 1.7;
}
.subscribe-disclaimer a { color: var(--primary-light); text-decoration: underline; }
.subscribe-form { display: flex; flex-direction: column; gap: 12px; }

/* inputs */
.subscribe-form input,
.contact-form input,
.contact-form textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.subscribe-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(108,71,255,0.12);
}
.subscribe-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; }
.contact-item p { color: var(--text-muted); font-size: 0.87rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.87rem; max-width: 260px; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; text-align: center; }
.footer-bottom a { color: var(--text-muted); text-decoration: underline; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--surface-2);
  border: 1px solid rgba(108,71,255,0.3);
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
  z-index: 999;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); }

/* ===== POLICY PAGES ===== */
.policy-hero { padding: 64px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.policy-hero h1 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.policy-hero .last-updated { color: var(--text-muted); font-size: 0.88rem; }
.policy-content { max-width: 760px; margin: 0 auto; padding-bottom: 80px; }
.policy-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin: 36px 0 12px; }
.policy-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 24px 0 8px; }
.policy-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content ul li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.policy-content a { color: var(--primary-light); text-decoration: underline; }
.policy-content .highlight-box {
  background: rgba(108,71,255,0.08);
  border: 1px solid rgba(108,71,255,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.policy-content .highlight-box p { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .subscribe-box { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 72px 0 60px; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .hero-stats { gap: 24px; }
  .subscribe-box { padding: 28px 24px; }
}

/* ===================================================
   TESTIMONIALS — marquee rows + metric strip
   =================================================== */
.testi-section {
  background: var(--dark);
  overflow: hidden;
}

/* metric strip */
.testi-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testi-metric {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 8px 24px;
}
.testi-metric-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.testi-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.testi-metric-sep {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* marquee track */
.testi-track-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--dark), transparent); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.testi-track--left  { animation: marqueeLeft  38s linear infinite; }
.testi-track--right { animation: marqueeRight 42s linear infinite; }
.testi-track:hover  { animation-play-state: paused; }

@keyframes marqueeLeft  {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* testimonial card */
.tcard {
  width: 320px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.tcard:hover {
  border-color: rgba(108,71,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.tcard--accent {
  border-color: rgba(108,71,255,0.3);
  background: linear-gradient(145deg, rgba(108,71,255,0.08), var(--surface));
}
.tcard-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(108,71,255,0.35);
  display: block;
}
.tcard-top strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.tcard-top span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tcard-stars {
  margin-left: auto;
  color: #f5a623;
  font-size: 0.75rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.tcard p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.tcard p em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}

/* ===================================================
   FAQ — two-column layout
   =================================================== */
.faq-section { overflow: hidden; }

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

/* left sticky panel */
.faq-left {
  position: sticky;
  top: 100px;
}
.faq-left .section-tag { margin-bottom: 16px; }
.faq-left h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.faq-left a { color: var(--primary-light); text-decoration: underline; }
.faq-cta-block { display: flex; gap: 12px; flex-wrap: wrap; }

/* accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--white); }
.faq-question[aria-expanded="true"] { color: var(--primary-light); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), color 0.2s;
  display: flex;
  align-items: center;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 4px;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* responsive */
@media (max-width: 860px) {
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .testi-metrics { padding: 24px 20px; }
  .testi-metric { padding: 8px 16px; }
  .tcard { width: 280px; }
}
@media (max-width: 560px) {
  .testi-metric-sep { display: none; }
  .testi-metric { min-width: 120px; }
}
