/* =============================================
   PROMO PAGE — ConnectFlow Lab
   Delivery App for Uspacy Marketplace
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color palette */
  --c-bg:         #080b14;
  --c-bg-2:       #0d1120;
  --c-bg-3:       #121827;
  --c-surface:    rgba(255,255,255,0.04);
  --c-surface-2:  rgba(255,255,255,0.07);
  --c-border:     rgba(255,255,255,0.08);
  --c-border-2:   rgba(255,255,255,0.14);

  --c-text:       #f0f4ff;
  --c-text-muted: #8891aa;
  --c-text-dim:   #5a6380;

  /* Brand gradient */
  --grad-brand:   linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  --grad-brand-2: linear-gradient(135deg, #3b82f6, #6366f1, #a855f7);

  /* Accent colors */
  --c-blue:       #6366f1;
  --c-violet:     #a855f7;
  --c-emerald:    #10b981;
  --c-orange:     #f97316;
  --c-pink:       #ec4899;
  --c-yellow:     #eab308;

  /* Spacing & shape */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-full:  9999px;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     150ms;
  --dur:          280ms;
  --dur-slow:     480ms;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- Utility ---- */
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w-full { width: 100%; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-sm  { padding: 8px 20px;  font-size: 14px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); padding: 14px 20px; }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 0 24px rgba(99,102,241,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,.5);
}

.btn-ghost {
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--c-surface-2);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-2);
}
.btn-outline:hover {
  background: var(--c-surface);
  border-color: var(--c-blue);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #1a1a2e;
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,.3);
}

.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(8,11,20,.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.logo-img--sm { width: 28px; height: 28px; }
.logo-truck { display: flex; align-items: center; flex-shrink: 0; }
.logo-truck--sm svg { width: 28px; height: 28px; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--c-text); }
.logo-accent { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  display: block;
  padding: 7px 14px;
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover {
  color: var(--c-text);
  background: var(--c-surface);
}
.nav-cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,11,20,.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 8px; width: 260px; }
.mobile-link {
  display: block;
  padding: 14px;
  color: var(--c-text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.mobile-link:hover { background: var(--c-surface); }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -100px; left: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7, transparent);
  top: 50px; right: -80px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #ec4899, transparent);
  bottom: 0; left: 40%;
  opacity: 0.2;
  animation: orb-float 12s ease-in-out infinite;
}

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

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border-2);
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-emerald);
  box-shadow: 0 0 8px var(--c-emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.hero-subtitle {
  max-width: 600px;
  font-size: 18px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--c-border-2);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.hero-screenshot-frame {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border-2);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 80px rgba(99,102,241,.15), 0 0 0 1px var(--c-border);
}
.screenshot-dots {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border);
}
.screenshot-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.screenshot-dots span:nth-child(1) { background: #ff5f57; }
.screenshot-dots span:nth-child(2) { background: #febc2e; }
.screenshot-dots span:nth-child(3) { background: #28c840; }
.hero-screenshot {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
}

/* =============================================
   INTEGRATIONS BANNER
   ============================================= */
.integrations-banner {
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-2);
}
.integrations-label {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.integrations-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 500;
  transition: all var(--dur-fast);
}
.pill:hover {
  border-color: var(--c-blue);
  color: var(--c-text);
  background: var(--c-surface-2);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 17px;
  color: var(--c-text-muted);
  max-width: 560px;
  text-align: center;
}

/* =============================================
   FEATURES
   ============================================= */
.features { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card--large { grid-column: span 2; }

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--dur);
}
.feature-card:hover::before { opacity: 0.04; }
.feature-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.feature-card--dark {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(168,85,247,.08));
  border-color: rgba(99,102,241,.25);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon--blue   { background: rgba(99,102,241,.15); color: #818cf8; }
.feature-icon--violet { background: rgba(168,85,247,.15); color: #c084fc; }
.feature-icon--emerald{ background: rgba(16,185,129,.15); color: #34d399; }
.feature-icon--orange { background: rgba(249,115,22,.15);  color: #fb923c; }
.feature-icon--pink   { background: rgba(236,72,153,.15); color: #f472b6; }
.feature-icon--yellow { background: rgba(234,179,8,.15);  color: #facc15; }

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-text);
}
.feature-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 14px;
  color: var(--c-text-muted);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Status Timeline in feature card */
.status-timeline {
  display: flex;
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.status-timeline::before {
  content: '';
  position: absolute;
  top: 13px; left: 13px; right: 13px;
  height: 2px;
  background: var(--c-border-2);
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.tl-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--c-border-2);
  background: var(--c-bg-3);
  z-index: 1;
  transition: all var(--dur);
}
.tl-label {
  font-size: 12px;
  color: var(--c-text-dim);
  white-space: nowrap;
}
.tl-done .tl-dot {
  background: var(--c-emerald);
  border-color: var(--c-emerald);
  box-shadow: 0 0 10px rgba(16,185,129,.5);
}
.tl-done .tl-label { color: var(--c-emerald); }
.tl-active .tl-dot {
  background: var(--c-blue);
  border-color: var(--c-blue);
  box-shadow: 0 0 12px rgba(99,102,241,.7);
  animation: pulse-ring 2s ease-in-out infinite;
}
.tl-active .tl-label { color: var(--c-blue); }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 12px rgba(99,102,241,.7); }
  50%       { box-shadow: 0 0 24px rgba(99,102,241,.4), 0 0 0 6px rgba(99,102,241,.1); }
}

/* =============================================
   SCREENSHOTS / TABS
   ============================================= */
.screenshots {
  padding: 100px 0;
  background: var(--c-bg-2);
}

.tabs-wrap { display: flex; flex-direction: column; gap: 28px; }
.tabs {
  display: flex;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 6px;
  width: fit-content;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast);
  font-family: var(--font-body);
}
.tab:hover { color: var(--c-text); background: var(--c-surface-2); }
.tab.active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
}

.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in var(--dur) var(--ease); }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screenshot-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-border-2);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.screenshot-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.screenshot-caption {
  text-align: center;
  color: var(--c-text-dim);
  font-size: 14px;
  margin-top: 18px;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits { padding: 100px 0; }
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-text { display: flex; flex-direction: column; gap: 20px; }

.benefits-list { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--c-text-muted);
}
.benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  color: var(--c-emerald);
  font-size: 13px;
  font-weight: 700;
}

/* Benefits card stack */
.benefits-visual { display: flex; align-items: center; justify-content: center; }
.benefits-card-stack { position: relative; width: 320px; height: 300px; }

.bcard {
  position: absolute;
  border-radius: var(--radius-xl);
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  backdrop-filter: blur(12px);
  padding: 24px;
  transition: transform var(--dur-slow) var(--ease);
}
.bcard-back {
  width: 240px;
  bottom: 0; right: 0;
  height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  transform: rotate(6deg);
  background: linear-gradient(135deg, rgba(168,85,247,.08), rgba(99,102,241,.08));
}
.bcard-line { height: 10px; border-radius: var(--radius-full); background: var(--c-border-2); }
.bcard-line--short { width: 70%; }
.bcard-line--shorter { width: 50%; }

.bcard-mid {
  width: 260px;
  top: 20px; left: 20px;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(99,102,241,.05));
}
.bcard-front {
  width: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(168,85,247,.08));
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(99,102,241,.2);
  z-index: 2;
}
.benefits-card-stack:hover .bcard-back { transform: rotate(10deg) translateX(8px); }
.benefits-card-stack:hover .bcard-mid { transform: rotate(-5deg) translateY(-8px); }

.bcard-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.bcard-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.bcard-dot--green { background: var(--c-emerald); box-shadow: 0 0 8px var(--c-emerald); }
.bcard-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.bcard-title { font-weight: 700; font-size: 16px; }
.bcard-title-sm { font-size: 13px; font-weight: 600; color: var(--c-text-muted); }

.bcard-body { display: flex; flex-direction: column; gap: 10px; }
.bcard-field { display: flex; justify-content: space-between; align-items: center; }
.bcard-label { font-size: 12px; color: var(--c-text-dim); }
.bcard-value { font-size: 14px; font-weight: 600; }

.bcard-status-row { display: flex; align-items: center; gap: 10px; }

/* Status badges */
.status-badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}
.status-badge--created  { background: rgba(99,102,241,.2); color: #818cf8; }
.status-badge--transit  { background: rgba(234,179,8,.15);  color: #facc15; }
.status-badge--delivered{ background: rgba(16,185,129,.15); color: #34d399; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
  background: var(--c-bg-2);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step-card {
  flex: 1;
  padding: 36px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  transition: border-color var(--dur), transform var(--dur);
}
.step-card:hover {
  border-color: rgba(99,102,241,.4);
  transform: translateY(-6px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--c-text-muted); line-height: 1.65; }
.step-connector {
  font-size: 28px;
  color: var(--c-text-dim);
  flex-shrink: 0;
}

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  width: 340px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform var(--dur), box-shadow var(--dur);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.pricing-card--featured {
  border-color: rgba(99,102,241,.4);
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(168,85,247,.06));
  box-shadow: 0 0 40px rgba(99,102,241,.15);
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card-header { text-align: center; }
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: flex-end; gap: 4px; justify-content: center; }
.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}
.pricing-card--featured .price-amount {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-currency { font-size: 16px; color: var(--c-text-muted); margin-bottom: 8px; }
.plan-period { font-size: 13px; color: var(--c-text-dim); display: block; margin-top: 4px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text-muted);
}
.plan-feature--ok::before { content: '✓'; color: var(--c-emerald); font-weight: 700; }
.plan-feature--no::before { content: '✗'; color: var(--c-text-dim); }
.plan-feature--no { opacity: 0.5; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--c-text-dim);
  font-size: 14px;
}
.pricing-note a { color: var(--c-blue); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0f1e, #0f0a1e);
}
.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -100px; left: -100px;
  opacity: 0.3;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7, transparent);
  bottom: -100px; right: -80px;
  opacity: 0.3;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-subtitle { font-size: 17px; color: var(--c-text-muted); max-width: 500px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.footer-link {
  padding: 7px 14px;
  color: var(--c-text-dim);
  text-decoration: none;
  font-size: 13px;
  border-radius: var(--radius-full);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.footer-link:hover { color: var(--c-text); background: var(--c-surface); }
.footer-copy { font-size: 13px; color: var(--c-text-dim); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .benefits-inner { grid-template-columns: 1fr; gap: 60px; }
  .benefits-visual { display: none; }
  .steps-grid { flex-direction: column; gap: 0; }
  .step-connector { transform: rotate(90deg); }
}

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

  .hero-title { font-size: 38px; }
  .hero-stats { padding: 16px 24px; gap: 16px; }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .tabs { padding: 4px; }
  .tab { padding: 8px 14px; font-size: 13px; }

  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { width: 100%; max-width: 380px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-nav { margin-left: 0; justify-content: center; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* =============================================
   TEXT / LEGAL PAGES
   ============================================= */
.text-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 80vh;
}
.text-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 8px;
  color: #fff;
}
.text-page-content {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.text-page-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 16px;
  color: #fff;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.text-page-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #fff;
}
.text-page-content p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}
.text-page-content ul, .text-page-content ol {
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--c-text-muted);
  font-size: 15px;
}
.text-page-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.text-page-content strong {
  color: var(--c-text);
}
.text-page-meta {
  font-size: 14px;
  color: var(--c-text-dim);
  margin-bottom: 24px;
}

/* Contacts layout */
.contacts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.contacts-card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contacts-item:last-child {
  margin-bottom: 0;
}
.contacts-icon {
  background: var(--c-surface-2);
  color: var(--c-blue);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts-info h4 {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.contacts-info p, .contacts-info a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.contacts-info a:hover {
  color: var(--c-blue);
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .text-page-content {
    padding: 24px 16px;
  }
}
