/* ═══════════════════════════════════════════════════════════════
   Hoang Editor — Ultra-Premium Apple-Inspired Design
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Light mode (default) */
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --bg-surface: #fafafa;
  --bg-glass: rgba(255, 255, 255, 0.72);

  --gold-200: #fef3c7;
  --gold-400: #f59e0b;
  --gold-500: #d97706;
  --gold-600: #b45309;

  --purple-400: #7c3aed;

  --text: #111111;
  --text-secondary: #404040;
  --text-muted: #595959;

  --border: rgba(0,0,0,0.06);
  --border-hover: rgba(0,0,0,0.12);
  --border-gold: rgba(245,158,11,0.25);

  /* Solid button — inverted for light bg */
  --btn-solid-bg: #1a1a1a;
  --btn-solid-text: #ffffff;
  --btn-solid-hover: #333333;

  /* Shadows */
  --shadow-card: rgba(0,0,0,0.06);
  --shadow-card-hover: rgba(0,0,0,0.1);
  --shadow-glow: rgba(245,158,11,0.15);

  /* Misc */
  --divider-color: rgba(0,0,0,0.06);
  --stat-hover-bg: rgba(0,0,0,0.02);
  --mobile-menu-bg: rgba(255,255,255,0.96);
  --header-scrolled-bg: rgba(255,255,255,0.88);
  --nav-link-hover-bg: rgba(0,0,0,0.04);
  --btn-ghost-border: rgba(0,0,0,0.12);
  --btn-ghost-hover-border: rgba(0,0,0,0.22);
  --btn-ghost-hover-bg: rgba(0,0,0,0.03);
  --logo-text-gradient: linear-gradient(135deg, #1a1a1a 0%, #525252 100%);
  --card-highlight: rgba(245,158,11,0.06);

  --radius-sm: 0.625rem;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --max-width: 1200px;
}

/* Dark mode */
[data-theme="dark"] {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-surface: #111111;
  --bg-glass: rgba(12, 12, 12, 0.72);

  --gold-200: #fef3c7;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;

  --purple-400: #a855f7;

  --text: #fafafa;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;

  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --border-gold: rgba(251,191,36,0.18);

  --btn-solid-bg: #ffffff;
  --btn-solid-text: #000000;
  --btn-solid-hover: #fef3c7;

  --shadow-card: rgba(0,0,0,0.5);
  --shadow-card-hover: rgba(0,0,0,0.6);
  --shadow-glow: rgba(251,191,36,0.15);

  --divider-color: rgba(255,255,255,0.06);
  --stat-hover-bg: rgba(255,255,255,0.02);
  --mobile-menu-bg: rgba(8,8,8,0.96);
  --header-scrolled-bg: rgba(8,8,8,0.88);
  --nav-link-hover-bg: rgba(255,255,255,0.05);
  --btn-ghost-border: rgba(255,255,255,0.12);
  --btn-ghost-hover-border: rgba(255,255,255,0.25);
  --btn-ghost-hover-bg: rgba(255,255,255,0.03);
  --logo-text-gradient: linear-gradient(135deg, #fff 0%, #d4d4d4 100%);
  --card-highlight: rgba(251,191,36,0.06);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(251,191,36,0.30); color: var(--btn-solid-text); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 0; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND — Clean, Subtle, Elegant
   ═══════════════════════════════════════════════════════════════ */

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--shadow-glow) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(168,85,247,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 80%, var(--shadow-glow) 0%, transparent 50%);
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Subtle grain overlay for texture */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Minimal Glass
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 2rem;
}

/* Glass pill */
.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3rem;
  padding: 0 0.75rem 0 1.25rem;
  margin-top: 1rem;
  border-radius: 9999px;
  background: var(--bg-glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
}

.site-header.scrolled .header-pill {
  background: var(--header-scrolled-bg);
  border-color: var(--border-hover);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--btn-solid-text); font-size: 0.7rem;
  box-shadow: 0 0 16px var(--shadow-glow);
}

.logo-text {
  background: var(--logo-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--nav-link-hover-bg);
}

/* Header CTA */
.btn-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.btn-pill:hover {
  background: var(--btn-solid-hover);
  transform: scale(1.04);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-left: 0.35rem;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--nav-link-hover-bg);
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 1.25rem;
  cursor: pointer; padding: 0.4rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem; left: 1rem; right: 1rem;
  background: var(--mobile-menu-bg);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: all 0.35s var(--ease-out);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1; pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--nav-link-hover-bg);
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Massive, Cinematic
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  will-change: transform;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.6rem;
  border-radius: 9999px;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.15);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero-badge .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 6px rgba(251,191,36,0.6);
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(251,191,36,0.5); }
  50% { box-shadow: 0 0 14px rgba(251,191,36,0.8); }
}

/* Hero Title */
.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 40%, #fbbf24 70%, var(--gold-400) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Hero description */
.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: none;
}

.btn-primary:hover {
  background: var(--btn-solid-hover);
  transform: scale(1.03);
  box-shadow: 0 8px 30px var(--shadow-glow);
}

.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background: transparent;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--btn-ghost-border);
  transition: all 0.35s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--btn-ghost-hover-border);
  background: var(--btn-ghost-hover-bg);
  transform: scale(1.03);
}

.btn-ghost:active { transform: scale(0.97); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Hero trust line */
.hero-trust {
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px);
}

.hero-trust-dot {
  margin: 0 0.65rem;
  color: var(--gold-400);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════════ */

.section {
  position: relative;
  z-index: 10;
  padding: 7rem 2rem;
}

.section-divider {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(85%, 800px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--divider-color), var(--divider-color), var(--divider-color), transparent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */

.stats-bar {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
  margin-top: -2rem;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.4s ease;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-item:hover {
  background: var(--stat-hover-bg);
}

.stat-num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-num .suffix {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Card watermark number */
.card-watermark {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: -1rem;
  color: rgba(128, 128, 128, 0.15);
}

.card-watermark.purple {
  color: rgba(124, 58, 237, 0.1);
}

[data-theme="dark"] .card-watermark {
  color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .card-watermark.purple {
  color: rgba(168, 85, 247, 0.07);
}

/* Step card watermark */
.step-watermark {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: rgba(128, 128, 128, 0.12);
}

[data-theme="dark"] .step-watermark {
  color: rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), var(--card-highlight), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 2; }

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--shadow-card);
}

.card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  background: rgba(251,191,36,0.06);
  color: var(--gold-400);
  border: 1px solid rgba(251,191,36,0.1);
}

.card-list {
  list-style: none;
  margin-top: 1.25rem;
}

.card-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-list li .check {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   WORKFLOW
   ═══════════════════════════════════════════════════════════════ */

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.step-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-card);
}

.step-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.step-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-icon.gold {
  background: rgba(251,191,36,0.08);
  color: var(--gold-400);
  border: 1px solid rgba(251,191,36,0.12);
}

.step-icon.purple {
  background: rgba(168,85,247,0.08);
  color: var(--purple-400);
  border: 1px solid rgba(168,85,247,0.12);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 3rem;
}

.price-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.5s var(--ease-out);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--shadow-card);
}

.price-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(251,191,36,0.03) 0%, var(--bg-elevated) 30%);
  box-shadow: 0 0 40px rgba(251,191,36,0.04);
  transform: translateY(-0.75rem);
}

.price-card.featured:hover {
  border-color: rgba(251,191,36,0.35);
  transform: translateY(-1rem);
}

.price-badge {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.price-card.featured .price-name { color: var(--gold-400); }

.price-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-height: 2.25rem;
}

.price-amt {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.price-amt .currency { font-size: 1.35rem; font-weight: 600; }
.price-amt .period { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.price-meta {
  display: flex; gap: 1.25rem;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-meta strong { color: var(--text-secondary); }

.price-features {
  list-style: none;
  margin: 1.25rem 0;
}

.price-features li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Addons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.addon-card {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out);
  cursor: default;
}

.addon-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--shadow-card);
}

.addon-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: rgba(251,191,36,0.06);
  color: var(--gold-400);
  border: 1px solid rgba(251,191,36,0.1);
}

.addon-info { flex: 1; }
.addon-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.addon-sub { font-size: 0.725rem; color: var(--text-muted); margin-top: 0.1rem; }
.addon-price { font-size: 1.05rem; font-weight: 700; color: var(--gold-400); }

/* Fleet */
.fleet-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.75rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(251,191,36,0.04), transparent);
  border: 1px solid var(--border-gold);
  margin-top: 1.5rem;
  transition: all 0.35s var(--ease-out);
}

.fleet-banner:hover { border-color: rgba(251,191,36,0.3); }

.fleet-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  background: rgba(251,191,36,0.1);
  color: var(--gold-400);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  border: 1px solid rgba(251,191,36,0.15);
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════════ */

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px var(--shadow-card);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold-400);
}

.testimonial-author {
  display: flex; align-items: center; gap: 0.875rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--btn-solid-text); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.testimonial-role { font-size: 0.775rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-trigger:hover {
  color: var(--gold-400);
}

.faq-icon {
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-400);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-panel {
  max-height: 300px;
}

.faq-panel p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */

.cta-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(251,191,36,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cta-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.12);
  color: var(--gold-400);
  box-shadow: 0 0 30px rgba(251,191,36,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  position: relative; z-index: 10;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATION UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pricing-grid,
  .workflow-grid,
  .stats-inner,
  .addons-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .workflow-grid { margin-top: 2rem; }

  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-3px);
  }

  .fleet-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-pill .btn-pill {
    display: none;
  }

  .menu-toggle { display: block; }
  .mobile-menu { display: block; }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .stats-bar {
    margin-top: -1rem;
  }

  .card, .price-card, .step-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 2.5rem 1.25rem;
  }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
