@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --font-head: "Sora", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Light */
  --bg: #f8f9fc;
  --bg2: #eff1f8;
  --surface: #ffffff;
  --surface2: #f3f4fa;
  --border: #e2e5f0;
  --border2: #cdd1e6;
  --text: #111827;
  --text2: #374151;
  --muted: #6b7280;

  --primary: #0ea5e9;
  --primary-d: #0284c7;
  --primary-glow: rgba(14, 165, 233, 0.13);
  --secondary: #0f172a;
  --accent: #f97316;
  --accent-d: #ea580c;
  --green: #22c55e;
  --green-bg: rgba(34, 197, 94, 0.1);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.1);
  --amber: #f59e0b;
  --amber-bg: rgba(245, 158, 11, 0.1);
  --purple: #8b5cf6;

  --nav-bg: rgba(255, 255, 255, 0.93);
  --shadow: 0 2px 16px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 4px 28px rgba(15, 23, 42, 0.11);
  --shadow-lg: 0 8px 48px rgba(15, 23, 42, 0.15);
  --card-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

[data-theme="dark"] {
  --bg: #0c0f1a;
  --bg2: #111525;
  --surface: #161b2e;
  --surface2: #1c2340;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.05);
  --text: #f1f5f9;
  --text2: #94a3b8;
  --muted: #475569;

  --primary: #38bdf8;
  --primary-d: #0ea5e9;
  --primary-glow: rgba(56, 189, 248, 0.13);
  --secondary: #f1f5f9;
  --accent: #fb923c;
  --accent-d: #f97316;
  --green: #4ade80;
  --green-bg: rgba(74, 222, 128, 0.1);
  --red: #f87171;
  --red-bg: rgba(248, 113, 113, 0.1);
  --amber: #fcd34d;
  --amber-bg: rgba(252, 211, 77, 0.1);

  --nav-bg: rgba(12, 15, 26, 0.92);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 28px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
  --card-shadow: 0 1px 8px rgba(0, 0, 0, 0.26);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition:
    background 0.3s,
    color 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}
ul {
  list-style: none;
}
textarea {
  font-family: var(--font-body);
}
.page {
  display: none;
}
.page.active {
  display: block;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
[data-theme="dark"] .nav-logo .logo-icon {
  background: var(--primary);
  color: #0c0f1a;
}
.logo-accent {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--surface2);
  color: var(--primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text2);
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.08);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.22s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--primary-glow);
}
.btn-dark {
  background: var(--secondary);
  color: #fff;
}
[data-theme="dark"] .btn-dark {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.22);
}
.btn-accent:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.btn-ghost {
  background: var(--surface2);
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 13px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.btn-xl {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
}

/* ── SHARED SECTION HELPERS ──────────────────────────────── */
.section {
  padding: 90px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-full {
  padding: 90px 48px;
}
.section-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 99px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.s-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.s-title span {
  color: var(--primary);
}
.s-desc {
  font-size: 0.975rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.s-header {
  text-align: center;
  margin-bottom: 52px;
}
.s-header-left {
  margin-bottom: 40px;
}
.s-header-left .s-desc {
  margin: 0;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 6px;
}
.form-label i {
  color: var(--primary);
}
.form-control {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-control option {
  background: var(--surface);
  color: var(--text);
}
.form-group {
  margin-bottom: 14px;
}

/* ── PROOF BAR ───────────────────────────────────────────── */
.proof-bar {
  background: var(--secondary);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
[data-theme="dark"] .proof-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 500;
}
[data-theme="dark"] .proof-item {
  color: var(--text2);
}
.proof-item i {
  color: var(--primary);
}
.proof-item strong {
  color: #fff;
  font-weight: 700;
}
[data-theme="dark"] .proof-item strong {
  color: var(--text);
}
.proof-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .proof-sep {
  background: var(--border);
}
.badge-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.8s infinite;
  display: inline-block;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════ */

/* ── Hero Layout ── */
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 99px;
  padding: 6px 14px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-h1 .mark-sky {
  color: var(--primary);
}
.hero-h1 .mark-orange {
  color: var(--accent);
}
.hero-p {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-kpis {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.kpi {
  display: flex;
  flex-direction: column;
}
.kpi-num {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.kpi-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3px;
}
.kpi-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── HERO RIGHT  ── */
.hero-right {
  position: relative;
}

/* Floating notification badges */
.hero-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 10;
  animation: floatY 3.5s ease-in-out infinite;
}
.hero-float.f1 {
  top: -18px;
  left: -20px;
  animation-delay: 0s;
}
.hero-float.f2 {
  bottom: 28px;
  right: -18px;
  animation-delay: 1.8s;
}
.hero-float .ft strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.hero-float .ft span {
  font-size: 0.7rem;
  color: var(--muted);
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* Audit Preview Card  */
.audit-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Top chrome bar */
.apc-topbar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apc-dots {
  display: flex;
  gap: 5px;
}
.apc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.apc-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.apc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
}

/* User row */
.apc-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.apc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
[data-theme="dark"] .apc-avatar {
  background: var(--primary);
  color: #0c0f1a;
}
.apc-uname {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.apc-country {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 6px;
}
.apc-usub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}
.apc-score-chip {
  margin-left: auto;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* 3 Score blocks */
.apc-scores-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.apc-score-block {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.apc-score-block:last-child {
  border-right: none;
}
.apc-score-block:hover {
  background: var(--surface2);
}
.apc-score-block.good {
  border-top: 3px solid var(--amber);
}
.apc-score-block.bad {
  border-top: 3px solid var(--red);
}
.apc-score-block.warn {
  border-top: 3px solid var(--primary);
}
.asb-icon {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.apc-score-block.good .asb-icon {
  color: var(--amber);
}
.apc-score-block.bad .asb-icon {
  color: var(--red);
}
.apc-score-block.warn .asb-icon {
  color: var(--primary);
}
.asb-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.asb-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 3px;
  margin-bottom: 7px;
}
.asb-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
}
.asb-status.ok {
  background: var(--amber-bg);
  color: var(--amber);
}
.asb-status.fail {
  background: var(--red-bg);
  color: var(--red);
}
.asb-status.warn-s {
  background: var(--primary-glow);
  color: var(--primary);
}

/* AI Insights */
.apc-insights {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.apc-insight-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.apc-insight-title i {
  color: var(--amber);
}
.apc-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 5px;
  font-size: 0.78rem;
  line-height: 1.5;
}
.apc-insight-item:last-child {
  margin-bottom: 0;
}
.apc-insight-item i {
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.apc-insight-item span {
  color: var(--text2);
}
.green-i {
  background: var(--green-bg);
}
.green-i i {
  color: var(--green);
}
.red-i {
  background: var(--red-bg);
}
.red-i i {
  color: var(--red);
}
.amber-i {
  background: var(--amber-bg);
}
.amber-i i {
  color: var(--amber);
}

/* Action row */
.apc-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.apc-btn-fix {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 10px var(--primary-glow);
}
.apc-btn-fix:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
}
.apc-download {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.apc-download:hover {
  color: var(--primary);
}
.apc-download i {
  font-size: 0.9rem;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.25s;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
[data-theme="dark"] .step-num {
  background: var(--primary);
  color: #0c0f1a;
}
.step-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--primary);
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.25s;
}
.feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.feat-card.dark-card {
  background: var(--secondary);
  border-color: transparent;
}
[data-theme="dark"] .feat-card.dark-card {
  background: var(--primary);
}
.feat-card.dark-card p,
.feat-card.dark-card h3 {
  color: #fff;
}
[data-theme="dark"] .feat-card.dark-card p,
[data-theme="dark"] .feat-card.dark-card h3 {
  color: #0c0f1a;
}
.feat-card.dark-card p {
  opacity: 0.8;
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.feat-card.dark-card .feat-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
[data-theme="dark"] .feat-card.dark-card .feat-icon {
  background: rgba(12, 15, 26, 0.15);
  color: #0c0f1a;
}
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.feat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.testi-stars {
  color: var(--amber);
  font-size: 0.83rem;
  margin-bottom: 11px;
}
.testi-q {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
[data-theme="dark"] .t-avatar {
  background: var(--primary);
  color: #0c0f1a;
}
.t-name {
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text);
}
.t-role {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ── Calculator ── */
.calc-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 32px;
  align-items: start;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc-result {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.calc-result .cr-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.calc-result .cr-main {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.calc-result .cr-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 3px 0 12px;
}
.calc-result .cr-inr {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
}
.calc-result .cr-period {
  font-size: 0.73rem;
  color: var(--muted);
}
.vs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 13px;
}
.vs-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px;
  font-size: 0.76rem;
}
.vs-col .vc-label {
  color: var(--muted);
  margin-bottom: 3px;
}
.vs-col .vc-val {
  font-weight: 700;
  font-size: 0.83rem;
}
.vs-col.bad .vc-val {
  color: var(--red);
}
.vs-col.good .vc-val {
  color: var(--green);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--secondary);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .cta-banner {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% -20%,
    rgba(14, 165, 233, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
[data-theme="dark"] .cta-banner h2 {
  color: var(--text);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
  position: relative;
}
[data-theme="dark"] .cta-banner p {
  color: var(--muted);
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}
.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
[data-theme="dark"] .cta-banner .btn-outline {
  border-color: var(--border);
  color: var(--text2);
}

/* ── Footer ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 48px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 44px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 9px;
  transition: color 0.18s;
}
.footer-col a i {
  font-size: 0.8rem;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.73rem;
  color: var(--text2);
}
.trust-chip i {
  color: var(--green);
  font-size: 0.72rem;
}

/* ══════════════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════════════ */
.dash-shell {
  display: flex;
  min-height: calc(100vh - 68px);
  padding-top: 68px;
}
.sidebar {
  width: 252px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 13px;
  position: fixed;
  top: 68px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sb-user {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.sb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
[data-theme="dark"] .sb-avatar {
  background: var(--primary);
  color: #0c0f1a;
}
.sb-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}
.sb-plan {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}
.sb-sep {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 10px 4px;
  margin-top: 5px;
}
.sb-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.18s;
}
.sb-link:hover,
.sb-link.active {
  background: var(--primary-glow);
  color: var(--primary);
}
.sb-link i {
  width: 18px;
  text-align: center;
  font-size: 0.88rem;
}
.sb-badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
}
.dash-main {
  flex: 1;
  margin-left: 252px;
  padding: 30px 34px;
}
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 13px;
}
.dash-topbar h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
}
.dash-topbar p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 3px;
}
.rw-card {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .rw-card {
  background: var(--surface2);
  border: 1px solid var(--border);
}
.rw-card::after {
  content: "\f57d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.06;
  color: #fff;
  pointer-events: none;
}
[data-theme="dark"] .rw-card::after {
  color: var(--primary);
  opacity: 0.08;
}
.rw-ring {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
.rw-ring svg {
  transform: rotate(-90deg);
}
.rw-ring .rt {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 7;
}
[data-theme="dark"] .rw-ring .rt {
  stroke: var(--border);
}
.rw-ring .rf {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 121;
}
[data-theme="dark"] .rw-ring .rf {
  stroke: var(--primary);
}
.rw-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rw-center .rp {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
[data-theme="dark"] .rw-center .rp {
  color: var(--primary);
}
.rw-center .rl {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
}
[data-theme="dark"] .rw-center .rl {
  color: var(--muted);
}
.rw-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
[data-theme="dark"] .rw-info h3 {
  color: var(--text);
}
.rw-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 11px;
}
[data-theme="dark"] .rw-info p {
  color: var(--muted);
}
.rw-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
  max-width: 360px;
}
[data-theme="dark"] .rw-track {
  background: var(--border);
}
.rw-fill {
  height: 100%;
  width: 45%;
  background: #fff;
  border-radius: 99px;
}
[data-theme="dark"] .rw-fill {
  background: var(--primary);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 18px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--card-shadow);
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stat-lbl i {
  color: var(--primary);
}
.stat-val {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
}
.chip-red {
  background: var(--red-bg);
  color: var(--red);
}
.chip-amber {
  background: var(--amber-bg);
  color: var(--amber);
}
.chip-green {
  background: var(--green-bg);
  color: var(--green);
}
.gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 13px;
  box-shadow: var(--card-shadow);
  margin-bottom: 9px;
}
.gap-card.danger {
  border-left: 3px solid var(--red);
}
.gap-card.warn {
  border-left: 3px solid var(--amber);
}
.gap-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gap-tag.red {
  color: var(--red);
}
.gap-tag.amber {
  color: var(--amber);
}
.gap-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.gap-card p {
  font-size: 0.78rem;
  color: var(--muted);
}
.mission-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--card-shadow);
  margin-bottom: 8px;
  transition: all 0.2s;
}
.mission-item:hover {
  border-color: var(--primary);
}
.m-stamp {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ms-done {
  background: var(--green-bg);
}
.ms-locked {
  background: var(--surface2);
  filter: grayscale(1);
  opacity: 0.5;
}
.ms-paid {
  background: var(--primary-glow);
}
.m-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.m-info p {
  font-size: 0.76rem;
  color: var(--muted);
}
.tag-done {
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--card-shadow);
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}
.store-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.store-card.feat {
  background: var(--primary-glow);
  border-color: rgba(14, 165, 233, 0.3);
}
.store-icon {
  font-size: 1.4rem;
  margin-bottom: 11px;
  color: var(--primary);
}
.store-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.4;
}
.store-old {
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: line-through;
}
.store-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.store-btn {
  margin-top: 13px;
  width: 100%;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}
.store-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.store-card.feat .store-btn {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}
.dash-sec-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.dash-sec-title i {
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════
   BOOTCAMPS PAGE
══════════════════════════════════════════════════════════ */
.boot-hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.boot-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 16px;
}
.boot-hero h1 span {
  color: var(--accent);
}
.boot-hero p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.boot-prob {
  background: var(--red-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.boot-prob h4 {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.boot-prob p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.65;
}
.boot-prob strong {
  color: var(--text);
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.tl-title {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tl-title i {
  color: var(--primary);
}
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-bottom: 15px;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 12px;
  width: 2px;
  bottom: 0;
  background: var(--border);
}
.tl-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 1;
}
.tl-done {
  background: var(--green);
  color: #fff;
}
.tl-active {
  background: var(--primary);
  color: #fff;
}
.tl-locked {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 0.62rem;
}
.tl-info h5 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.tl-info p {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 1px;
}
.tl-week {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--amber-bg);
  padding: 2px 7px;
  border-radius: 99px;
  margin-top: 3px;
  display: inline-block;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.cc-head {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 22px;
}
.cc-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cc-emoji {
  font-size: 1.9rem;
}
.cc-pill {
  font-size: 0.67rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
}
.pill-hot {
  background: var(--red-bg);
  color: var(--red);
}
.pill-top {
  background: var(--primary-glow);
  color: var(--primary);
}
.pill-amber {
  background: var(--amber-bg);
  color: var(--amber);
}
.cc-head h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cc-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cc-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.cc-old {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}
.cc-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  padding: 2px 7px;
  border-radius: 99px;
}
.cc-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.learn-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text2);
}
.learn-list li i {
  color: var(--green);
  font-size: 0.78rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.outcome {
  background: var(--green-bg);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.83rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.enroll-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 14px var(--primary-glow);
  margin-top: auto;
}
.enroll-btn:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--primary-glow);
}
.enroll-btn.orange {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.22);
}
.enroll-btn.orange:hover {
  background: var(--accent-d);
}
.bundle-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 72px;
}
.bundle-card {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .bundle-card {
  background: var(--surface2);
  border: 1px solid var(--border);
}
.bundle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 100% at 80% 50%,
    rgba(14, 165, 233, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.bundle-card::after {
  content: "\f57d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 170px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6.5rem;
  opacity: 0.05;
  color: #fff;
  pointer-events: none;
}
.bundle-info h2 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}
[data-theme="dark"] .bundle-info h2 {
  color: var(--text);
}
.bundle-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  max-width: 450px;
  line-height: 1.7;
}
[data-theme="dark"] .bundle-info p {
  color: var(--muted);
}
.bundle-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}
.b-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 5px;
}
[data-theme="dark"] .b-pill {
  background: var(--surface);
  color: var(--text2);
  border: 1px solid var(--border);
}
.b-pill i {
  font-size: 0.68rem;
  color: var(--green);
}
.bundle-price {
  text-align: center;
  flex-shrink: 0;
}
.bundle-price .was {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-bottom: 2px;
}
[data-theme="dark"] .bundle-price .was {
  color: var(--muted);
}
.bundle-price .main {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
[data-theme="dark"] .bundle-price .main {
  color: var(--text);
}
.bundle-price .save {
  font-size: 0.78rem;
  color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px;
  border-radius: 99px;
  margin: 5px auto 16px;
  display: inline-block;
}
.bundle-btn {
  display: block;
  background: #fff;
  color: var(--secondary);
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}
[data-theme="dark"] .bundle-btn {
  background: var(--primary);
  color: #0c0f1a;
}
.bundle-btn:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-hero {
  background: var(--secondary);
  padding: 120px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .about-hero {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% -10%,
    rgba(14, 165, 233, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.about-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
[data-theme="dark"] .about-h1 {
  color: var(--text);
}
.about-h1 span {
  color: var(--primary);
}
.about-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}
[data-theme="dark"] .about-sub {
  color: var(--muted);
}
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  flex-wrap: wrap;
  gap: 0;
}
[data-theme="dark"] .about-hero-stats {
  background: var(--surface);
  border-color: var(--border);
}
.ah-stat {
  text-align: center;
  padding: 0 28px;
}
.ah-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
[data-theme="dark"] .ah-num {
  color: var(--primary);
}
.ah-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}
[data-theme="dark"] .ah-lbl {
  color: var(--muted);
}
.ah-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
[data-theme="dark"] .ah-div {
  background: var(--border);
}

/* Mission section */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-promise {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  padding: 10px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.about-promise i {
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.asc-quote {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.4;
}
.about-story-card p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.asc-founder {
  display: flex;
  align-items: center;
  gap: 12px;
}
.asc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
[data-theme="dark"] .asc-avatar {
  background: var(--primary);
  color: #0c0f1a;
}
.asc-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.asc-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.25s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.team-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.team-tags span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text2);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 99px;
}
.team-tags span i {
  font-size: 0.65rem;
  color: var(--primary);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--card-shadow);
  transition: all 0.25s;
  text-align: center;
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-glow);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 auto 16px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-hero {
  background: var(--secondary);
  padding: 120px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .contact-hero {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% -10%,
    rgba(14, 165, 233, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-form-wrap {
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Contact info card */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.office-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.office-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-city {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
}
.office-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  background: var(--primary-glow);
  color: var(--primary);
}
.office-badge.main {
  background: var(--amber-bg);
  color: var(--amber);
}
.office-addr {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 3px;
}
.office-hrs {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.office-hrs i {
  color: var(--primary);
  font-size: 0.7rem;
}

/* Channel cards */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.2s;
  cursor: pointer;
}
.channel-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}
.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.channel-icon.wa {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
}
.channel-icon.em {
  background: var(--primary-glow);
  color: var(--primary);
}
.channel-icon.ca {
  background: var(--amber-bg);
  color: var(--amber);
}
.channel-icon.ig {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple);
}
.channel-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.channel-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1px;
}
.channel-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.2s;
}
.channel-card:hover .channel-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* FAQ Accordion */
.faq-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.faq-mini-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text2);
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}
.faq-mini-title i {
  color: var(--primary);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  gap: 12px;
  transition: color 0.18s;
}
.faq-item:hover .faq-q {
  color: var(--primary);
}
.faq-arrow {
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 16px 13px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 11, 26, 0.72);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 445px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-pop 0.25s ease;
}
@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}
.modal-close:hover {
  background: var(--bg2);
  color: var(--text);
}
.modal-ico {
  font-size: 2rem;
  margin-bottom: 11px;
  color: var(--primary);
}
.modal-box h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-submit {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: 5px;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.modal-submit:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
}
.modal-note {
  text-align: center;
  margin-top: 9px;
  font-size: 0.71rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.modal-note i {
  color: var(--green);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 116px 28px 60px;
  }
  .hero-right {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .boot-hero-wrap {
    grid-template-columns: 1fr;
  }
  .calc-body {
    grid-template-columns: 1fr;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 60px 20px;
  }
  .section-full {
    padding: 60px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .dash-shell {
    flex-direction: column;
  }
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
  }
  .dash-main {
    margin-left: 0;
    padding: 18px;
  }
  .store-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-wrap {
    padding: 104px 20px 52px;
  }
  .bundle-card {
    flex-direction: column;
    text-align: center;
  }
  .bundle-card::after {
    display: none;
  }
  .bundle-wrap {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
  }
  .boot-hero-wrap {
    padding: 110px 20px 60px;
  }
  .proof-bar {
    gap: 16px;
    padding: 14px 20px;
  }
  .proof-sep {
    display: none;
  }
  .footer {
    padding: 40px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 60px 20px;
  }
  .calc-wrap {
    padding: 26px 18px;
  }
  .about-hero {
    padding: 110px 20px 56px;
  }
  .about-hero-stats {
    padding: 16px 16px;
  }
  .ah-stat {
    padding: 0 16px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-hero {
    padding: 110px 20px 56px;
  }
}
