/* =============================================
   WIZARD INDICATOR – style.css
   Dark Trading Theme | Cinzel + Outfit
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --bg-deep:       #080c14;
  --bg-card:       #0d1423;
  --bg-card-hover: #111b2e;
  --bg-border:     rgba(0, 212, 255, 0.12);
  --accent:        #00d4ff;
  --accent-glow:   rgba(0, 212, 255, 0.25);
  --accent-2:      #0aefff;
  --green:         #00ff88;
  --red:           #ff4466;
  --text-primary:  #f0f4ff;
  --text-secondary:#8fa0b8;
  --text-muted:    #4a5568;
  --font-display:  'Cinzel', serif;
  --font-body:     'Outfit', sans-serif;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow:   0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.5);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--bg-border);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0,212,255,0.06);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Section Labels & Titles ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bg-border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a { font-size: 1.2rem; color: var(--text-primary); font-weight: 500; }
.mobile-menu a:hover { color: var(--accent); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,212,255,0.08); top: -100px; right: -100px; }
.orb-2 { width: 350px; height: 350px; background: rgba(0,255,136,0.06); bottom: 0; left: -50px; }
.orb-3 { width: 200px; height: 200px; background: rgba(0,212,255,0.06); top: 40%; left: 40%; }

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--bg-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Wizard Orb Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wizard-orb-wrapper {
  position: relative;
  width: 620px;
  height: 620px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  animation: spin-slow linear infinite;
}
.ring-1 { width: 600px; height: 600px; animation-duration: 30s; border-style: dashed; }
.ring-2 { width: 500px; height: 500px; animation-duration: 20s; animation-direction: reverse; }
.ring-3 { width: 400px; height: 400px; animation-duration: 15s; border-color: rgba(0,255,136,0.1); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.wizard-orb {
  width: 480px;
  height: 480px;
  max-width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,212,255,0.15), rgba(0,0,0,0.8));
  border: 1.5px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 80px rgba(0,212,255,0.25), inset 0 0 50px rgba(0,212,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.chart-preview {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-svg { width: 100%; height: auto; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,212,255,0.2), var(--accent));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step-connector { display: none; }
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,212,255,0.06);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 240px;
}

/* Feature Highlight */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
}
.highlight-visual { position: relative; }
.chart-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-border);
  background: #060b14;
}
.chart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--bg-border);
}
.chart-dots { display: flex; gap: 5px; }
.chart-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
}
.chart-title-text { font-size: 0.72rem; color: var(--text-muted); font-family: monospace; }
.chart-body { padding: 12px; }
.highlight-content .section-label { text-align: left; }
.highlight-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,212,255,0.06), var(--bg-card));
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-secondary);
}
.pricing-card--guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,212,255,0.04);
  border-color: rgba(0,212,255,0.2);
  padding: 40px 24px;
}
.guarantee-icon { margin-bottom: 16px; }
.pricing-card--guarantee h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pricing-card--guarantee p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[data-open="true"] { border-color: rgba(0,212,255,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item[data-open="true"] .faq-answer { max-height: 200px; padding-bottom: 4px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(0,212,255,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.author-avatar--pink { background: linear-gradient(135deg, #ff6eb4, #ff4466); color: #fff; }
.author-avatar--green { background: linear-gradient(135deg, #00ff88, #00cc66); color: var(--bg-deep); }
.author-name { display: block; font-weight: 600; font-size: 0.9rem; }
.author-role { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 { width: 400px; height: 400px; background: rgba(0,212,255,0.07); top: -100px; left: 20%; filter: blur(80px); border-radius: 50%; position: absolute; }
.orb-cta-2 { width: 300px; height: 300px; background: rgba(0,255,136,0.05); bottom: -80px; right: 20%; filter: blur(80px); border-radius: 50%; position: absolute; }
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.contact-detail a { color: var(--accent); transition: opacity var(--transition); }
.contact-detail a:hover { opacity: 0.75; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-success {
  display: none;
  text-align: center;
  color: var(--green);
  font-size: 0.9rem;
  padding: 10px;
  background: rgba(0,255,136,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,255,136,0.2);
}
.form-success.visible { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--bg-border);
  background: rgba(0,0,0,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.87rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }

  .feature-highlight { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .highlight-content .section-label { text-align: center; }
  .highlight-content h2 { text-align: center; }
  .highlight-content p { text-align: center; }
  .check-list { align-items: center; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

.howitworks-cta {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  padding: 18px 24px;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

/* ============================================ */
/* ====== ANLEITUNG / GUIDE SECTION =========== */
/* ============================================ */
.guide-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.025), transparent);
  position: relative;
}
.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}
.guide-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.guide-block:last-child { margin-bottom: 0; }
.guide-block--reverse { grid-template-columns: 1fr 1.1fr; }
.guide-block--reverse .guide-image,
.guide-block--reverse .guide-filter-visual,
.guide-block--reverse .guide-prognose-visual { order: 2; }
.guide-block--reverse .guide-content { order: 1; }

.guide-image {
  position: relative;
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 30px 80px rgba(0,212,255,0.08), 0 0 0 1px rgba(0,212,255,0.05);
}
.guide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-image-caption {
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--bg-border);
  background: rgba(0,0,0,0.3);
  font-family: var(--font-body);
}

.guide-content { padding: 8px 0; }
.guide-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(0,212,255,0.06);
}
.guide-content h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.guide-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-note {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-tertiary, #8a8a8a);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.guide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.guide-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.tag-green { background: rgba(0,255,136,0.12); color: #00ff88; }
.tag-yellow { background: rgba(255,200,40,0.12); color: #ffc828; }
.tag-red { background: rgba(255,68,102,0.12); color: #ff4466; }

.guide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.guide-stat {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 14px 16px;
}
.guide-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.guide-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.guide-stat-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Filter visual */
.guide-filter-visual { display: flex; justify-content: center; }
.filter-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,212,255,0.08);
}
.filter-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bg-border);
}
.filter-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.filter-row:last-of-type { border-bottom: none; }
.filter-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.filter-pill {
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.filter-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.92rem;
  color: #00ff88;
  font-weight: 500;
}

/* Prognose visual */
.guide-prognose-visual { display: flex; justify-content: center; }
.prognose-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,212,255,0.08);
}
.prognose-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bg-border);
}
.prognose-grid { display: flex; flex-direction: column; gap: 8px; }
.prognose-row {
  display: grid;
  grid-template-columns: 28px 1fr 64px;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.prognose-row > span:first-child {
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-weight: 600;
}
.bar-track {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}
.bar-up {
  background: linear-gradient(90deg, rgba(0,212,255,0.6), #00ff88);
  box-shadow: 0 0 10px rgba(0,255,136,0.3);
}
.prognose-row .tag-green {
  text-align: right;
  font-size: 0.82rem;
}
.prognose-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================ */
/* ====== UPDATED PRICING (4 TIERS) =========== */
/* ============================================ */
.pricing-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pricing-tagline {
  font-size: 0.88rem;
  color: var(--accent);
  margin: -8px 0 18px;
  font-weight: 500;
}
.pricing-finePrint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}
.pricing-badge--alt {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  color: #001a1a;
}

/* Guarantee banner (replaces guarantee card) */
.guarantee-banner {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(0,212,255,0.06), rgba(0,255,136,0.04));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.guarantee-banner .guarantee-icon { margin-bottom: 0; flex-shrink: 0; }
.guarantee-banner .guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.guarantee-banner .guarantee-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================ */
/* ====== RESPONSIVE FOR NEW SECTIONS ========= */
/* ============================================ */
@media (max-width: 1024px) {
  .pricing-grid--four { grid-template-columns: repeat(2, 1fr); }
  .guide-block,
  .guide-block--reverse { grid-template-columns: 1fr; gap: 32px; }
  .guide-block--reverse .guide-image,
  .guide-block--reverse .guide-filter-visual,
  .guide-block--reverse .guide-prognose-visual { order: 0; }
  .guide-block--reverse .guide-content { order: 0; }
}
@media (max-width: 768px) {
  .pricing-grid--four { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .guide-stats { grid-template-columns: 1fr; }
  .guide-content h3 { font-size: 1.5rem; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 22px; }
  .guide-section { padding: 64px 0; }
}

/* ============================================ */
/* ====== STEP-LINKS &amp; NAV LOGIN =========== */
/* ============================================ */
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.step-link:hover { gap: 10px; }
.step-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}
.pay-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 4px;
  transition: color 0.2s ease;
}
.nav-login:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-actions .nav-login,
  .nav-actions .nav-cta { display: none; }
}

/* ============================================ */
/* ====== AUTH (login.html) =========== */
/* ============================================ */
.auth-body {
  background: var(--bg-primary, #06070a);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.auth-topbar {
  position: relative;
  z-index: 2;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-border);
  background: rgba(6,7,10,0.7);
  backdrop-filter: blur(10px);
}
.auth-back {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-back:hover { color: var(--accent); }

.auth-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,212,255,0.12);
  position: relative;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-tab.is-active {
  background: var(--accent);
  color: #001a1a;
  box-shadow: 0 4px 14px rgba(0,212,255,0.3);
}

.auth-panel { display: none; }
.auth-panel.is-active { display: block; }

.auth-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.auth-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.auth-label > span:first-child {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.auth-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.7;
}
.auth-hint em { font-style: normal; color: var(--accent); }
.auth-label input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.auth-label input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  margin: 4px 0;
}
.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
}
.auth-checkbox input { accent-color: var(--accent); }
.auth-checkbox--block {
  display: flex;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 4px;
}
.auth-checkbox a { color: var(--accent); text-decoration: underline; }
.auth-link-small {
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: none;
}
.auth-link-small:hover { text-decoration: underline; }

.auth-divider {
  text-align: center;
  margin: 22px 0;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.82rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--bg-border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-google {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-tv-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 12px 14px;
  border-radius: 9px;
  margin: 4px 0;
}
.auth-tv-note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}
.auth-tv-note a:hover { text-decoration: underline; }

.auth-finePrint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.auth-msg {
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}
.auth-msg--info {
  display: block;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
}
.auth-msg--error {
  display: block;
  background: rgba(255,68,102,0.08);
  border: 1px solid rgba(255,68,102,0.3);
  color: #ff4466;
}

.auth-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--bg-border);
}
.auth-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 4px;
}
.auth-footer a:hover { color: var(--accent); }

/* ============================================ */
/* ====== ACCOUNT (account.html) =========== */
/* ============================================ */
.auth-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auth-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.account-main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 56px 0 80px;
}
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-border);
}
.account-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.account-subtitle {
  color: var(--text-secondary);
  margin: 0;
}
.account-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.3);
  color: #00ff88;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.acct-stat {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 18px 20px;
}
.acct-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.acct-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.acct-stat-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.account-section { margin-bottom: 40px; }
.account-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.account-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.account-plan {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.account-plan-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.account-plan-row p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.account-plan--danger {
  border-color: rgba(255,68,102,0.25);
  background: linear-gradient(160deg, rgba(255,68,102,0.04), var(--bg-card));
}
.btn-danger {
  background: rgba(255,68,102,0.08);
  color: #ff6680;
  border: 1px solid rgba(255,68,102,0.4);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.btn-danger:hover {
  background: rgba(255,68,102,0.15);
  border-color: rgba(255,68,102,0.7);
}

.account-tv {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.account-tv strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.account-mute {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 460px;
}

.account-table {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  overflow: hidden;
}
.account-table-row {
  display: grid;
  grid-template-columns: 130px 1fr 100px 100px 90px;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bg-border);
  align-items: center;
}
.account-table-row:last-child { border-bottom: none; }
.account-table-head {
  background: rgba(255,255,255,0.025);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  font-weight: 500;
}
.account-link-small {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
}
.account-link-small:hover { text-decoration: underline; }

.account-help {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.account-help a { color: var(--accent); text-decoration: none; }
.account-help a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .account-stats { grid-template-columns: repeat(2, 1fr); }
  .account-plan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .auth-card { padding: 26px; }
  .account-table-row { grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 16px; }
  .account-table-head { display: none; }
  .account-table-row > span:nth-child(2) { grid-column: 1 / -1; font-weight: 500; }
  .account-stats { grid-template-columns: 1fr; }
  .auth-topbar { flex-direction: column; gap: 12px; padding: 14px 18px; }
}

/* ============================================ */
/* ====== REVIEWS / RATINGS =================== */
/* ============================================ */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: linear-gradient(120deg, rgba(0,212,255,0.05), rgba(0,255,136,0.03));
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 14px;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-avg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.reviews-avg-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.reviews-avg-stars {
  color: #ffc828;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.reviews-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
  min-width: 140px;
}
.reviews-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Eligibility Gate */
.reviews-gate {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin: 0 auto 28px;
  max-width: 720px;
  background: rgba(255,200,40,0.05);
  border: 1px solid rgba(255,200,40,0.25);
  border-radius: 12px;
  flex-wrap: wrap;
}
.reviews-gate-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,200,40,0.1);
  border-radius: 50%;
  color: #ffc828;
  flex-shrink: 0;
}
.reviews-gate-text {
  flex: 1;
  min-width: 220px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}
.reviews-gate-actions { flex-shrink: 0; }

/* Review Form */
.review-form {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.review-stars-picker {
  display: inline-flex;
  gap: 4px;
}
.review-stars-picker button {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}
.review-stars-picker button:hover { transform: scale(1.1); }
.review-stars-picker button.is-active { color: #ffc828; }

.review-form textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.review-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

.review-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.review-form-charcount {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.review-form-actions {
  display: flex;
  gap: 10px;
}
.review-form-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Delete button on cards */
.review-delete {
  margin-left: auto;
  background: rgba(255,68,102,0.08);
  border: 1px solid rgba(255,68,102,0.25);
  color: #ff6680;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.review-delete:hover {
  background: rgba(255,68,102,0.18);
  border-color: rgba(255,68,102,0.6);
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-info { flex: 1; min-width: 0; }

/* Empty state */
.reviews-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
  font-style: italic;
  border: 1px dashed var(--bg-border);
  border-radius: 12px;
}

/* Demo Toggle */
.reviews-demo {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
}
.reviews-demo details {
  display: inline-block;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: left;
  max-width: 100%;
}
.reviews-demo summary {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
  list-style: none;
  user-select: none;
}
.reviews-demo summary::-webkit-details-marker { display: none; }
.reviews-demo summary::before {
  content: '⚙ ';
  margin-right: 6px;
}
.reviews-demo-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.reviews-demo-buttons button {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-body);
}
.reviews-demo-buttons button:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.45);
}
.reviews-demo-note {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .reviews-summary { padding: 18px 20px; gap: 14px; flex-direction: column; text-align: center; }
  .reviews-meta { text-align: center; }
  .review-form-row { flex-direction: column; align-items: stretch; }
  .review-form-actions { justify-content: stretch; }
  .review-form-actions .btn { flex: 1; }
}

/* ============================================ */
/* ====== LEGAL PAGES (Impressum, AGB, etc.) == */
/* ============================================ */
.legal-main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 56px 24px 80px;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
}
.legal-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-border);
}
.legal-header .section-label {
  margin-bottom: 14px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
}
.legal-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.legal-disclaimer {
  background: rgba(255,200,40,0.06);
  border: 1px solid rgba(255,200,40,0.25);
  border-left: 4px solid #ffc828;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-disclaimer strong { color: #ffc828; }

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 32px;
}
.legal-toc-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
}
.legal-toc li { padding: 3px 0; font-size: 0.9rem; }
.legal-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-toc a:hover { color: var(--accent); }

.legal-content {
  color: var(--text-primary, #ddd);
  line-height: 1.7;
  font-size: 0.97rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  scroll-margin-top: 100px;
  color: #fff;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #fff;
}
.legal-content p {
  margin: 0 0 14px;
  color: var(--text-secondary);
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}
.legal-content li { padding: 4px 0; line-height: 1.6; }
.legal-content strong { color: #fff; font-weight: 600; }
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content code,
.legal-placeholder {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  padding: 1px 7px;
  border-radius: 4px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.85em;
}
.legal-content blockquote {
  margin: 18px 0;
  padding: 14px 20px;
  background: rgba(255,255,255,0.025);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.93rem;
}
.legal-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .legal-title { font-size: 1.6rem; }
  .legal-content h2 { font-size: 1.2rem; }
  .legal-main { padding: 36px 18px 60px; }
}

/* ============================================ */
/* ====== PARTNERS PUBLIC PAGE ================ */
/* ============================================ */
.partner-container { max-width: 920px; }

.dev-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
  box-shadow: 0 30px 80px rgba(0,212,255,0.06);
}
.dev-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 40px rgba(0,212,255,0.2);
  background: var(--bg-card);
}
.dev-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dev-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.dev-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.15;
  color: #fff;
}
.dev-role {
  color: var(--text-secondary);
  margin: 0 0 14px;
  font-size: 0.95rem;
}
.dev-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
}
.dev-socials {
  display: flex;
  gap: 14px;
}
.dev-socials a {
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(0,212,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.dev-socials a:hover {
  background: rgba(0,212,255,0.08);
}

.partners-section {
  margin-bottom: 48px;
}
.partners-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.partners-sub {
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.partner-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.1);
}
.partner-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partner-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.partner-subs {
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.partner-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 6px;
}
.partner-bio {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.partner-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 8px;
  transition: background 0.2s ease;
}
.partner-link:hover {
  background: rgba(0,212,255,0.08);
}

.partners-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
  font-style: italic;
  border: 1px dashed var(--bg-border);
  border-radius: 12px;
}

/* Partner CTA */
.partner-cta {
  background: linear-gradient(160deg, rgba(0,212,255,0.06), rgba(0,255,136,0.03));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.partner-cta-inner { max-width: 600px; margin: 0 auto; }
.partner-cta h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.partner-cta p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 16px;
}
.partner-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  text-align: left;
}
.partner-cta-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.partner-cta-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff88;
  font-weight: 700;
}
.partner-cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.partner-cta-login {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.partner-cta-login a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================ */
/* ====== PARTNER LOGIN / DASHBOARD =========== */
/* ============================================ */
.partner-badge-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,200,40,0.08);
  color: #ffc828;
  border: 1px solid rgba(255,200,40,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* Reflink Box */
.reflink-box {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.reflink-input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  color: var(--accent);
  padding: 12px 14px;
  border-radius: 9px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.92rem;
}
.reflink-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.acct-stat--highlight {
  background: linear-gradient(160deg, rgba(0,212,255,0.06), var(--bg-card));
  border-color: rgba(0,212,255,0.3);
}

/* Admin */
.admin-pill {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  color: #001a1a;
  border: none;
}
.admin-partners-table .account-table-row,
.admin-table-head {
  grid-template-columns: 1.6fr 1fr 70px 70px 90px 1.2fr 90px;
}
.admin-pending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-pending-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-pending-card a {
  color: var(--accent);
  text-decoration: none;
}
.admin-pending-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 768px) {
  .dev-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .dev-photo {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }
  .dev-socials { justify-content: center; }
  .partner-cta-list { grid-template-columns: 1fr; }
  .admin-partners-table .account-table-row,
  .admin-table-head {
    grid-template-columns: 1fr 1fr;
  }
  .admin-table-head { display: none; }
  .admin-pending-card { flex-direction: column; align-items: stretch; }
}

/* ============================================ */
/* ====== GOOGLE SIGN-IN ====================== */
/* ============================================ */
.google-signin-container {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.google-signin-container > div { max-width: 100% !important; }
.auth-google-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  background: rgba(255,200,40,0.06);
  border: 1px solid rgba(255,200,40,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 6px 0 0;
  line-height: 1.55;
}

/* ============================================ */
/* ====== ADMIN CUSTOMERS TABLE =============== */
/* ============================================ */
.admin-customers-table .account-table-row,
.admin-customers-table .admin-table-head {
  grid-template-columns: 1.6fr 1.4fr 0.9fr 1fr 1.4fr 0.8fr;
}
@media (max-width: 768px) {
  .admin-customers-table .account-table-row,
  .admin-customers-table .admin-table-head {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================ */
/* ====== ADMIN DEMO BANNER, STORAGE, TOAST === */
/* ============================================ */
.admin-demo-banner {
  background: rgba(255,68,102,0.06);
  border: 1px solid rgba(255,68,102,0.3);
  border-left: 4px solid #ff4466;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.admin-demo-banner strong { color: #ff6680; }
.admin-demo-banner code {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.admin-storage-info {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
}
.admin-storage-warn {
  background: rgba(255,200,40,0.04);
  border: 1px solid rgba(255,200,40,0.25);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.admin-storage-warn strong { color: #ffc828; }
.admin-storage-warn p { margin: 8px 0; }
.admin-storage-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.admin-storage-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.admin-storage-keys {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.admin-storage-keys summary {
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  padding: 4px 0;
}
.admin-storage-keys summary::-webkit-details-marker { display: none; }
.admin-storage-keys summary::before { content: '▸ '; color: var(--accent); }
.admin-storage-keys[open] summary::before { content: '▾ '; }
.admin-storage-keys ul { margin: 8px 0 4px; padding-left: 20px; }
.admin-storage-keys li { padding: 4px 0; font-size: 0.88rem; }

.admin-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.4);
  color: #00ff88;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,255,136,0.2);
  animation: toast-in 0.3s ease;
  max-width: 90vw;
}
.admin-toast strong { color: #fff; }
.admin-toast code {
  background: rgba(0,255,136,0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #fff;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
