/* ═══════════════════════════════════════════════════════════════
   CITADEL CLOUD — Global SaaS Platform Stylesheet
   citadelbuy.com | v3.0 | 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* Surface palette */
  --ink:       #0b0f19;
  --paper:     #111827;
  --card:      #161d2e;
  --card2:     #1c2537;
  --edge:      #243044;
  --edge2:     #2e3d56;

  /* Accent palette */
  --cyan:      #22d3ee;
  --orange:    #fb923c;
  --green:     #4ade80;
  --yellow:    #fbbf24;
  --purple:    #a78bfa;
  --red:       #f87171;

  /* Text palette */
  --white:     #f0f6ff;
  --light:     #e2e8f0;
  --gray:      #7b8ba3;  /* Bumped from #64748b for WCAG AA contrast on --card */
  --gray2:     #94a3b8;

  /* RGB channels for rgba() use */
  --cyan-rgb:   34, 211, 238;
  --orange-rgb: 251, 146, 60;
  --green-rgb:  74, 222, 128;
  --yellow-rgb: 251, 191, 36;
  --purple-rgb: 167, 139, 250;
  --red-rgb:    248, 113, 113;

  /* Layout */
  --radius:    8px;
  --radius-lg: 12px;
  --max-w:     1200px;

  /* Motion */
  --transition: .2s ease;
  --transition-slow: .3s ease;
}
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; }

/* ── ACCESSIBILITY ── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skip-to-content:focus { left: 50%; transform: translateX(-50%); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.btn:focus-visible,
.filter-btn:focus-visible,
.copy-btn:focus-visible,
.nav-mobile-toggle:focus-visible,
.faq-question:focus-visible,
.pricing-toggle-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── FADE ANIMATION ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-target.visible { opacity: 1; transform: translateY(0); }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,15,25,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--edge);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand .brand-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}
.nav-brand .brand-sub {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--gray2);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(34,211,238,.08);
}
.nav-links .nav-cta {
  background: var(--cyan);
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: .5px;
}
.nav-links .nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  padding: 100px 32px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(34,211,238,.04) 0%, transparent 60%);
  position: relative;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: var(--gray2);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--cyan);
  color: var(--ink);
}
.btn-primary:hover { background: var(--white); color: var(--ink); }
.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--edge2);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── SECTIONS ── */
.section {
  padding: 80px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-alt {
  background: var(--paper);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-header p {
  color: var(--gray2);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* ── STAT BAR ── */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-slow);
}
.card:hover {
  border-color: var(--edge2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(34,211,238,.1);
  color: var(--cyan);
  font-weight: 500;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(34,211,238,.06) 0%, var(--card) 40%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-tier {
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--gray2);
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,48,68,.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

/* ── PRODUCT CATALOG ── */
.product-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--edge);
  background: transparent;
  color: var(--gray2);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34,211,238,.08);
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.product-card:hover {
  border-color: var(--edge2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.product-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--edge);
}
.product-card-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 12px;
  color: var(--gray2);
  line-height: 1.6;
}
.product-card-body {
  padding: 16px 24px;
}
.product-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(34,211,238,.08);
  color: var(--cyan);
}
.product-tag-orange { background: rgba(251,146,60,.1); color: var(--orange); }
.product-tag-green { background: rgba(74,222,128,.1); color: var(--green); }
.product-tag-purple { background: rgba(167,139,250,.1); color: var(--purple); }
.product-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.product-price-from {
  font-size: 11px;
  color: var(--gray);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}

/* ── COURSE CARDS ── */
.course-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.course-badge {
  display: inline-flex;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(74,222,128,.1);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
  width: fit-content;
}
.course-badge-paid { background: rgba(251,191,36,.1); color: var(--yellow); }
.course-card h3 { font-size: 16px; margin-bottom: 8px; }
.course-card p { font-size: 13px; color: var(--gray2); line-height: 1.7; flex: 1; }
.course-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
  font-size: 11px;
  color: var(--gray);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.testimonial-role {
  font-size: 11px;
  color: var(--gray);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(34,211,238,.1), rgba(167,139,250,.08));
  border: 1px solid var(--edge2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--gray2);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--edge);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-heading {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--gray2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--edge);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--gray);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 12px; color: var(--gray); }

/* ── TABLES ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--card2);
  border-bottom: 1px solid var(--edge);
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--edge);
  color: var(--gray2);
}
.data-table tr:hover td { background: rgba(34,211,238,.02); }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  padding: 80px 32px 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(34,211,238,.03) 0%, transparent 60%);
  border-bottom: 1px solid var(--edge);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  color: var(--gray2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PROMPT LIBRARY (moved from single-page) ── */
.prompt-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
}
.prompt-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.prompt-card-title { font-size: 16px; font-weight: 600; }
.prompt-card-subtitle { font-size: 12px; color: var(--gray); margin-top: 4px; }
.prompt-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag { font-size: 10px; padding: 4px 10px; border-radius: 4px; font-weight: 600; letter-spacing: .5px; }
.ptag-cyan { background: rgba(34,211,238,.1); color: var(--cyan); }
.ptag-orange { background: rgba(251,146,60,.1); color: var(--orange); }
.ptag-green { background: rgba(74,222,128,.1); color: var(--green); }
.ptag-yellow { background: rgba(251,191,36,.1); color: var(--yellow); }
.ptag-purple { background: rgba(167,139,250,.1); color: var(--purple); }
.ptag-red { background: rgba(248,113,113,.1); color: var(--red); }
.prompt-body { padding: 24px; }
.prompt-block {
  background: var(--card2);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
}
.prompt-block-toolbar {
  padding: 10px 16px;
  background: rgba(0,0,0,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prompt-block-label { font-size: 11px; color: var(--gray); }
.copy-btn {
  background: rgba(34,211,238,.15);
  color: var(--cyan);
  border: none;
  padding: 5px 14px;
  font-size: 11px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.copy-btn:hover { background: rgba(34,211,238,.25); }
.copy-btn.copied { background: rgba(74,222,128,.2); color: var(--green); }
.prompt-text {
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  white-space: pre-wrap;
  color: var(--gray2);
  max-height: 600px;
  overflow-y: auto;
}
.prompt-text .t-role { color: var(--cyan); }
.prompt-text .t-section { color: var(--orange); font-weight: 600; }
.prompt-text .t-var { color: var(--yellow); }
.prompt-text .t-instr { color: var(--white); }
.prompt-text .t-note { color: var(--gray); font-style: italic; }

/* ── ENTERPRISE ── */
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.enterprise-feature-list { list-style: none; }
.enterprise-feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--edge);
  font-size: 14px;
  color: var(--gray2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.enterprise-feature-list li::before {
  content: "\25C6";
  color: var(--cyan);
  font-size: 10px;
}

/* ── FORM UTILITIES ── */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
}
.form-input::placeholder { color: var(--gray); }
.form-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ── BUTTON UTILITIES ── */
.btn-block { width: 100%; justify-content: center; }

/* ── BREADCRUMBS ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  padding: 16px 32px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--gray2); font-size: 13px; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { color: var(--edge2); }

/* ── TAG SYSTEM (unified) ── */
.tag {
  display: inline-block;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .5px;
}
.tag-cyan    { background: rgba(var(--cyan-rgb), .1); color: var(--cyan); }
.tag-orange  { background: rgba(var(--orange-rgb), .1); color: var(--orange); }
.tag-green   { background: rgba(var(--green-rgb), .1); color: var(--green); }
.tag-yellow  { background: rgba(var(--yellow-rgb), .1); color: var(--yellow); }
.tag-purple  { background: rgba(var(--purple-rgb), .1); color: var(--purple); }
.tag-red     { background: rgba(var(--red-rgb), .1); color: var(--red); }

/* ── PRICING PAGE COMPONENTS ── */
.pricing-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 48px;
}
.pricing-toggle-btn {
  padding: 10px 28px;
  border-radius: 26px;
  border: none;
  background: transparent;
  color: var(--gray2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.pricing-toggle-btn.active { background: var(--cyan); color: var(--ink); }
.pricing-toggle-btn:hover:not(.active) { color: var(--white); }
.pricing-save-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(var(--green-rgb), .15);
  color: var(--green);
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── COMPARISON TABLE ── */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--edge);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 700px;
}
.comparison-table thead th {
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--card2);
  border-bottom: 1px solid var(--edge);
  font-weight: 600;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.featured-col { color: var(--cyan); background: rgba(var(--cyan-rgb), .06); }
.comparison-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--edge);
  color: var(--gray2);
  text-align: center;
  background: var(--card);
}
.comparison-table tbody td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.comparison-table tbody td.featured-col { background: rgba(var(--cyan-rgb), .03); }
.comparison-table tbody tr:hover td { background: rgba(var(--cyan-rgb), .02); }
.comparison-table tbody tr:hover td.featured-col { background: rgba(var(--cyan-rgb), .05); }
.comparison-table .section-row td {
  background: var(--card2);
  color: var(--cyan);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 20px;
}
.check { color: var(--green); font-weight: 700; font-size: 15px; }
.dash { color: var(--gray); font-size: 18px; }

/* ── FAQ ── */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--edge); }
.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after { content: "+"; font-size: 20px; color: var(--gray); flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-question::after { content: "\2212"; color: var(--cyan); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 14px; color: var(--gray2); line-height: 1.8; padding-bottom: 20px; }

/* ── HIGH-TICKET CARDS ── */
.high-ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.high-ticket-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-slow);
}
.high-ticket-card:hover {
  border-color: var(--edge2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.high-ticket-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.high-ticket-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.high-ticket-card p { font-size: 13px; color: var(--gray2); line-height: 1.7; margin-bottom: 20px; }
.high-ticket-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}
.high-ticket-price span { font-size: 13px; color: var(--gray); font-family: 'Space Grotesk', sans-serif; font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--paper);
    border-bottom: 1px solid var(--edge);
    padding: 16px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .hero { padding: 60px 20px 48px; }
  .section { padding: 48px 20px; }
  .stat-bar { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .enterprise-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .high-ticket-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 12px 20px 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stat-bar { gap: 16px; }
  .stat-val { font-size: 24px; }
  .cta-banner { padding: 32px 20px; }
  .cta-banner h2 { font-size: 22px; }
}
@media (max-width: 480px) {
  .section { padding: 32px 16px; }
  .nav-inner { padding: 0 16px; }
  .page-hero { padding: 60px 16px 32px; }
  .footer { padding: 48px 16px 24px; }
}
