/* ============================================================
   CryptoTrackPro — Main Stylesheet
   Dark gold theme matching the add-on sidebar design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-deep:       #0f0f1a;
  --bg-card:       #1a1a2e;
  --bg-card-alt:   #16213e;
  --bg-nav:        rgba(15, 15, 26, 0.97);
  --accent:        #e37400;
  --accent-light:  #f9ab00;
  --accent-dim:    rgba(227, 116, 0, 0.12);
  --accent-border: rgba(227, 116, 0, 0.35);
  --blue:          #1a73e8;
  --blue-light:    #4a9eff;
  --blue-dim:      rgba(26, 115, 232, 0.12);
  --blue-border:   rgba(26, 115, 232, 0.35);
  --text-primary:  #e8eaed;
  --text-muted:    #9aa0a6;
  --text-dim:      #6e7680;
  --success:       #34a853;
  --error:         #ea4335;
  --border:        rgba(255, 255, 255, 0.08);
  --shadow:        0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold:   0 4px 20px rgba(227, 116, 0, 0.2);
  --shadow-blue:   0 4px 20px rgba(26, 115, 232, 0.2);
  --radius:        12px;
  --radius-sm:     8px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Google Sans', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--blue-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 115, 232, 0.15);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue-dim), var(--accent-dim));
  border: 1px solid var(--accent-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text { color: var(--text-primary); font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.logo-text em { font-style: normal; color: var(--accent-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(26, 115, 232, 0.1); }
.nav-links a.active { color: var(--blue-light); background: var(--blue-dim); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; background: var(--accent) !important; }

/* ── Page wrapper ───────────────────────────────────────────── */
.page-body { padding-top: 64px; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(227, 116, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 680px;
}
.highlight {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 35%, #fff3c0 50%, var(--accent-light) 65%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 3s linear 0.5s infinite;
}
.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(227, 116, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227, 116, 0, 0.45);
  opacity: 0.95;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--accent-border);
}
.btn-outline:hover {
  background: var(--accent-dim);
  color: var(--accent);
}
.btn-lg { font-size: 16px; padding: 16px 36px; }
.btn-sm { font-size: 14px; padding: 9px 20px; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.btn-loading { position: relative; color: transparent !important; }
.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Feature Cards ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Steps (How it works) ───────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border) 20%, var(--blue-border) 80%, transparent);
}
.step {
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-light);
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Dark section variant ───────────────────────────────────── */
.section-dark {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Plan Cards ─────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.plan-card.pro {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(227, 116, 0, 0.06) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-gold);
}
.plan-card.pro:hover {
  box-shadow: 0 8px 32px rgba(227, 116, 0, 0.3);
}
.plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-light);
  margin-bottom: 4px;
  line-height: 1.1;
}
.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.plan-features {
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.plan-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card.pro .plan-features li::before {
  color: var(--accent-light);
}
.plan-card .btn { width: 100%; }

/* ── Subscribe form inline ──────────────────────────────────── */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-form input[type="email"]:focus {
  border-color: var(--blue-border);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.subscribe-form input[type="email"]::placeholder {
  color: var(--text-dim);
}
.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

/* ── Manage subscription section ────────────────────────────── */
.manage-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.manage-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.manage-section p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.portal-form {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.portal-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.portal-form input[type="email"]:focus {
  border-color: var(--blue-border);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.portal-form input[type="email"]::placeholder { color: var(--text-dim); }

/* ── Alert messages ─────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.alert.visible { display: block; }
.alert-error {
  background: rgba(234, 67, 53, 0.1);
  border: 1px solid rgba(234, 67, 53, 0.3);
  color: #f28b82;
}
.alert-success {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #81c995;
}

/* ── Code block ─────────────────────────────────────────────── */
.code-block {
  background: #0a0a14;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}
.code-block code { flex: 1; word-break: break-all; }
.code-copy {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  flex-shrink: 0;
}
.code-copy:hover {
  border-color: var(--blue-border);
  color: var(--blue-light);
}

/* ── How To Steps (numbered list) ───────────────────────────── */
.how-steps { margin: 0; }
.how-step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  width: 40px;
  height: 40px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.how-step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-step-content p a { color: var(--blue-light); }
.how-step-content p a:hover { color: var(--blue); text-decoration: underline; }

/* ── Legal pages ────────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.legal-content .last-updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-size: 19px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--text-primary);
}
.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── Payment success / failed ───────────────────────────────── */
.result-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.result-icon.success {
  background: rgba(52, 168, 83, 0.12);
  border: 2px solid rgba(52, 168, 83, 0.4);
}
.result-icon.error {
  background: rgba(234, 67, 53, 0.12);
  border: 2px solid rgba(234, 67, 53, 0.4);
}
.result-card h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.result-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.result-card .result-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.result-next-steps {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}
.result-next-steps h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-next-steps ol {
  list-style: decimal;
  padding-left: 18px;
}
.result-next-steps ol li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom a {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--text-muted); }

/* ── Pricing note ───────────────────────────────────────────── */
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 28px;
}
.pricing-note a { color: var(--accent-light); }

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 48px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(227, 116, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 16px;
  animation: heroEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: heroEntrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  animation: heroEntrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* First section directly after a page-hero gets tighter top padding */
.page-hero + section { padding-top: 24px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
details[open] .faq-question {
  color: var(--accent-light);
}
.faq-answer {
  padding: 0 4px 20px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
}
.faq-answer strong {
  color: var(--text-primary);
  font-weight: 600;
}
.faq-answer code {
  color: var(--accent-light);
  background: rgba(249,171,0,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
}

/* ── Cycling USP Ticker (hero) ──────────────────────────────── */
.hero-ticker {
  position: relative;
  height: 28px;
  overflow: hidden;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}
.hero-ticker-item {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(12px);
  white-space: nowrap;
}
.hero-ticker-item.t1 { animation: ticker-show1 9s ease-in-out infinite; }
.hero-ticker-item.t2 { animation: ticker-show2 9s ease-in-out infinite; }
.hero-ticker-item.t3 { animation: ticker-show3 9s ease-in-out infinite; }

@keyframes ticker-show1 {
  0%     { opacity: 0; transform: translateY(12px); }
  5%     { opacity: 1; transform: translateY(0); }
  28%    { opacity: 1; transform: translateY(0); }
  33%    { opacity: 0; transform: translateY(-12px); }
  33.1%  { opacity: 0; transform: translateY(12px); }
  100%   { opacity: 0; transform: translateY(12px); }
}
@keyframes ticker-show2 {
  0%     { opacity: 0; transform: translateY(12px); }
  33%    { opacity: 0; transform: translateY(12px); }
  38%    { opacity: 1; transform: translateY(0); }
  61%    { opacity: 1; transform: translateY(0); }
  66%    { opacity: 0; transform: translateY(-12px); }
  66.1%  { opacity: 0; transform: translateY(12px); }
  100%   { opacity: 0; transform: translateY(12px); }
}
@keyframes ticker-show3 {
  0%     { opacity: 0; transform: translateY(12px); }
  66%    { opacity: 0; transform: translateY(12px); }
  71%    { opacity: 1; transform: translateY(0); }
  94%    { opacity: 1; transform: translateY(0); }
  100%   { opacity: 0; transform: translateY(-12px); }
}

/* ── Scroll fade-in ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { opacity: 0; }
.fade-in-up.is-visible {
  animation: fadeInUp 0.5s ease forwards;
}

/* ── Hero entrance animations ───────────────────────────────── */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge       { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
.hero-title       { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.hero-ticker      { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both; }
.hero-description { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both; }
.hero-actions     { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both; }
.hero-note        { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.66s both; }

/* ── Gold shimmer keyframe ──────────────────────────────────── */
@keyframes shimmerGold {
  from { background-position: 100% 50%; }
  to   { background-position: -100% 50%; }
}

/* ── Section title animated gold accent bar ─────────────────── */
.section-header.center .section-title {
  padding-bottom: 14px;
}
.section-header.center .section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 0 auto;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-header.center.is-visible .section-title::after {
  width: 44px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }
  .hero { padding: 52px 0 52px; }
  .hero-title { font-size: 36px; letter-spacing: -0.8px; }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 30px; }
  .result-card { padding: 36px 24px; }
  .manage-section { padding: 24px; }
}
@media (max-width: 480px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .container { padding: 0 16px; }
}

/* ── Cookie Consent Banner ──────────────────────────────────── */
#ctp-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  border-top: 1px solid rgba(227,116,0,0.35);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ctp-consent-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ctp-consent-inner p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  color: var(--text-dim, #9aa0a6);
  line-height: 1.5;
}
.ctp-consent-inner a {
  color: var(--accent, #e37400);
  text-decoration: underline;
}
.ctp-consent-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ctp-btn-decline,
.ctp-btn-accept {
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(227,116,0,0.5);
  transition: all 0.2s;
}
.ctp-btn-decline {
  background: transparent;
  color: var(--text-dim, #9aa0a6);
}
.ctp-btn-decline:hover {
  background: rgba(227,116,0,0.08);
  color: #e8eaed;
}
.ctp-btn-accept {
  background: var(--accent, #e37400);
  color: #fff;
  border-color: var(--accent, #e37400);
}
.ctp-btn-accept:hover {
  background: var(--accent-light, #f9ab00);
  border-color: var(--accent-light, #f9ab00);
}
@media (max-width: 600px) {
  .ctp-consent-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .ctp-consent-btns {
    width: 100%;
    justify-content: flex-end;
  }
}
