/*
Theme Name: ACTEVIA
Theme URI: https://actevia.de
Author: ACTEVIA
Author URI: https://actevia.de
Description: Premium WordPress Theme für ACTEVIA – das B2B SaaS-System für Kanzleien und Berater.
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: actevia
Tags: business, dark, landing-page, saas
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --color-bg:         #0a0c10;
  --color-bg-2:       #0f1218;
  --color-bg-3:       #141820;
  --color-surface:    #1a1f2e;
  --color-border:     #252b3b;
  --color-gold:       #c9a84c;
  --color-gold-light: #e8c97a;
  --color-gold-dim:   rgba(201,168,76,0.12);
  --color-accent:     #3b6bff;
  --color-text:       #e8eaf0;
  --color-text-muted: #8892a4;
  --color-text-dim:   #5a6478;
  --color-white:      #ffffff;
  --color-danger:     #e05252;
  --color-success:    #3ecf8e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 80px rgba(59,107,255,0.08);

  --max-width: 1200px;
  --section-pad: clamp(60px, 8vw, 120px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-white);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--color-text-muted); line-height: 1.75; }

.text-gold   { color: var(--color-gold); }
.text-white  { color: var(--color-white); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section { padding: var(--section-pad) 0; }
.section--dark  { background: var(--color-bg-2); }
.section--darker{ background: var(--color-bg-3); }
.section--surface{ background: var(--color-surface); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4     { gap: 16px; }
.gap-6     { gap: 24px; }
.gap-8     { gap: 32px; }

.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

/* ============================================================
   COMPONENTS
   ============================================================ */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--gold {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.badge--blue {
  background: rgba(59,107,255,0.1);
  color: #7b9fff;
  border: 1px solid rgba(59,107,255,0.2);
}
.badge--red {
  background: rgba(224,82,82,0.1);
  color: #f08080;
  border: 1px solid rgba(224,82,82,0.2);
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
  margin: 16px 0;
}
.divider--center { margin: 16px auto; }

/* Section Label */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-gold);
  color: #0a0c10;
}
.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--ghost {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  background: #20263a;
  border-color: var(--color-gold);
}
.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn--full { width: 100%; }
.btn--danger {
  background: var(--color-danger);
  color: white;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}
.card--dark {
  background: var(--color-bg-3);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,12,16,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
.nav__logo span { color: var(--color-gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--color-white); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav__mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(59,107,255,0.05) 0%, transparent 50%),
    var(--color-bg);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero__eyebrow {
  margin-bottom: 24px;
}
.hero__title {
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--color-gold);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  max-width: 560px;
}
.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-white);
  line-height: 1;
}
.hero__stat-value span { color: var(--color-gold); }
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.problem__numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
}
.problem__number-item {
  background: var(--color-surface);
  padding: 40px 32px;
  text-align: center;
}
.problem__number-value {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-danger);
  line-height: 1;
  margin-bottom: 8px;
}
.problem__number-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.problem__total {
  background: rgba(224,82,82,0.08);
  border: 1px solid rgba(224,82,82,0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.problem__total-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-danger);
  line-height: 1;
}
.problem__total-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}
.problem__note {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparison__col {
  background: var(--color-surface);
  padding: 40px 32px;
}
.comparison__col--highlight {
  background: #0f1520;
  border-left: none;
}
.comparison__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.comparison__header-icon {
  font-size: 1.5rem;
}
.comparison__header-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--color-white);
}
.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.comparison__item--bad  .comparison__dot { color: var(--color-danger); }
.comparison__item--good .comparison__dot { color: var(--color-success); }
.comparison__dot { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FEATURES / BENEFITS
   ============================================================ */
.features__header {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.proof__result {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-success);
  line-height: 1;
  margin-bottom: 4px;
}
.proof__result--neutral {
  color: var(--color-gold);
}
.proof__company {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}
.proof__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #0a0c10;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing__card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing__card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.pricing__card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(160deg, #131825 0%, #0f1520 100%);
}
.pricing__card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.pricing__name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.pricing__price {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing__price sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.pricing__price-note {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}
.pricing__breakeven {
  background: var(--color-gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.pricing__divider {
  height: 1px;
  background: var(--color-border);
  margin: 20px 0;
}
.pricing__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.pricing__feature::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.pricing__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================================
   MODULES / ADDONS
   ============================================================ */
.modules__header {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.module__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.module__card:hover { border-color: rgba(201,168,76,0.3); }
.module__price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 8px;
}

/* ============================================================
   TOKEN SECTION
   ============================================================ */
.token__explanation {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 40px;
}
.token__use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.token__use-item {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.token__use-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.token__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.token__card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.token__card--popular {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.token__amount {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-white);
  line-height: 1;
}
.token__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}
.token__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.token__per {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 24px;
}

/* ============================================================
   LICENSE MODEL
   ============================================================ */
.license__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 48px;
}
.license__step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  width: 100%;
  position: relative;
}
.license__step--you {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #131825, #0f1520);
}
.license__step--them {
  border-color: rgba(62,207,142,0.3);
}
.license__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(var(--color-gold), var(--color-success));
  position: relative;
}
.license__connector::after {
  content: '↓';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-success);
  font-size: 0.8rem;
}
.license__income {
  background: rgba(62,207,142,0.06);
  border: 1px solid rgba(62,207,142,0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.license__income-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-success);
  line-height: 1;
}
.license__income-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ============================================================
   ROI CALCULATOR SECTION
   ============================================================ */
.roi__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.roi__table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  background: var(--color-bg-3);
  border-bottom: 1px solid var(--color-border);
}
.roi__table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(37,43,59,0.5);
  color: var(--color-text-muted);
}
.roi__table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-gold-dim);
}
.roi__table .value--negative { color: var(--color-danger); }
.roi__table .value--positive { color: var(--color-success); }
.roi__table .value--gold     { color: var(--color-gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.2s;
}
.faq__question:hover { color: var(--color-gold); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--color-gold);
  transition: transform 0.2s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__answer.open {
  max-height: 500px;
  padding-bottom: 24px;
}
.faq__answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    var(--color-bg-2);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section__title {
  margin-bottom: 20px;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-3);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--color-gold); }
.footer__desc {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--color-text); }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--color-text); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--color-bg-3);
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
}
.disclaimer p {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,12,16,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 24px;
  }
  .nav.mobile-open .nav__cta {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 24px;
    position: fixed;
    top: calc(72px + 200px);
    left: 0; right: 0;
    background: rgba(10,12,16,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
  }
  .hero__stats { grid-template-columns: 1fr; gap: 20px; }
  .comparison { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .pricing__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .token__use-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}
.animate-fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.animate-fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.animate-fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }

.btn--primary.pulse { animation: pulse-gold 2s infinite; }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption { text-align: center; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
