/* ============================================================
   SEXTING AI — Component Styles
   ============================================================ */

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-default);
  transition: all var(--duration-normal) var(--ease-default);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: var(--color-border-muted);
}

/* Propagate nav height to the container so height:100% on nav__inner works */
.nav .container {
  height: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-5);
  padding-block: var(--space-3);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
}

.nav__link {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-tertiary);
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.nav__link:hover, .nav__link.active {
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle svg {
  transition: transform var(--duration-fast);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-3);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-fast);
  transform: translateX(-50%) translateY(-4px);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  transition: all var(--duration-fast);
}

.nav__dropdown-item:hover {
  background: rgba(244,63,94,0.08);
  color: var(--color-accent-pink);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
  /* No margin-left:auto here — let nav__actions handle the push-right */
  flex-shrink: 0;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  /* ── Hamburger visible, desktop links hidden ── */
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--secondary { display: none; }

  /* ── Tighter gap on mobile so logo + button + hamburger fit well ── */
  .nav__inner { gap: var(--space-3); }

  /* ── nav__actions pushed to the right; toggle follows immediately ── */
  .nav__actions { margin-left: auto; }

  /* ── Open mobile menu panel ── */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-border-default);
    padding: var(--space-2) var(--space-3) var(--space-7);
    gap: 2px;
    align-items: stretch;
    /* Scroll if the menu is very long (svh excludes browser chrome) */
    max-height: calc(100vh - var(--nav-height));
    max-height: calc(100svh - var(--nav-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ── Mobile nav link rows ── */
  .nav__link {
    padding: 12px 16px;
    font-size: var(--font-size-base);
    border-radius: var(--radius-sm);
  }

  /* ── Dropdown li: column layout so submenu renders below ── */
  .nav__dropdown {
    display: flex;
    flex-direction: column;
  }

  /* ── Toggle row stretches full width; arrow on the right ── */
  .nav__dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  /* Arrow rotates when submenu is open */
  .nav__dropdown.open > .nav__dropdown-toggle svg {
    transform: rotate(180deg);
  }

  /* ── Submenu: collapsed by default on mobile ── */
  .nav__dropdown-menu {
    position: static !important;
    transform: none !important;
    /* Visually hidden via max-height, not opacity, so items are accessible */
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    box-shadow: none;
    min-width: unset;
    background: rgba(244, 63, 94, 0.05);
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius-md);
    margin: 0 var(--space-2) 0;
    padding: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.25s ease,
                margin-bottom 0.25s ease;
  }

  /* ── Submenu open state (class toggled by JS) ── */
  .nav__dropdown.open .nav__dropdown-menu {
    max-height: 320px;
    padding: var(--space-2);
    margin-bottom: var(--space-2);
    pointer-events: all;
  }

  /* ── Submenu items ── */
  .nav__dropdown-item {
    display: block;
    padding: 11px 14px;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    white-space: normal; /* allow wrapping on small screens */
  }

  .nav__dropdown-item:hover,
  .nav__dropdown-item:focus {
    background: rgba(244, 63, 94, 0.09);
    color: var(--color-accent-pink);
  }

  /* ── Suppress desktop hover-open on mobile ── */
  .nav__dropdown:hover > .nav__dropdown-menu {
    /* Keep collapsed unless .open class is present */
    max-height: 0;
    padding: 0;
    pointer-events: none;
  }
  .nav__dropdown.open:hover > .nav__dropdown-menu {
    max-height: 320px;
    padding: var(--space-2);
    pointer-events: all;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-surface-muted);
  border-top: 1px solid var(--color-border-default);
  padding-top: var(--space-12);
  padding-bottom: var(--space-7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.nav__logo__icon { display: block; border-radius: 7px; flex-shrink: 0; width: 30px; height: 30px; object-fit: contain; }
.nav__logo__brand { font-size: var(--font-size-xl); font-weight: var(--font-weight-bold); background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.nav__logo__suffix { font-size: var(--font-size-xl); font-weight: var(--font-weight-bold); color: var(--color-text-primary); line-height: 1; }
.footer__brand .nav__logo { display: inline-flex; margin-bottom: var(--space-4); }
.footer__brand p { color: var(--color-text-tertiary); font-size: var(--font-size-sm); line-height: var(--line-height-relaxed); max-width: 280px; }

.footer__col-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  transition: color var(--duration-fast);
}

.footer__link:hover { color: var(--color-text-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-7);
  border-top: 1px solid var(--color-border-default);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: var(--line-height-relaxed);
}

.footer__copy {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-12);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70%;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.hero__badge { margin-bottom: var(--space-5); }

.hero__title {
  font-size: clamp(var(--font-size-4xl), 7vw, var(--font-size-5xl));
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero__subtitle {
  font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-lg));
  color: var(--color-text-tertiary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

.hero__social-proof-item strong { color: var(--color-text-primary); }

/* Character grid showcase */
.hero__showcase {
  position: relative;
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.hero__showcase::before,
.hero__showcase::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.hero__showcase::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface-base), transparent);
}

.hero__showcase::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface-base), transparent);
}

@media (max-width: 768px) {
  .hero__showcase { grid-template-columns: repeat(2, 1fr); }
  .hero__showcase::before, .hero__showcase::after { width: 60px; }
}

/* Character card */
.char-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-default);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-default);
}

.char-card:hover {
  border-color: rgba(244,63,94,0.4);
  box-shadow: var(--shadow-glow-pink);
  transform: scale(1.02);
}

.char-card__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.char-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.char-card__name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.char-card__tag {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
}

/* Image fills the char-card background slot */
.char-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   FEATURE CARDS GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: all var(--duration-normal) var(--ease-default);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,63,94,0.4), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.feature-card:hover {
  border-color: rgba(244,63,94,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244,63,94,0.08), 0 4px 12px rgba(0,0,0,0.4);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-subtle);
  border: 1px solid rgba(244,63,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-5);
}

.feature-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.feature-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-tertiary);
  line-height: var(--line-height-relaxed);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.pricing-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-default);
}

.pricing-card--featured {
  background: linear-gradient(145deg, rgba(244,63,94,0.06) 0%, rgba(168,85,247,0.06) 100%);
  border-color: rgba(244,63,94,0.35);
  box-shadow: 0 0 0 1px rgba(244,63,94,0.15), var(--shadow-3);
  transform: scale(1.02);
}

.pricing-card--featured .pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card:hover:not(.pricing-card--featured) {
  border-color: rgba(244,63,94,0.2);
  transform: translateY(-2px);
}

.pricing-card__tier {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-2);
}

.pricing-card__amount {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__currency {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-tertiary);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card__period {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pricing-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-default);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.pricing-feature svg { flex-shrink: 0; }

/* Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.pricing-toggle__label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-tertiary);
  cursor: pointer;
}

.pricing-toggle__label.active { color: var(--color-text-primary); }

.toggle-switch {
  position: relative;
  width: 48px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
}

.toggle-switch input:checked ~ .toggle-track {
  background: var(--gradient-brand);
  border-color: transparent;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform var(--duration-fast) var(--ease-spring);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.toggle-switch input:checked ~ .toggle-track .toggle-thumb {
  transform: translateX(20px);
}

.pricing-save-badge {
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: #10b981;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq-item.open { border-color: rgba(244,63,94,0.25); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
  user-select: none;
}

.faq-item__question h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast);
  color: var(--color-text-tertiary);
}

.faq-item.open .faq-item__icon {
  background: rgba(244,63,94,0.1);
  border-color: rgba(244,63,94,0.3);
  color: var(--color-accent-pink);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-default);
}

.faq-item.open .faq-item__answer { max-height: 600px; }

.faq-item__answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--font-size-base);
  color: var(--color-text-tertiary);
  line-height: var(--line-height-relaxed);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--duration-normal);
}

.testimonial-card:hover {
  border-color: rgba(244,63,94,0.2);
  transform: translateY(-2px);
}

.testimonial-card__stars { margin-bottom: var(--space-3); }
.testimonial-card__text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__author-info strong {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.testimonial-card__author-info span {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table th, .compare-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border-default);
  font-size: var(--font-size-sm);
}

.compare-table th {
  background: var(--color-surface-raised);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-tertiary);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table td:first-child {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(244,63,94,0.03); }

.compare-table .highlight td {
  background: rgba(244,63,94,0.04);
}

.compare-table .check-yes { color: #10b981; }
.compare-table .check-no { color: #ef4444; }
.compare-table .check-partial { color: #f59e0b; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal);
  text-decoration: none;
}

.blog-card:hover {
  border-color: rgba(244,63,94,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--gradient-brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--color-border-default);
  overflow: hidden;
}

/* When a real image is inside the thumb, make it fill the slot */
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.blog-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
  flex: 1;
}

.blog-card__excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: auto;
}

.blog-card__meta-dot {
  width: 3px;
  height: 3px;
  background: var(--color-border-strong);
  border-radius: var(--radius-full);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,63,94,0.12) 0%, rgba(168,85,247,0.08) 40%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
}

.cta-band__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .cta-band { padding: var(--space-10) var(--space-6); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  overflow: hidden;
}

.stat-item {
  padding: var(--space-6);
  text-align: center;
  border-right: 1px solid var(--color-border-default);
}

.stat-item:last-child { border-right: none; }

.stat-item__value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border-default); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-11));
  padding-bottom: var(--space-11);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 1; }

/* ============================================================
   TABLE OF CONTENTS (blog)
   ============================================================ */
.toc {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-7);
}

.toc__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toc__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  padding: 4px 0;
  border-left: 2px solid var(--color-border-default);
  padding-left: var(--space-3);
  transition: all var(--duration-fast);
}

.toc__link:hover {
  border-left-color: var(--color-accent-pink);
  color: var(--color-accent-pink);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.breadcrumbs a:hover { color: var(--color-text-primary); }
.breadcrumbs__sep { color: var(--color-border-strong); }

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}

.age-gate__box {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-9);
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate__icon { font-size: 48px; margin-bottom: var(--space-5); }
.age-gate__title { font-size: var(--font-size-2xl); font-weight: var(--font-weight-bold); margin-bottom: var(--space-3); }
.age-gate__text { color: var(--color-text-tertiary); margin-bottom: var(--space-7); line-height: var(--line-height-relaxed); }
.age-gate__btns { display: flex; gap: var(--space-3); justify-content: center; }
