/* ============================================
   Jewelry Studio Manager - Marketing Website
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette */
  --navy-950: #0f172a;
  --navy-900: #1e293b;
  --navy-800: #1a2332;
  --navy-700: #334155;
  --navy-600: #475569;
  --navy-500: #64748b;
  --navy-400: #94a3b8;
  --navy-300: #cbd5e1;
  --navy-200: #e2e8f0;
  --navy-100: #f1f5f9;
  --navy-50: #f8fafc;

  --gold-600: #b8860b;
  --gold-500: #d4a02f;
  --gold-400: #e6b83d;
  --gold-300: #f5c842;
  --gold-200: #f7d76b;
  --gold-100: #fef3c7;

  --white: #ffffff;
  --warm-white: #faf9f7;
  --warm-gray: #f5f4f1;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4a02f 0%, #f5c842 50%, #d4a02f 100%);
  --gradient-gold-hover: linear-gradient(135deg, #b8860b 0%, #e6b83d 50%, #b8860b 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 6rem 1.5rem;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 4px 14px rgba(212, 160, 47, 0.3);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-950);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--transition-base) both;
}

.animate-fade-in-up-delay-1 {
  animation: fadeInUp 0.6s 0.15s var(--transition-base) both;
}

.animate-fade-in-up-delay-2 {
  animation: fadeInUp 0.6s 0.3s var(--transition-base) both;
}

.animate-fade-in-up-delay-3 {
  animation: fadeInUp 0.6s 0.45s var(--transition-base) both;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gradient-gold-hover);
  box-shadow: 0 6px 20px rgba(212, 160, 47, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: rgba(212, 160, 47, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-300);
}

.btn-outline-dark:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-logo img {
  width: 36px;
  height: 36px;
}

.navbar-logo span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-300);
  transition: color var(--transition-fast);
}

.navbar-links a:hover {
  color: var(--gold-400);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  margin: 6px 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Sticky Desktop Top Bar ---------- */
.sticky-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 47, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.sticky-top-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.625rem 1.5rem;
}

.sticky-top-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.sticky-top-logo img {
  width: 28px;
  height: 28px;
}

.sticky-top-logo span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 160, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(212, 160, 47, 0.1);
  border: 1px solid rgba(212, 160, 47, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--navy-400);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  background: var(--navy-800);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--navy-400);
  margin-top: 0.125rem;
}

/* ---------- Trust Badges Strip ---------- */
.trust-strip {
  background: var(--warm-white);
  border-bottom: 1px solid var(--navy-200);
  padding: 1.25rem 1.5rem;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-600);
  white-space: nowrap;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ---------- Section Shared ---------- */
.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-light {
  background: var(--warm-white);
}

.section-white {
  background: var(--white);
}

.section-warm {
  background: var(--gold-100);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--gold-400);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--navy-500);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: var(--navy-400);
}

/* ---------- Features Showcase (Alternating Layout) ---------- */
.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-row-reverse {
  direction: rtl;
}

.feature-row-reverse > * {
  direction: ltr;
}

.feature-text {
  max-width: 480px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--gold-600);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.feature-text p {
  font-size: 0.9375rem;
  color: var(--navy-500);
  line-height: 1.65;
}

.feature-screenshot {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--navy-200);
  background: var(--white);
}

.feature-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Who It's For (Niche Grid) ---------- */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.niche-card {
  background: var(--white);
  border: 1px solid rgba(212, 160, 47, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

.niche-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.niche-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 47, 0.12);
  border-radius: 12px;
  margin: 0 auto 1.25rem;
  color: var(--gold-600);
}

.niche-icon svg {
  width: 28px;
  height: 28px;
}

.niche-card h3 {
  font-size: 1.0625rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-950);
}

.niche-card p {
  font-size: 0.875rem;
  color: var(--navy-500);
  line-height: 1.6;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(212, 160, 47, 0.1);
  border: 2px solid rgba(212, 160, 47, 0.25);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--navy-400);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Comparison ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-base);
}

.comparison-card:hover {
  box-shadow: var(--shadow-lg);
}

.comparison-weak {
  opacity: 0.85;
}

.comparison-winner {
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gold-500);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  white-space: nowrap;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.comparison-header svg {
  width: 24px;
  height: 24px;
  color: var(--navy-400);
  flex-shrink: 0;
}

.comparison-winner .comparison-header svg {
  color: var(--gold-500);
}

.comparison-header h3 {
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.comparison-card > p {
  font-size: 0.9375rem;
  color: var(--navy-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.comparison-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.comparison-no {
  color: var(--navy-400);
}

.comparison-no svg {
  color: #dc2626;
}

.comparison-yes {
  color: var(--navy-700);
  font-weight: 500;
}

.comparison-yes svg {
  color: #16a34a;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gold-500);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-700);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.9375rem;
  color: var(--navy-500);
}

.pricing-trial {
  font-size: 0.8125rem;
  color: var(--gold-500);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.pricing-divider {
  height: 1px;
  background: var(--navy-200);
  margin-bottom: 1.75rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--navy-600);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- Pricing Toggle ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-400);
  transition: color 0.2s;
}

.pricing-toggle-label.active-label {
  color: var(--navy-900);
  font-weight: 600;
}

.pricing-save-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--navy-200);
  border-radius: 26px;
  transition: background 0.25s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold-500);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.pricing-billed {
  font-size: 0.8125rem;
  color: var(--gold-600);
  font-weight: 500;
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--navy-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-600);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--gold-500);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--gold-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--navy-500);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 5rem 1.5rem;
  background: var(--navy-950);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: var(--navy-400);
  margin-bottom: 2rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ---------- Sticky Mobile CTA Bar ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy-950);
  border-top: 1px solid rgba(212, 160, 47, 0.2);
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-300);
  flex: 1;
}

.sticky-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--navy-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-mobile-close svg {
  width: 18px;
  height: 18px;
}

.sticky-mobile-close:hover {
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--navy-400);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 0.75rem;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-300);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--navy-400);
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--navy-500);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--navy-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(212, 160, 47, 0.1);
  color: var(--gold-400);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Legal Pages ---------- */
.legal-hero {
  background: var(--gradient-dark);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.legal-hero p {
  font-size: 1rem;
  color: var(--navy-400);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-950);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800);
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--navy-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 1.25rem 1.25rem;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--navy-600);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 0.375rem;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--gold-500);
}

.legal-content strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ---------- Support Page ---------- */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.support-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.support-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: 12px;
  margin: 0 auto 1rem;
  color: var(--gold-600);
}

.support-card-icon svg {
  width: 28px;
  height: 28px;
}

.support-card h3 {
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.support-card p {
  font-size: 0.9375rem;
  color: var(--navy-500);
  line-height: 1.6;
}

.support-card a {
  color: var(--gold-600);
  font-weight: 500;
}

.support-card a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pricing-grid,
  .testimonials-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-winner {
    grid-column: 1 / -1;
  }

  .niche-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-video {
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1rem;
  }

  .navbar-links,
  .navbar-cta .btn-outline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-links.active a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
  }

  .navbar-links.active a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  /* Hide sticky top bar on mobile */
  .sticky-top-bar {
    display: none;
  }

  /* Show sticky mobile CTA */
  .sticky-mobile-cta {
    display: flex;
  }

  /* Feature rows stack on mobile */
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-row-reverse {
    direction: ltr;
  }

  .feature-text {
    max-width: 100%;
  }

  .pricing-grid,
  .testimonials-grid,
  .steps-grid,
  .support-channels,
  .comparison-grid,
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .comparison-winner {
    grid-column: auto;
  }

  .steps-grid::before {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .trust-badges {
    gap: 1.25rem;
    justify-content: center;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Add bottom padding for sticky mobile CTA */
  .footer {
    padding-bottom: 5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .trust-badges {
    gap: 1rem;
  }

  .trust-badge span {
    font-size: 0.6875rem;
  }
}
