/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:       #0066CC;
  --navy-deep:  #003D7A;
  --navy-mid:   #4A9EFF;
  --blue-light: #4A9EFF;
  --gold:       #0066CC;
  --gold-soft:  #E8F0FE;
  --bg:         #FAFBFC;
  --surface:    #FFFFFF;
  --ink:        #1A202C;
  --muted:      #64748B;
  --line:       rgba(26,32,44,0.08);
  --shadow-sm:  0 2px 12px rgba(0,102,204,0.06);
  --shadow-md:  0 8px 32px rgba(0,102,204,0.10);
  --shadow-lg:  0 24px 64px rgba(0,102,204,0.13);
  --r:          16px;
  --r-sm:       12px;
  --container:  1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.logo-wrap { display: flex; align-items: center; }
.logo-wrap svg { height: 44px; width: auto; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--navy); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 46px;
  border-radius: 999px;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,102,204,0.28);
}
.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 12px 32px rgba(0,102,204,0.36);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(0,102,204,0.25);
}
.btn-outline:hover {
  background: rgba(0,102,204,0.05);
  border-color: var(--navy);
}
.btn-lg { height: 54px; padding: 0 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.desktop-only { display: inline-flex; }

/* HERO */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,159,214,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
h1 em { font-style: normal; color: var(--navy); }
h2 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
h2 em { font-style: normal; color: var(--navy); }
h3 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual { position: relative; }
.mockup-wrap {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f0eff0;
  border-bottom: 1px solid var(--line);
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-bar .url-bar {
  flex: 1;
  height: 26px;
  background: #e5e4e5;
  border-radius: 6px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: #888;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
}
.mini-header {
  background: var(--navy);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-logo-block { display: flex; align-items: center; gap: 8px; }
.mini-logo-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.mini-logo-icon svg { width: 16px; height: 16px; }
.mini-logo-text {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
}
.mini-nav { display: flex; gap: 10px; }
.mini-nav span { width: 32px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.25); }
.mini-hero-block {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 24px 18px;
  position: relative; overflow: hidden;
}
.mini-hero-block::after {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(91,159,214,0.15);
}
.mini-hero-title { width: 70%; height: 14px; background: rgba(255,255,255,0.85); border-radius: 4px; margin-bottom: 8px; }
.mini-hero-sub { width: 55%; height: 8px; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 14px; }
.mini-hero-btn { width: 90px; height: 26px; background: var(--gold); border-radius: 999px; }
.mini-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; padding: 14px 18px; background: #f7f6f3;
}
.mini-card {
  background: #fff; border-radius: 10px; padding: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.mini-card-icon { width: 24px; height: 24px; background: var(--gold-soft); border-radius: 6px; margin-bottom: 8px; }
.mini-card-line { height: 5px; background: #e5e7eb; border-radius: 3px; margin-bottom: 5px; }
.mini-card-line.short { width: 60%; }

/* FLOAT CARD */
.float-card {
  position: absolute;
  bottom: -20px; right: -24px;
  width: 220px;
  background: var(--navy-deep);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.float-card-title {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.float-badge {
  padding: 3px 8px;
  background: rgba(91,159,214,0.2);
  color: var(--blue-light);
  border-radius: 999px;
  font-size: 9px; font-weight: 700;
}
.float-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.float-item {
  background: rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 8px;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  text-align: center;
}
.float-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue-light);
  margin: 0 auto 5px;
}

/* SECTIONS */
.section { padding: 96px 0; }
.section-muted { background: #F0F4F8; }
.section-dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #0a1930 100%);
  color: #fff;
}
.section-dark h2 { color: #fff; }
.section-dark h2 em { color: var(--blue-light); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { font-size: 1.05rem; color: var(--muted); margin-top: 12px; }

/* OFFER GRID */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.offer-card.featured h3 { color: #fff; }
.offer-card.featured p { color: rgba(255,255,255,0.72); }
.offer-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
}
.offer-card:not(.featured) .offer-num { background: var(--gold-soft); color: var(--gold); }
.offer-card.featured .offer-num { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.offer-card p { color: var(--muted); font-size: 0.92rem; }
.offer-card.featured p { color: rgba(255,255,255,0.72); }

/* HOW IT WORKS */
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100%/6); right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy) 20%, var(--navy) 80%, transparent);
  opacity: 0.2;
}
.how-step { padding: 32px; text-align: center; position: relative; }
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(0,102,204,0.15);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { color: var(--muted); font-size: 0.92rem; }

/* SPLIT */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list { display: grid; gap: 14px; margin: 28px 0 36px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(91,159,214,0.2);
  border: 1.5px solid var(--blue-light);
  flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%235B9FD6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* DASHBOARD MOCK */
.dash-mock { background: #0d1a2e; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.dash-topbar { display: flex; gap: 6px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-topbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.dash-layout { display: grid; grid-template-columns: 160px 1fr; }
.dash-sidebar {
  background: #081020; padding: 16px;
  display: flex; flex-direction: column; gap: 8px; min-height: 320px;
}
.dash-sidebar-item { height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.dash-sidebar-item.active { background: rgba(91,159,214,0.15); border-left: 3px solid var(--blue-light); }
.dash-content { padding: 20px; background: #0f1e35; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 12px; }
.dash-stat-val { height: 18px; width: 60%; background: rgba(255,255,255,0.15); border-radius: 4px; margin-bottom: 6px; }
.dash-stat-label { height: 8px; width: 80%; background: rgba(255,255,255,0.07); border-radius: 3px; }
.dash-row { height: 44px; background: rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.05); }
.dash-row:last-child { margin-bottom: 0; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
  position: relative; overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.step-card:hover::after { transform: scaleX(1); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: #E8F0FE; color: var(--navy);
  font-weight: 700; font-size: 1rem; margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.92rem; }

/* PRICING */
.pricing-wrap { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: center; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 36px; box-shadow: var(--shadow-md);
}
.pricing-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 3.4rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 6px;
}
.pricing-amount sub { font-size: 1rem; font-family: 'Inter', -apple-system, system-ui, sans-serif; font-weight: 500; color: var(--muted); }
.pricing-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pricing-features { display: grid; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--ink); }
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: #E8F0FE;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%231A3A6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; flex-shrink: 0;
}

/* FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 52px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1060px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .split-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .float-card { display: none; }
  .offer-grid, .steps-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .desktop-only { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { flex-direction: row; overflow-x: auto; min-height: unset; padding: 12px; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero { padding: 52px 0 40px; }
  .section { padding: 64px 0; }
}
