/* ═══════════════════════════════════════════════════════
   RapidSanctuary — SaaS Marketing Website Styles
   Brand: Navy (#10113D) + Gold (#fccc48) + Zinc neutrals
   Font: Geist
   ═══════════════════════════════════════════════════════ */

/* ── 1. FONTS ── */
@import url('https://fonts.bunny.net/css?family=geist:400,500,600,700,800&display=swap');

/* ── 2. DESIGN TOKENS ── */
:root {
  --navy:            #10113D;
  --navy-light:      #1a1c5c;
  --navy-deep:       #0a0b2e;
  --gold:            color-mix(in srgb, #fccc48 100%, transparent);
  --gold-hover:      color-mix(in srgb, var(--gold) 85%, black);
  --gold-glow:       color-mix(in srgb, var(--gold) 30%, transparent);
  --gold-10:         color-mix(in srgb, var(--gold) 10%, transparent);
  --gold-20:         rgba(252, 204, 72, 0.2);
  --white:           #ffffff;
  --zinc-200:        #e4e4e7;
  --zinc-300:        #d4d4d8;
  --zinc-400:        #a1a1aa;
  --zinc-500:        #71717a;
  --zinc-600:        #52525b;
  --zinc-900:        #18181b;
  --font-body:       'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --radius-md:       0.5rem;
  --radius-lg:       0.75rem;
  --radius-xl:       1rem;
  --radius-2xl:      1.25rem;
}

/* ── 3. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--zinc-400); background: var(--navy-deep); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── 4. NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  border-radius: var(--radius-2xl);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-inner {
  background: rgba(10, 11, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 900px;
  padding: 0 1.25rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-logo img {
  height: 32px;
  width: 32px;
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions .scrolled-only {
  display: none;
}

.nav.scrolled .nav-actions .default-btns {
  display: none;
}

.nav.scrolled .nav-actions .scrolled-only {
  display: inline-flex;
}

.mobile-toggle {
  display: none;
  color: var(--white);
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  color: var(--zinc-300);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 20px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 30px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--zinc-300);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-ghost {
  color: var(--zinc-400);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
}

/* ── 6. HERO SECTION ── */
.hero {
  position: relative;
  padding: 10rem 1.5rem 6rem;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--navy-deep);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-cathedral {
  width: 100%;
  height: 700px;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(252, 204, 72, 0.35) 0%, rgba(252, 204, 72, 0.12) 40%, rgba(252, 204, 72, 0.03) 70%, transparent 100%);
  top: 0;
  left: 0;
  border-radius: 0;
  transform-origin: center top;
  filter: blur(50px);
  animation:
    hero-glow-appear ease-out both,
    hero-glow-breathe 60s ease-in-out 1.4s infinite;
}

.hero-glow-cathedral::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 30% 28% at 50% 0%, rgba(255, 248, 210, 0.75) 0%, rgba(252, 204, 72, 0.28) 32%, transparent 62%);
  transform-origin: center top;
  animation: hero-glow-appear 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
           hero-glow-breathe 6s cubic-bezier(0.4, 0, 0.2, 1) 1.8s infinite;
}

/* Sun Rays */
.hero-rays {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 1800px;
  height: 2000px;
  top: -1200px;
  left: 50%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 170deg at 50% 50%,
    transparent 0deg,
    rgba(252, 204, 72, 0.06) 8deg,
    transparent 16deg,
    transparent 28deg,
    rgba(252, 204, 72, 0.04) 34deg,
    transparent 40deg,
    transparent 56deg,
    rgba(252, 204, 72, 0.07) 62deg,
    transparent 70deg,
    transparent 85deg,
    rgba(252, 204, 72, 0.05) 90deg,
    transparent 96deg,
    transparent 112deg,
    rgba(252, 204, 72, 0.06) 118deg,
    transparent 126deg,
    transparent 142deg,
    rgba(252, 204, 72, 0.04) 147deg,
    transparent 153deg,
    transparent 168deg,
    rgba(252, 204, 72, 0.07) 174deg,
    transparent 182deg,
    transparent 200deg,
    rgba(252, 204, 72, 0.05) 205deg,
    transparent 211deg,
    transparent 230deg,
    rgba(252, 204, 72, 0.06) 235deg,
    transparent 242deg,
    transparent 260deg,
    rgba(252, 204, 72, 0.04) 265deg,
    transparent 272deg,
    transparent 290deg,
    rgba(252, 204, 72, 0.05) 296deg,
    transparent 304deg,
    transparent 322deg,
    rgba(252, 204, 72, 0.06) 328deg,
    transparent 336deg,
    transparent 350deg,
    rgba(252, 204, 72, 0.04) 356deg,
    transparent 360deg
  );
  mask-image: radial-gradient(ellipse 60% 52% at 50% 58%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 52% at 50% 58%, black 0%, transparent 100%);
  animation:
    hero-rays-grow 2.6s cubic-bezier(0.22, 1, 0.36, 1) both,
    hero-rays-drift 18s ease-in-out 2.6s infinite,
    hero-rays-breathe 60s ease-in-out 10s infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0.375rem 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: var(--zinc-300);
  margin-bottom: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-badge-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero-badge-arrow-inner {
  display: flex;
  width: 3rem;
  transform: translateX(-50%);
  transition: transform 0.4s ease;
}

.hero-badge:hover .hero-badge-arrow-inner {
  transform: translateX(0);
}

.hero-badge-arrow-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.hero-badge-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--zinc-400);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-cta-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px;
}

.hero-screenshot {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-screenshot-inner {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--gold-10);
  background: var(--zinc-900);
  padding: 0.5rem;
}

.hero-screenshot-inner img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: auto;
}

.hero-screenshot-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, var(--navy-deep) 100%);
  pointer-events: none;
}

/* ── 7. SOCIAL PROOF / LOGOS ── */
.social-proof {
  padding: 4rem 1.5rem 5rem;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
}

.social-proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zinc-500);
  margin-bottom: 2rem;
}

.denomination-logo {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--zinc-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.denomination-logo i {
  width: 20px;
  height: 20px;
  color: var(--zinc-500);
}

/* ── 8. SECTIONS ── */
.section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label i {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--zinc-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-compact-top {
  padding-top: 2rem;
}

/* Light-themed sections (white bg, dark text) */
.section-light {
  position: relative;
  background: transparent;
  isolation: isolate;
}

.section-light::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--white);
  z-index: -1;
}

.section-light > * {
  position: relative;
  z-index: 1;
}

.section-light .section-title {
  color: var(--navy);
}

.section-light .section-desc {
  color: var(--zinc-500);
}

.section-light .section-label {
  color: var(--navy);
}

/* Feature cards in light sections */
.section-light .feature-card {
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
}

.section-light .feature-card:hover {
  background: var(--white);
  border-color: var(--zinc-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-light .feature-card h3 {
  color: var(--navy);
}

.section-light .feature-card p {
  color: var(--zinc-600);
}

/* Persona cards in light sections */
.section-light .persona-card {
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
}

.section-light .persona-card:hover {
  background: var(--white);
  border-color: var(--zinc-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-light .persona-card-featured {
  border-color: var(--gold);
  background: rgba(252, 204, 72, 0.06);
}

.section-light .persona-card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(252, 204, 72, 0.15);
}

.section-light .persona-card h3 {
  color: var(--navy);
}

.section-light .persona-card p,
.section-light .persona-card li {
  color: var(--zinc-600);
}

.section-light .persona-link {
  color: var(--navy);
}

/* Step cards in light sections */
.section-light .step-card h3 {
  color: var(--navy);
}

.section-light .step-card p {
  color: var(--zinc-600);
}

.section-light .step-number {
  background: var(--white);
}

/* Steps connector line in light sections */
.section-light .steps-grid::before {
  background: var(--zinc-200);
}

/* Testimonials in light sections */
.section-light .testimonial-card {
  background: var(--white);
  border: 1px solid var(--zinc-200);
}
.section-light .testimonial-card blockquote {
  color: var(--zinc-700);
}
.section-light .testimonial-author-info .name {
  color: var(--zinc-900);
}
.section-light .testimonial-author-info .role {
  color: var(--zinc-500);
}
.section-light .lead-testimonial blockquote {
  color: var(--zinc-800);
}
.section-light .lead-testimonial-quote {
  color: var(--navy);
  opacity: 0.15;
}
.section-light .lead-testimonial .name {
  color: var(--zinc-900);
}
.section-light .lead-testimonial .role {
  color: var(--zinc-500);
}

/* ── 9. FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 204, 72, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--gold-10);
}

.feature-icon i {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
}

/* ── 10. PRODUCT SHOWCASE ── */
.showcase-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.showcase-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-400);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.showcase-tab:hover {
  color: var(--zinc-300);
  background: rgba(255, 255, 255, 0.04);
}

.showcase-tab.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.showcase-content {
  position: relative;
}

.showcase-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.showcase-panel.active {
  display: block;
}

.showcase-image {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--zinc-900);
  padding: 0.5rem;
}

.showcase-image img {
  border-radius: var(--radius-xl);
  width: 100%;
}

.showcase-desc {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.showcase-desc-item {
  flex: 1;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.showcase-desc-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.showcase-desc-item p {
  font-size: 0.8125rem;
  color: var(--zinc-500);
  line-height: 1.5;
}

/* ── 11. HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-20), var(--gold), var(--gold-20));
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 20px var(--gold-glow);
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ── 12. PRICING ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pricing-toggle-label {
  font-size: 0.875rem;
  color: var(--zinc-400);
}

.pricing-toggle-label.active {
  color: var(--white);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toggle-switch.active {
  background: var(--gold-20);
  border-color: var(--gold);
}

.toggle-switch-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.toggle-switch.active .toggle-switch-knob {
  transform: translateX(20px);
  background: var(--gold);
}

.pricing-save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-10);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--gold-20);
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.recommended {
  border-color: var(--gold);
  background: rgba(252, 204, 72, 0.03);
  transform: scale(1.03);
  box-shadow: 0 0 40px var(--gold-10);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--gold-10);
}

.pricing-card-icon i {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.375rem;
}

.pricing-card .plan-desc {
  font-size: 0.8125rem;
  color: var(--zinc-500);
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  text-align: center;
  margin-bottom: 0.25rem;
}

.pricing-amount .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s ease;
}

.pricing-amount .period {
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.pricing-card .plan-users {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--zinc-500);
  margin-bottom: 1.5rem;
}

.pricing-card .plan-cta {
  width: 100%;
  margin-bottom: 1.5rem;
}

.pricing-features h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zinc-300);
  margin-bottom: 0.75rem;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--zinc-400);
}

.pricing-features li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing-features li i.check {
  color: var(--gold);
}

.pricing-features li i.x-icon {
  color: var(--zinc-600);
}

.pricing-features li.disabled {
  color: var(--zinc-600);
  text-decoration: line-through;
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--zinc-500);
  margin-top: 2rem;
}

.pricing-note-link {
  color: var(--gold);
  text-decoration: underline;
}

/* ── 13. TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--zinc-300);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: normal;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-author-info .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info .role {
  font-size: 0.75rem;
  color: var(--zinc-500);
}

/* ── 14. FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--zinc-200);
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--white);
}

.faq-question i {
  width: 18px;
  height: 18px;
  color: var(--zinc-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.7;
}

/* ── 15. CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  z-index: -1;
}

.cta-banner-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.08;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

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

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: var(--zinc-400);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── 16. FOOTER ── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zinc-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--zinc-500);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.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-bottom p {
  font-size: 0.8125rem;
  color: var(--zinc-600);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--zinc-500);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--gold);
}

.footer-socials i {
  width: 18px;
  height: 18px;
}

/* ── 17. ANIMATIONS ── */
/* ── HERO GLOW & RAYS ANIMATIONS ── */
@keyframes hero-glow-appear {
  0% {
    opacity: 0;
    filter: blur(90px);
  }
  30% {
    opacity: 0.4;
    filter: blur(80px);
  }
  60% {
    opacity: 0.7;
    filter: blur(65px);
  }
  100% {
    opacity: 1;
    filter: blur(50px);
  }
}

@keyframes hero-glow-breathe {
  0% {
    opacity: 1;
    filter: blur(50px);
  }
  50% {
    opacity: 0.96;
    filter: blur(52px);
  }
  100% {
    opacity: 1;
    filter: blur(50px);
  }
}

@keyframes hero-rays-grow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
  }
}

@keyframes hero-rays-drift {
  0% { transform: translateX(-50%) rotate(0deg) scale(1); }
  25% { transform: translateX(-50%) rotate(1deg) scale(1.002); }
  50% { transform: translateX(-50%) rotate(0deg) scale(1); }
  75% { transform: translateX(-50%) rotate(-1deg) scale(1.002); }
  100% { transform: translateX(-50%) rotate(0deg) scale(1); }
}

@keyframes hero-rays-breathe {
  0% {
    opacity: 0.90;
    filter: brightness(1);
  }
  25% {
    opacity: 0.80;
    filter: brightness(1.04);
  }
  50% {
    opacity: 0.75;
    filter: brightness(1.06);
  }
  75% {
    opacity: 0.80;
    filter: brightness(1.04);
  }
  100% {
    opacity: 0.90;
    filter: brightness(1);
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Always-visible. Reveal animation removed for static wireframe demo
   since IntersectionObserver only fires for the initial viewport. */
.animate-on-scroll,
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

.hero-animate {
  animation: slideUp 1s ease forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.hero-animate-delay-2 { animation-delay: 0.3s; opacity: 0; }
.hero-animate-delay-3 { animation-delay: 0.5s; opacity: 0; }
.hero-animate-delay-4 { animation-delay: 0.7s; opacity: 0; }
.hero-animate-delay-5 { animation-delay: 0.9s; opacity: 0; }

/* ── 18. SECTION DIVIDERS ── */
.section-divider {
  max-width: 400px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-20), var(--gold), var(--gold-20), transparent);
}

/* ── 19. WHO IT'S FOR — PERSONA CARDS ── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.persona-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.persona-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.persona-card-featured {
  border-color: var(--gold-20);
  background: rgba(252, 204, 72, 0.03);
}

.persona-card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px var(--gold-10);
}

.persona-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gold-10);
}

.persona-icon i {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.persona-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.persona-card p {
  font-size: 0.875rem;
  color: var(--zinc-400);
  line-height: 1.7;
  flex: 1;
}

.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap 0.2s ease;
}

.persona-link:hover {
  gap: 0.625rem;
}

.persona-link i {
  width: 16px;
  height: 16px;
}

/* ── 20. LEAD TESTIMONIAL (PULL-QUOTE) ── */
.lead-testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  padding: 2rem 0;
}

.lead-testimonial-quote {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif;
}

.lead-testimonial blockquote {
  font-size: 1.375rem;
  color: var(--zinc-200);
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.lead-testimonial .testimonial-author {
  justify-content: center;
}

.lead-testimonial .testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1rem;
}

/* ── 21. TRUST / SECURITY STRIP ── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--zinc-400);
  font-size: 0.8125rem;
  font-weight: 500;
}

.trust-item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
}

.trust-item-icon i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ── 22. ENHANCED GOLD GLOWS ── */
.pricing-card.recommended {
  box-shadow: 0 0 50px var(--gold-10), 0 0 100px rgba(252, 204, 72, 0.05);
}

.hero-screenshot-inner {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 80px var(--gold-10), 0 0 120px rgba(252, 204, 72, 0.05);
}

.testimonial-stars i {
  filter: drop-shadow(0 0 3px rgba(252, 204, 72, 0.4));
}

/* ── 23. DENOMINATION LOGO MARQUEE ── */
.logo-marquee-wrap {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── 24. FOOTER NEWSLETTER ── */
.footer-newsletter {
  margin-top: 1.25rem;
}

.footer-newsletter p {
  font-size: 0.8125rem;
  color: var(--zinc-500);
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: var(--zinc-600);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-hover);
}

/* ── 25. RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-actions .default-btns { display: none; }
  .showcase-desc { flex-direction: column; }
  .trust-strip { gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { padding: 8rem 1rem 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.recommended { transform: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 1rem; }
  .hero-ctas { flex-direction: column; }
  .lead-testimonial blockquote { font-size: 1.125rem; }
  .lead-testimonial-quote { font-size: 4rem; }
  .trust-strip { gap: 1.5rem; }
  .trust-item { font-size: 0.75rem; }
  .newsletter-form { flex-direction: column; }
  .stats-row { gap: 2rem; }
}

/* ── 19. STATS ROW ── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-value .gold {
  color: var(--gold);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-top: 0.25rem;
}