/* =============================================
   VALORIFY — Styles
   ============================================= */

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

:root {
  --bg: #0A0B14;
  --bg2: #0F1122;
  --surface: #141629;
  --surface2: #1C1F3A;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);

  --purple: #7C3AED;
  --purple-light: #8B5CF6;
  --purple-glow: rgba(124, 58, 237, 0.25);
  --cyan: #06B6D4;
  --emerald: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;

  --text: #F1F5F9;
  --text-2: #94A3B8;
  --text-3: #64748B;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.4);
  font-size: 14px;
  padding: 8px 18px;
}
.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 56px;
}
.gradient-text {
  background: linear-gradient(135deg, #8B5CF6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { font-size: 14px; padding: 10px 20px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(10, 11, 20, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 8px; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { text-align: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(6, 182, 212, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-item strong {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-item span {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-stats-note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: -36px;
  margin-bottom: 0;
}

/* Dashboard card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow), var(--shadow-glow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dc-title { font-weight: 700; font-size: 15px; }
.dc-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.dc-badge.live::before {
  content: '● ';
  animation: pulse 1.5s infinite;
}
.dc-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.dc-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.dc-company-name { font-weight: 600; font-size: 15px; }
.dc-company-sub { font-size: 12px; color: var(--text-3); }
.dc-score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
.dc-score {
  text-align: center;
  flex: 1;
  padding: 16px 12px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
}
.dc-score-target {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.score-stars { font-size: 16px; color: #F59E0B; margin-bottom: 4px; }
.star-half { opacity: 0.5; }
.score-value { font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.score-label { font-size: 11px; color: var(--text-3); }
.dc-arrow { font-size: 20px; color: var(--text-3); flex-shrink: 0; }
.dc-funnel { margin-bottom: 16px; }
.funnel-label { font-size: 12px; font-weight: 600; color: var(--text-3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.funnel-bar-wrap { display: flex; flex-direction: column; gap: 6px; }
.funnel-bar {
  height: 32px;
  background: var(--surface2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.funnel-fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.funnel-fill:nth-child(1),
.funnel-bar:nth-child(1) .funnel-fill {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.6), rgba(139, 92, 246, 0.4));
}
.funnel-fill-2 {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.6), rgba(6, 182, 212, 0.3)) !important;
}
.funnel-fill-3 {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.3)) !important;
}
.funnel-fill strong { margin-left: auto; }
.dc-insight {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.insight-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.insight-title { font-weight: 600; font-size: 12px; color: var(--amber); margin-bottom: 2px; }
.insight-text { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.dc-metric-row { text-align: center; }
.dc-metric { padding: 10px; background: rgba(16, 185, 129, 0.08); border-radius: var(--radius-sm); }
.metric-val { font-size: 22px; font-weight: 800; }
.metric-val.green { color: var(--emerald); }
.metric-label { font-size: 11px; color: var(--text-3); }

/* =============================================
   PROBLEM
   ============================================= */
.problem {
  padding: 100px 0;
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.problem-icon { font-size: 32px; margin-bottom: 14px; }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* Star impact */
.star-impact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
}
.star-impact-title { font-size: 16px; font-weight: 700; margin-bottom: 28px; }
.star-impact-grid { display: flex; flex-direction: column; gap: 16px; }
.star-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.star-row.highlighted .star-conv { font-weight: 700; }
.star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.stars { font-size: 16px; }
.rating-num { font-size: 14px; font-weight: 600; color: var(--text-2); min-width: 35px; }
.star-bar-wrap { flex: 1; }
.star-bar {
  height: 10px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
}
.star-fill {
  height: 100%;
  border-radius: 100px;
  width: var(--w);
  transition: width 1s ease;
}
.star-fill.red { background: var(--red); }
.star-fill.amber { background: var(--amber); }
.star-fill.green { background: var(--emerald); }
.star-conv {
  min-width: 100px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.star-conv.red { color: var(--red); }
.star-conv.amber { color: var(--amber); }
.star-conv.green { color: var(--emerald); }
.star-source { font-size: 11px; color: var(--text-3); margin-top: 20px; }

/* =============================================
   SOLUTION
   ============================================= */
.solution {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 50%, transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}
.feature-card-lg {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 28px;
  align-items: start;
}
.feature-card-lg h3 { grid-column: 2; }
.feature-card-lg p { grid-column: 2; }
.feature-card-lg .feature-list { grid-column: 2; }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.feature-card-lg .feature-icon-wrap { margin-bottom: 0; grid-row: 1 / 3; }
.feature-icon-wrap.purple { background: rgba(124, 58, 237, 0.15); color: var(--purple-light); }
.feature-icon-wrap.cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }
.feature-icon-wrap.emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald); }
.feature-icon-wrap.amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.feature-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: 100px 0;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
}
.step-alt {
  grid-template-columns: 1fr 80px 1fr;
}
.step-connector {
  height: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  margin-left: 39px;
  opacity: 0.4;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
}
.step-alt .step-num { order: 2; }
.step-alt .step-content { order: 3; }
.step-alt .step-visual { order: 1; }
.step-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Mini cards for steps */
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.mini-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}
.mini-label { font-size: 12px; color: var(--text-3); margin-bottom: 12px; }
.mini-label.green { color: var(--emerald); font-weight: 600; }
.mini-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
}
.mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--purple-light));
  border-radius: 100px;
}
.funnel-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.fm-bar {
  font-size: 12px;
  font-weight: 600;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  min-width: 60px;
}
.fm-b1 { background: rgba(124,58,237,0.6); width: 100%; }
.fm-b2 { background: rgba(6,182,212,0.6); width: 70%; }
.fm-b3 { background: rgba(16,185,129,0.6); width: 42%; }
.fm-arrow { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.mini-trend { margin-bottom: 8px; }

/* =============================================
   PACK
   ============================================= */
.pack {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.03) 50%, transparent);
}
.pack .section-sub { margin-bottom: 48px; }
.pack-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pack-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.12);
  position: relative;
  overflow: hidden;
}
.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.pack-header { margin-bottom: 28px; }
.pack-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; }
.price-currency { font-size: 24px; font-weight: 700; color: var(--text-2); }
.price-period { font-size: 16px; color: var(--text-3); }
.pack-note { font-size: 12px; color: var(--text-3); }
.pack-includes-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px; }
.pack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.pack-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pack-check {
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pack-list li strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.pack-list li span { font-size: 13px; color: var(--text-2); }
.pack-footer-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }
.pack-footer-note strong { color: var(--emerald); }

.pack-extras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.extra-card:hover { border-color: var(--border-light); }
.extra-icon { font-size: 28px; flex-shrink: 0; }
.extra-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.extra-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-bottom: 14px; }

.roi-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}
.roi-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.roi-calc { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.roi-row span { color: var(--text-2); }
.roi-row strong { color: var(--text); }
.roi-row.highlight strong { color: var(--amber); }
.roi-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
}
.roi-total .green { color: var(--emerald); font-size: 20px; font-weight: 800; }
.roi-note { font-size: 12px; color: var(--text-3); text-align: center; }
.roi-note strong { color: var(--purple-light); }

/* =============================================
   RESULTS
   ============================================= */
.results {
  padding: 100px 0;
  text-align: center;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.result-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.result-sector { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.result-stats { margin-bottom: 16px; }
.result-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.result-before { font-size: 20px; color: var(--text-3); }
.result-arrow { font-size: 18px; color: var(--purple-light); }
.result-after { font-size: 26px; font-weight: 800; color: var(--emerald); }
.result-quote { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.result-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-metrics span {
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-sub { font-size: 16px; color: var(--text-2); line-height: 1.65; margin-bottom: 32px; }
.contact-features { display: flex; flex-direction: column; gap: 12px; }
.cf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
}
.cf-check {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.form-group input::placeholder { color: var(--text-3); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface2); }
.form-privacy { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--text-2); }

/* Success */
.form-success {
  background: var(--surface);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 36px;
  text-align: center;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-2); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 220px;
}
.footer-brand p { font-size: 14px; color: var(--text-3); margin-top: 12px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual { justify-content: flex-start; }
  .pack-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }

  .hero { padding: 120px 0 80px; }

  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-lg { grid-template-columns: 1fr; }
  .feature-card-lg .feature-icon-wrap { margin-bottom: 18px; grid-row: auto; }
  .feature-card-lg h3,
  .feature-card-lg p,
  .feature-card-lg .feature-list { grid-column: 1; }

  .step { grid-template-columns: 60px 1fr; }
  .step-alt { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .step-alt .step-num { order: 1; }
  .step-alt .step-content { order: 2; }

  .results-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-social-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof-divider { display: none; }

  .star-row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .dc-score-row { flex-direction: column; gap: 8px; }
  .dc-arrow { transform: rotate(90deg); }
}
