/* ===========================================
   Lovel AI - Main Styles
   Design system: dark theme + neon pink/magenta
   =========================================== */

/* --- CSS Variables --- */
:root {
  --primary: #FF2D9B;
  --primary-light: #FF6BB8;
  --primary-dark: #E0148A;
  --accent: #C724FF;
  --accent-light: #E08CFF;

  --bg: #0A0A0F;
  --bg-secondary: #111118;
  --bg-card: #16161F;
  --bg-elevated: #1C1C28;

  --text: #F5F5FA;
  --text-secondary: #B4B4C6;
  --text-muted: #7A7A8C;

  --border: rgba(255, 45, 155, 0.14);
  --border-strong: rgba(255, 45, 155, 0.32);

  --gradient-primary: linear-gradient(135deg, #FF2D9B 0%, #C724FF 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(255, 45, 155, 0.28) 0%, transparent 70%);
  --gradient-text: linear-gradient(135deg, #FF6BB8 0%, #FF2D9B 50%, #C724FF 100%);

  --shadow-glow: 0 0 40px rgba(255, 45, 155, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.6);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle SVG noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* --- Selection --- */
::selection {
  background: rgba(255, 45, 155, 0.35);
  color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 10px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1px 0 rgba(255, 45, 155, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark.logo-mark-img {
  background: transparent;
  box-shadow: none;
}

.logo-mark.logo-mark-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar-menu a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.navbar-menu a:hover { color: var(--text); }

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out);
}

.navbar-menu a:hover::after { width: 100%; }

.navbar-cta { display: flex; gap: 12px; align-items: center; }
.navbar-cta.mobile { display: none; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 4px 24px rgba(255, 45, 155, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 8px 38px rgba(255, 45, 155, 0.65);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255, 45, 155, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 45, 155, 0.1);
  border: 1px solid var(--border-strong);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 .text-gradient {
  background: var(--gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
  background: linear-gradient(135deg, #1A0E1C 0%, #0E0A16 100%);
  box-shadow:
    0 0 0 1px rgba(255, 45, 155, 0.18) inset,
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 90px rgba(255, 45, 155, 0.2);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 15, 0.55) 100%);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: rgba(28, 28, 40, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 5s ease-in-out infinite;
}

.hero-floating-card .float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-floating-card .float-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.3; }
.hero-floating-card .float-text strong { color: var(--text); display: block; font-size: 0.9rem; }

.hero-floating-card.card-1 { top: 10%; left: -30px; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 18%; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Sections --- */
section { position: relative; }

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 45, 155, 0.1);
  border: 1px solid var(--border-strong);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text);
}

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

.section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 36px 0 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section h3::before {
  content: '';
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 780px;
}

.section p strong { color: var(--text); font-weight: 600; }

.section ul.feature-list {
  margin: 16px 0 24px;
  padding: 0;
}

.section ul.feature-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.section ul.feature-list li:last-child { border-bottom: none; }

.section ul.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 45, 155, 0.18);
  border: 1px solid var(--primary);
}

.section ul.feature-list li::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.55rem;
  color: var(--primary-light);
}

.section ul.feature-list li strong { color: var(--text); }

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 50px 0;
}

.split.reverse > .split-image { order: -1; }

.split-image {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1A0E1C 0%, #0E0A16 100%);
  box-shadow:
    0 0 0 1px rgba(255, 45, 155, 0.16) inset,
    0 25px 70px rgba(0, 0, 0, 0.55);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 155, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.split-image:hover img { transform: scale(1.04); }

.split-image .image-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(28, 28, 40, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* --- Mini Cards --- */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.mini-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 45, 155, 0.15);
}

.mini-card .mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 45, 155, 0.12);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.mini-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mini-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* --- Callout --- */
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.callout::before {
  content: '\f004';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--bg);
  padding: 0 8px;
  color: var(--primary);
  font-size: 0.85rem;
}

.callout p {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

.callout p strong { font-style: normal; color: var(--primary-light); }

/* --- TOC --- */
.toc-wrap {
  padding: 48px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 45, 155, 0.05), transparent);
}

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.toc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-title i { color: var(--primary); }

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 36px;
}

.toc li::before {
  content: '0' counter(toc);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(255, 45, 155, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  font-feature-settings: 'tnum';
}

.toc a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.toc a:hover { color: var(--text); }

/* --- CTA Banner --- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(255, 45, 155, 0.12) 0%, rgba(199, 36, 255, 0.06) 100%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--gradient-glow);
  pointer-events: none;
  opacity: 0.7;
}

.cta-banner-text {
  position: relative;
  z-index: 1;
}

.cta-banner h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cta-banner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 460px;
}

.cta-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 28px 0;
  margin: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-item i { color: var(--primary); font-size: 1.1rem; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Badge Table --- */
.badge-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

table.badge-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 520px;
}

table.badge-table thead th {
  background: linear-gradient(135deg, rgba(255, 45, 155, 0.14), rgba(199, 36, 255, 0.08));
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border-strong);
}

table.badge-table tbody td {
  padding: 16px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

table.badge-table tbody tr:last-child td { border-bottom: none; }
table.badge-table tbody tr:hover td { background: rgba(255, 45, 155, 0.04); }
table.badge-table tbody td:first-child { color: var(--text); font-weight: 600; }
table.badge-table tbody td:nth-child(2) { color: var(--primary-light); font-weight: 600; }

/* --- Pricing --- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(255, 45, 155, 0.14);
}

.pricing-card.featured {
  border-color: var(--primary);
  background:
    linear-gradient(180deg, rgba(255, 45, 155, 0.1) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 60px rgba(255, 45, 155, 0.25);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(255, 45, 155, 0.45);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.pricing-headline {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--primary); font-size: 0.85rem; }
.pricing-features li strong { color: var(--text); font-weight: 600; }

/* --- FAQ --- */
.faq-list { max-width: 880px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.faq-item.active {
  border-color: var(--border-strong);
  box-shadow: 0 8px 20px rgba(255, 45, 155, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
  display: block;
  flex: 1;
  line-height: 1.4;
}

.faq-question h3::before { display: none; content: none; }

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 45, 155, 0.12);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.7rem;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

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

.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-inner p { margin-bottom: 12px; max-width: none; font-size: 0.95rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--text); }

/* --- Final CTA --- */
.final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-card {
  background:
    linear-gradient(135deg, rgba(255, 45, 155, 0.14) 0%, rgba(199, 36, 255, 0.07) 100%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: var(--gradient-glow);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.8;
}

.final-cta-card > * { position: relative; z-index: 1; }

.final-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.final-cta-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 34px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 0 32px;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-links-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom p { margin: 0; max-width: none; color: var(--text-muted); }

/* --- Mobile toggle --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

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

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
  border: none;
}
