/*
Theme Name: Candy AI Porn
Theme URI: https://candyaipirn.com
Author: Candy AI Porn
Description: Modern single-page dark theme for candyaipirn.com. Premium AI aesthetic, conversion focused.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: candyaipirn
*/

/* ==========================================================================
   CSS Variables – Dark theme, purple/pink accents
   ========================================================================== */
:root {
  --bg: #0a0a0b;
  --bg-card: #121214;
  --bg-card-hover: #1a1a1e;
  --text: #e8e6ed;
  --text-muted: #9b98a6;
  --accent-pink: #e84a8a;
  --accent-purple: #8b5cf6;
  --accent-violet: #a78bfa;
  --glow-pink: rgba(232, 74, 138, 0.35);
  --glow-purple: rgba(139, 92, 246, 0.35);
  --gradient-hero: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(232, 74, 138, 0.08) 50%, transparent 100%);
  --gradient-cta: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--glow-purple);
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --nav-height: 72px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-violet); text-decoration: none; }
a:hover { color: var(--accent-pink); }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: var(--space-md); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: var(--space-sm); }
p { margin: 0 0 var(--space-md); color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Layout – Sections
   ========================================================================== */
.section {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section { padding: var(--space-3xl) var(--space-xl); }
}
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-title h2 { margin-bottom: var(--space-sm); }

/* ==========================================================================
   Sticky Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-logo {
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
}
.site-logo:hover { color: var(--accent-pink); }
.site-logo__accent { color: rgb(232 74 138); }
.site-logo:hover .site-logo__accent { color: rgb(232 74 138); }

/* Hamburger – visibile solo su mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.site-header.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-header.is-menu-open .nav-links {
    display: flex;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links li:last-child a { border-bottom: none; }
}
@media (min-width: 641px) {
  .nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: var(--gradient-hero);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-content h1 { color: var(--text); }
.hero-subheadline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
@media (max-width: 639px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
/* Primary button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-pink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-pink), 0 0 24px var(--glow-purple);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
/* Hero visual – phone mockup / placeholder */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-soft), 0 0 60px var(--glow-purple);
  overflow: hidden;
  position: relative;
}
.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mockup-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(232, 74, 138, 0.2), transparent 60%);
}
.hero-mockup--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 899px) {
  .hero-mockup {
    width: 350px;
    height: 500px;
  }
  .hero-mockup--image img {
    object-position: top;
  }
}

/* ==========================================================================
   Cards – Rounded, hover lift
   ========================================================================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow-purple);
  border-color: rgba(139, 92, 246, 0.2);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(232, 74, 138, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}
.card-icon img {
  max-width: 32px;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Section: What Users Are Looking For (4 cards grid)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 599px) {
  .cards-grid-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Section: What Candy AI Actually Is (two columns)
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.8rem;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.abstract-visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.abstract-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, var(--glow-purple), transparent 50%),
              radial-gradient(ellipse at 30% 70%, var(--glow-pink), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}
.abstract-visual img,
.abstract-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Section: How The Experience Works (3 steps)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  text-align: center;
  position: relative;
}
.step-card:not(:last-child)::after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), transparent);
  opacity: 0.5;
}
@media (min-width: 768px) {
  .step-card:not(:last-child)::after { display: block; }
}
.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--glow-purple);
}

/* ==========================================================================
   Section: Image Gallery – 3 colonne asimmetriche (stretta | larga | stretta)
   ========================================================================== */
.section--gallery .section-title {
  margin-bottom: var(--space-lg);
}
.section--gallery .section-subtitle {
  margin: 0 0 var(--space-lg);
  color: var(--text-muted);
  font-size: 1rem;
}
.gallery-wrap {
  max-width: 1150px;
  margin: 0 auto;
}

/* ---- Card: border-radius 14px, shadow, glow, hover scale ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: #0a0a0b;
}
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}
@media (hover: hover) {
  .gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 24px var(--glow-purple);
    border-color: rgba(139, 92, 246, 0.35);
  }
}

/* ---- Mobile: 2 colonne, terza tile (quella “larga” del desktop) a capo e a larghezza piena ---- */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto minmax(160px, 22vw);
  gap: 12px;
}
/* Su mobile la tile “larga” (quella che su desktop è più larga) va in fondo alla riga e a tutta larghezza */
.gallery-item--wide-slot {
  order: 3;
  grid-column: 1 / -1;
}
.gallery-item {
  min-height: 0;
}
.gallery-item-placeholder { min-height: 0; }

/* ---- Tablet/Desktop: 3 colonne, box largo sfalsato per riga ---- */
@media (min-width: 600px) {
  .gallery-grid { gap: 18px; }
  .gallery-row {
    grid-template-columns: 0.9fr 1.6fr 0.9fr;
    grid-template-rows: minmax(200px, 20vw);
    gap: 18px;
  }
  .gallery-item--wide-slot {
    order: unset;
    grid-column: unset;
  }
  /* 2ª riga: box largo a destra */
  .gallery-row--wide-right {
    grid-template-columns: 0.9fr 0.9fr 1.6fr;
  }
  /* 3ª riga: box largo a sinistra */
  .gallery-row--wide-left {
    grid-template-columns: 1.6fr 0.9fr 0.9fr;
  }
  /* 1ª e 4ª riga: box largo al centro */
  .gallery-row--wide-center {
    grid-template-columns: 0.9fr 1.6fr 0.9fr;
  }
  .gallery-item .gallery-caption { 
    font-size: 14px;
    font-weight: 500; 
    padding: 10px 10px 5px 10px; 
  }
}

@media (min-width: 900px) {
  .gallery-grid { gap: 22px; }
  .gallery-row {
    grid-template-rows: minmax(220px, 22vw);
    gap: 22px;
  }
}

/* ==========================================================================
   Section: Features Breakdown (6 blocks)
   ========================================================================== */
@media (min-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ==========================================================================
   Section: Pricing – FREE vs PREMIUM comparison
   ========================================================================== */
#pricing .section-subtitle {
  margin: 0 0 var(--space-xl);
  color: var(--text-muted);
  font-size: 1rem;
}
.pricing-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .pricing-compare__grid {
    gap: 24px;
  }
}

/* ---- Plan cards (same height on desktop via align-items: stretch) ---- */
.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card .plan-card__btn {
  margin-top: auto;
}
.plan-card--premium {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 32px rgba(139, 92, 246, 0.15);
}
@media (min-width: 1024px) {
  .plan-card--premium {
    transform: scale(1.02);
  }
}
@media (hover: hover) {
  .plan-card--free:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.08);
  }
  .plan-card--premium:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-purple), 0 0 24px var(--glow-pink);
    border-color: rgba(139, 92, 246, 0.4);
  }
}

/* ---- Badges ---- */
.plan-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.plan-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 12px;
}
.plan-card__badge--premium {
  background: rgba(139, 92, 246, 0.25);
  color: var(--accent-violet);
}
.plan-card__badge--popular {
  background: rgba(232, 74, 138, 0.2);
  color: var(--accent-pink);
  font-size: 0.65rem;
}

/* ---- Title & description ---- */
.plan-card__title {
  font-size: 1.75rem;
  margin: 0 0 6px;
  color: var(--text);
}
.plan-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-lg);
  line-height: 1.45;
}

/* ---- Feature list + check icons ---- */
.plan-card__features {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  flex-grow: 1;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plan-card__features--accent li {
  color: var(--text);
}
.plan-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}
.plan-card__check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--text-muted);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.plan-card__features--muted .plan-card__check::after {
  border-color: var(--text-muted);
}
.plan-card__check--accent {
  background: rgba(139, 92, 246, 0.35);
}
.plan-card__check--accent::after {
  border-color: var(--accent-violet);
}
.plan-card__features--accent .plan-card__check--accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(232, 74, 138, 0.35));
}
.plan-card__features--accent .plan-card__check--accent::after {
  border-color: #fff;
}

/* ---- Buttons ---- */
.plan-card__btn {
  width: 100%;
  justify-content: center;
}
.plan-card--premium .plan-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-pink), 0 0 28px var(--glow-purple);
}

/* ---- Trust line ---- */
.pricing-compare__trust {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: var(--space-xl) 0 0;
}

/* ==========================================================================
   Section: Who Should Use It (comparison two columns)
   ========================================================================== */
#who-should-use.section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#who-should-use .section-title {
  width: 100%;
  max-width: 720px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}
.comparison-col h3 { margin-bottom: var(--space-md); }
.comparison-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comparison-col li {
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.comparison-col.col-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
}
.comparison-col.col-no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* ==========================================================================
   Section: FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-question {
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-violet); }
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Section: Final CTA
   ========================================================================== */
.final-cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  margin: var(--space-2xl) var(--space-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--glow-purple), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.final-cta .section-title { margin-bottom: var(--space-md); }
.final-cta p { margin-bottom: var(--space-lg); max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary {
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 0 40px var(--glow-pink);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Utility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
