/* ═══════════════════════════════════════════════════════════════════════
   OnlyFans Promo Template – style.css
   Fonts: Poppins (headings) + Inter (body) — save locally in /assets/fonts
   ════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   LOCAL FONT DECLARATIONS
─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-regular.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ──────────────────────────────────────────────────────────────
   DESIGN TOKENS
─────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:            #07071a;
  --bg-section:    #0b0b22;
  --bg-card:       #0e0e2a;
  --bg-card-hover: #13133a;
  --border:        rgba(255, 255, 255, 0.07);
  --border-focus:  rgba(59, 130, 246, 0.5);

  --primary:       #3b82f6;
  --primary-dark:  #2563eb;
  --primary-glow:  rgba(59, 130, 246, 0.25);
  --accent:        #ec4899;
  --accent-glow:   rgba(236, 72, 153, 0.25);
  --gold:          #f59e0b;

  --text:          #f1f5f9;
  --text-muted:    #94a3b8;
  --text-subtle:   #64748b;

  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-card:    linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(139,92,246,0.05) 100%);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-xxl: 7rem;

  /* Typography */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --container:   1200px;
  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2rem;

  /* Transitions */
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE
─────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY
─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--text-muted); }

strong { color: var(--text); font-weight: 600; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────────────────────────
   LAYOUT
─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

.section--dark {
  background-color: var(--bg-section);
}

.grid { display: grid; gap: var(--space-md); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid--3 { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   SECTION HEADER
─────────────────────────────────────────────────────────────── */
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.section__header h2 { margin-bottom: var(--space-sm); }
.section__header p  { font-size: 1.1rem; }

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

/* ──────────────────────────────────────────────────────────────
   BUTTONS
─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn--lg  { padding: 0.9rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

.btn--glow {
  box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(59, 130, 246, 0.15);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow), 0 4px 20px var(--primary-glow); }
  50%       { box-shadow: 0 0 40px rgba(59,130,246,0.5), 0 8px 30px rgba(139,92,246,0.3); }
}

/* ──────────────────────────────────────────────────────────────
   NAVIGATION
─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 7, 26, 0.97);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo-icon { display: flex; align-items: center; color: var(--primary); }
.logo-dot  { color: var(--primary); }

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.nav__link--active { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 26, 0.97);
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--text); }
.nav__mobile.nav__mobile--open { display: flex; }

@media (max-width: 820px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
}

/* ──────────────────────────────────────────────────────────────
   HERO SECTION
─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

/* Orb backgrounds */
.hero__bg-orbs, .cta-section__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.orb--blue   { width: 600px; height: 600px; background: #3b82f6; top: -10%; left: -5%; }
.orb--pink   { width: 400px; height: 400px; background: #ec4899; bottom: 5%; right: 5%; }
.orb--purple { width: 350px; height: 350px; background: #8b5cf6; top: 40%; right: 15%; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px #22c55e;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title {
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-lg);
  line-height: 1.75;
}
.hero__subtitle strong { color: var(--text); }

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Stats Bar */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 var(--space-md);
}
.stat__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat__suffix { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.stat__label  { font-size: 0.78rem; color: var(--text-subtle); text-align: center; }

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ──────────────────────────────────────────────────────────────
   FEATURE CARDS
─────────────────────────────────────────────────────────────── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}
.feature-card h3 {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.93rem;
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────────
   INCLUDED GRID
─────────────────────────────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.included-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
}
.included-item:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-3px);
}
.included-item__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: var(--primary-glow);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.included-item__text h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.included-item__text p  { font-size: 0.92rem; }

@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   TABS
─────────────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.3rem;
  width: fit-content;
  margin-inline: auto;
}

.tab {
  padding: 0.55rem 1.6rem;
  border-radius: calc(var(--radius-md) - 2px);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab--active {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.tab:not(.tab--active):hover { color: var(--text); }

/* ──────────────────────────────────────────────────────────────
   PRICING CARDS
─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  background: linear-gradient(145deg, #0f1535 0%, #0b0b28 100%);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 20px 60px rgba(59,130,246,0.15);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.3), 0 30px 70px rgba(59,130,246,0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
}

.pricing-card__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.pricing-card__cpc {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-lg);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-check {
  display: inline-flex;
  align-items: center;
  color: #22c55e;
  flex-shrink: 0;
}

.icon-cross {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-subtle) !important;
  opacity: 0.55;
}
.icon-cross svg { flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.82rem;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
}

/* ──────────────────────────────────────────────────────────────
   SEO CONTENT SECTION
─────────────────────────────────────────────────────────────── */
.seo-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.seo-content__text h2 {
  margin-bottom: var(--space-md);
}
.seo-content__text p {
  margin-bottom: var(--space-md);
  font-size: 0.97rem;
  line-height: 1.85;
}
.seo-content__text h3 {
  margin-bottom: var(--space-sm);
  color: var(--text);
  font-size: 1.2rem;
}

.seo-content__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: 90px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.highlight-card__icon {
  display: flex;
  align-items: center;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.highlight-card h4 { margin-bottom: var(--space-sm); font-size: 1rem; }

.highlight-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.highlight-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.highlight-card ul li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .seo-content { grid-template-columns: 1fr; }
  .seo-content__highlights { position: static; }
}

/* ──────────────────────────────────────────────────────────────
   HOW IT WORKS / STEPS
─────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 0 20px var(--primary-glow);
}

.step__content h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step__content p  { font-size: 0.9rem; }

.step__connector {
  flex-shrink: 0;
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.4;
  margin-top: 30px;
  border-radius: 2px;
}

@media (max-width: 700px) {
  .steps { flex-direction: column; align-items: center; gap: var(--space-sm); }
  .step__connector { width: 2px; height: 40px; }
}

/* ──────────────────────────────────────────────────────────────
   FAQ
─────────────────────────────────────────────────────────────── */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover { border-color: rgba(59,130,246,0.2); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
  transition: var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__question[aria-expanded="true"] { color: var(--primary); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-glow);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.4rem 1.2rem;
  animation: faq-fade-in 0.25s ease;
}
.faq__answer p {
  font-size: 0.93rem;
  line-height: 1.8;
}

@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────────
   CTA SECTION
─────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-section);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.cta-section__buttons {
  margin-bottom: var(--space-md);
}

.cta-section__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-subtle);
}
.cta-section__contact a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}
.cta-section__contact a:hover { color: var(--text); }

/* ──────────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────────── */
.footer {
  background: #04040f;
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links h4 {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--text-subtle);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}
.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-subtle);
  transition: var(--transition);
}
.footer__legal a:hover { color: var(--primary); }

@media (max-width: 700px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ──────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATION
─────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE TWEAKS
─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --space-xxl: 4rem;
    --space-xl:  2.5rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
  }
  .stat__divider { width: 60px; height: 1px; }

  .nav__logo span:last-child { display: none; }
  .nav__logo { gap: 0.3rem; }
}
