/* ============================================================
   Book MLM Demo Page — CSS v1.0.0
   MLM Mind | https://mlmmind.com
   Primary colour: #0ea5e9 (sky blue — trust & action)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary:        #0ea5e9;
  --primary-dark:   #0284c7;
  --primary-light:  #e0f2fe;
  --secondary:      #38bdf8;
  --secondary-dark: #0ea5e9;
  --accent:         #6366f1;
  --accent-dark:    #4f46e5;
  --green:          #10b981;
  --amber:          #f59e0b;
  --rose:           #f43f5e;
  --orange:         #f97316;
  --violet:         #8b5cf6;
  --teal:           #0d9488;

  --dark:   #020b14;
  --dark-2: #040f1c;
  --dark-3: #061525;
  --dark-4: #081b2e;
  --dark-5: #0a2040;

  --mid:       #64748b;
  --mid-light: #94a3b8;

  --border:       rgba(14,165,233,.2);
  --border-light: rgba(14,165,233,.08);

  --success: #10b981;
  --warning: #f59e0b;
  --danger:  #ef4444;

  --shadow-sm: 0 2px 8px rgba(14,165,233,.15);
  --shadow-md: 0 8px 32px rgba(14,165,233,.20);
  --shadow-lg: 0 24px 64px rgba(14,165,233,.25);
  --glow:      0 0 40px rgba(14,165,233,.35);
  --glow-sm:   0 0 20px rgba(14,165,233,.20);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --container:   1240px;
  --section-pad: 96px;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--dark); color: #e2e8f0; line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ---------- Scroll Progress ---------- */
#scroll-progress { position: fixed; top: 0; left: 0; z-index: 9999; height: 3px; width: 0%; background: linear-gradient(90deg,var(--primary),var(--secondary),var(--accent)); transition: width .1s linear; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem,3.2vw,2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: #cbd5e1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--r-full); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .25s var(--ease-out); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg),var(--glow-sm); }
.btn-outline { background: transparent; border: 1.5px solid rgba(56,189,248,.4); color: var(--secondary); }
.btn-outline:hover { background: rgba(14,165,233,.1); border-color: var(--primary); color: #fff; }
.btn-ghost  { background: transparent; color: #e2e8f0; border: 1.5px solid rgba(255,255,255,.15); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-lg { padding: 16px 40px; font-size: 1.08rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; border-radius: var(--r-full); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-primary { background: rgba(14,165,233,.15); color: var(--secondary); border: 1px solid rgba(14,165,233,.3); }
.badge-green   { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.25); }
.badge-accent  { background: rgba(99,102,241,.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,.25); }
.badge-amber   { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header h2 span { color: var(--secondary); }
.section-header p { max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- AOS ---------- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-aos].aos-visible { opacity: 1; transform: none; }
[data-aos-delay="80"]  { transition-delay: .08s; }
[data-aos-delay="160"] { transition-delay: .16s; }
[data-aos-delay="240"] { transition-delay: .24s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: radial-gradient(ellipse 130% 70% at 60% 0%, rgba(14,165,233,.18) 0%, transparent 65%),
              radial-gradient(ellipse 70% 50% at 5% 90%, rgba(99,102,241,.12) 0%, transparent 60%),
              var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: .82rem; color: var(--mid-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--secondary); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--mid); margin: 0 2px; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 span { color: var(--secondary); }
.lead { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 32px; line-height: 1.75; }

/* Hero Reassurance Pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--r-full);
  font-size: .82rem; color: var(--secondary); font-weight: 600;
}
.hero-pill i { font-size: .75rem; }

/* Trust Row */
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--mid-light); }
.trust-item i { color: var(--green); font-size: .85rem; }

@media(max-width:960px) { .hero-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   DEMO FORM CARD
   ============================================================ */
.form-card {
  background: linear-gradient(145deg, rgba(14,165,233,.1) 0%, rgba(2,11,20,.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.form-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(14,165,233,.18) 0%, transparent 70%);
  pointer-events: none;
}
.form-card-header { margin-bottom: 28px; }
.form-card-header h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.form-card-header p  { font-size: .88rem; color: var(--mid-light); }

/* Form Fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .82rem; font-weight: 600; color: #cbd5e1; letter-spacing: .02em; }
.form-group label .req { color: var(--rose); margin-left: 3px; }
.form-control {
  background: rgba(14,165,233,.06);
  border: 1.5px solid rgba(14,165,233,.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: #e2e8f0;
  font-size: .93rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.form-control:focus {
  border-color: var(--primary);
  background: rgba(14,165,233,.1);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.form-control::placeholder { color: var(--mid); }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2338bdf8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
select.form-control option { background: #061525; color: #e2e8f0; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Checkbox / Radio */
.check-group { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-group input[type="checkbox"],
.check-group input[type="radio"] { appearance: none; width: 18px; height: 18px; border: 1.5px solid rgba(14,165,233,.4); border-radius: 4px; background: rgba(14,165,233,.06); cursor: pointer; flex-shrink: 0; margin-top: 2px; transition: all .2s; position: relative; }
.check-group input[type="radio"] { border-radius: 50%; }
.check-group input[type="checkbox"]:checked,
.check-group input[type="radio"]:checked { background: var(--primary); border-color: var(--primary); }
.check-group input[type="checkbox"]:checked::after { content: '✓'; position: absolute; top: -1px; left: 2px; font-size: 12px; color: #fff; font-weight: 700; }
.check-group input[type="radio"]:checked::after { content: ''; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.check-label { font-size: .87rem; color: #cbd5e1; line-height: 1.5; }
.check-label a { color: var(--secondary); }
.check-label a:hover { text-decoration: underline; }

/* Plan Selector */
.plan-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.plan-opt { cursor: pointer; }
.plan-opt input { display: none; }
.plan-opt-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px;
  background: rgba(14,165,233,.05);
  border: 1.5px solid rgba(14,165,233,.15);
  border-radius: var(--r-md);
  font-size: .78rem; color: var(--mid-light);
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.plan-opt-inner i { font-size: 1.1rem; color: var(--mid); transition: color .2s; }
.plan-opt input:checked + .plan-opt-inner {
  border-color: var(--primary);
  background: rgba(14,165,233,.14);
  color: var(--secondary);
}
.plan-opt input:checked + .plan-opt-inner i { color: var(--secondary); }
.plan-opt-inner:hover { border-color: rgba(14,165,233,.4); background: rgba(14,165,233,.09); }

/* Submit Button */
.submit-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none; border-radius: var(--r-full);
  color: #fff; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all .25s var(--ease-out);
  margin-top: 8px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity: 0; transition: opacity .25s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg),var(--glow-sm); }
.submit-btn:hover::before { opacity: 1; }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-note { font-size: .78rem; color: var(--mid); text-align: center; margin-top: 12px; }

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(16,185,129,.08));
  border: 2px solid rgba(16,185,129,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--green);
  margin: 0 auto 24px;
  animation: popIn .5s var(--ease-spring);
}
@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.form-success h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.form-success p  { color: var(--mid-light); margin-bottom: 24px; }

@media(max-width:600px) {
  .form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .plan-selector { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg, rgba(14,165,233,.1) 0%, rgba(2,132,199,.07) 50%, rgba(14,165,233,.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.stat-item {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat-num span { color: var(--secondary); }
.stat-lbl { font-size: .78rem; color: var(--mid-light); text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }
@media(max-width:600px) { .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); } }

/* ============================================================
   WHAT TO EXPECT
   ============================================================ */
.expect-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.expect-card {
  background: rgba(14,165,233,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.expect-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.expect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: rgba(14,165,233,.08); }
.expect-card:hover::after { transform: scaleX(1); }
.expect-step {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.expect-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.expect-card h3 { color: #e2e8f0; margin-bottom: 10px; font-size: 1.1rem; }
.expect-card p  { font-size: .9rem; color: var(--mid-light); line-height: 1.65; }
@media(max-width:960px) { .expect-grid { grid-template-columns: 1fr; } }
@media(min-width:600px) and (max-width:960px) { .expect-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(14,165,233,.04) 0%, var(--dark) 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 0 0 6px var(--dark), var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
}
.step-num.accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.step-num.green  { background: linear-gradient(135deg, var(--green), #0d9488); }
.step-title { font-size: .97rem; font-weight: 700; color: #e2e8f0; margin-bottom: 8px; }
.step-desc  { font-size: .85rem; color: var(--mid-light); line-height: 1.6; }
@media(max-width:768px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 20px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.included-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.included-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.included-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.included-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.14);
  border-left: 3px solid var(--primary);
  border-radius: var(--r-md);
  transition: background .25s;
}
.included-item:hover { background: rgba(14,165,233,.1); }
.ii-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ii-body strong { display: block; font-size: .95rem; color: #e2e8f0; font-weight: 700; margin-bottom: 3px; }
.ii-body p { font-size: .86rem; color: var(--mid-light); margin: 0; line-height: 1.5; }

/* Demo Preview Card */
.demo-preview-card {
  background: linear-gradient(145deg, rgba(14,165,233,.12) 0%, rgba(2,11,20,.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.demo-preview-card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,165,233,.2) 0%, transparent 70%);
  pointer-events: none;
}
.demo-preview-title { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.demo-preview-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: linear-gradient(135deg,var(--primary),var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }
.demo-preview-title h4 { color: #fff; font-size: 1.05rem; }
.demo-preview-title p  { font-size: .8rem; color: var(--mid-light); margin: 0; }

.demo-modules { display: flex; flex-direction: column; gap: 10px; }
.demo-module {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: rgba(14,165,233,.07);
  border: 1px solid rgba(14,165,233,.14);
  border-radius: var(--r-md);
}
.dm-check { width: 26px; height: 26px; border-radius: 50%; background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.3); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--green); flex-shrink: 0; }
.dm-name  { flex: 1; font-size: .9rem; color: #cbd5e1; font-weight: 500; }
.dm-dur   { font-size: .78rem; color: var(--mid-light); font-family: var(--font-mono); }

.demo-total {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
}
.demo-total span { font-size: .9rem; color: var(--mid-light); }
.demo-total strong { color: var(--secondary); font-size: 1.1rem; }

@media(max-width:960px) { .included-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(14,165,233,.04) 0%, var(--dark) 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(14,165,233,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--amber); font-size: .88rem; letter-spacing: 2px; }
.testi-text { font-size: .93rem; color: #cbd5e1; line-height: 1.75; flex: 1; font-style: italic; }
.testi-text::before { content: '"'; font-size: 2rem; color: var(--secondary); line-height: 0; vertical-align: -0.7rem; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
  flex-shrink: 0;
}
.testi-name    { font-size: .92rem; font-weight: 700; color: #e2e8f0; }
.testi-company { font-size: .78rem; color: var(--mid-light); margin-top: 1px; }
@media(max-width:960px) { .testi-grid { grid-template-columns: 1fr; } }
@media(min-width:600px) and (max-width:960px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PLANS GRID (Which plan for you)
   ============================================================ */
.plans-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.plan-card {
  background: rgba(14,165,233,.04);
  border: 1px solid rgba(14,165,233,.14);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  cursor: default;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); background: rgba(14,165,233,.08); }
.plan-icon { font-size: 2rem; margin-bottom: 14px; }
.plan-name { font-size: 1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 8px; }
.plan-desc { font-size: .83rem; color: var(--mid-light); line-height: 1.6; margin-bottom: 14px; }
.plan-tag { display: inline-block; padding: 3px 10px; border-radius: var(--r-full); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
@media(max-width:960px) { .plans-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .plans-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ STRIP
   ============================================================ */
.faq-strip-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(14,165,233,.04) 0%, var(--dark) 100%);
}
.faq-strip { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: rgba(14,165,233,.05);
  border: 1px solid rgba(14,165,233,.14);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: transparent; border: none; cursor: pointer;
  color: #e2e8f0; font-size: .97rem; font-weight: 600;
  font-family: var(--font-body);
  text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--secondary); }
.faq-q-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(14,165,233,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--secondary); font-size: .75rem; transition: transform .3s; }
.faq-item.open .faq-q-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 22px 18px; font-size: .93rem; color: var(--mid-light); line-height: 1.75; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(14,165,233,.14) 0%, transparent 70%), var(--dark-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-badge { margin-bottom: 20px; }
.cta-section h2 { margin-bottom: 18px; }
.cta-section h2 span { color: var(--secondary); }
.cta-section > .container > p { max-width: 620px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.cta-chip { display: flex; align-items: center; gap: 7px; padding: 8px 16px; background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2); border-radius: var(--r-full); font-size: .82rem; color: var(--secondary); font-weight: 600; }
.cta-chip i { color: var(--green); font-size: .78rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 24px; }
.cta-contact { font-size: .88rem; color: var(--mid-light); }
.cta-contact a { color: var(--secondary); transition: color .2s; }
.cta-contact a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.footer-logo .logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg,var(--primary),var(--primary-dark)); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.logo-accent { color: var(--secondary); }
.footer-brand p { font-size: .9rem; color: var(--mid-light); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(14,165,233,.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--mid-light); font-size: .9rem; transition: all .2s; }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: .93rem; font-weight: 700; color: #e2e8f0; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--mid-light); transition: color .2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .83rem; color: var(--mid); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--r-full); background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.15); font-size: .75rem; color: var(--mid-light); }
@media(max-width:960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   STICKY CTA & BACK TO TOP
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(4,15,28,.96), rgba(2,11,20,.98));
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-cta-text { font-size: .88rem; color: var(--mid-light); }
.sticky-cta-text strong { color: #e2e8f0; }
.sticky-cta-actions { display: flex; gap: 10px; }
@media(max-width:640px) { .sticky-cta { flex-direction: column; border-radius: var(--r-xl); bottom: 16px; padding: 14px 20px; } .sticky-cta-text { display: none; } }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 800;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
