/* ============================================
   ZENTROPATH — Global Stylesheet
   Funded Trading Platform
   ============================================ */

/* --- CSS Custom Properties (Brand Guardian) --- */
:root {
  --zp-primary: #0a0f1e;
  --zp-secondary: #0d1529;
  --zp-accent: #00d4aa;
  --zp-accent-hover: #00f0c0;
  --zp-accent-glow: rgba(0, 212, 170, 0.25);
  --zp-gold: #d4a017;
  --zp-gold-light: #f0c040;
  --zp-text: #e8eaf0;
  --zp-text-muted: #8a92a6;
  --zp-text-dim: #5a6378;
  --zp-surface: #111827;
  --zp-surface-light: #1a2236;
  --zp-border: rgba(255, 255, 255, 0.06);
  --zp-border-accent: rgba(0, 212, 170, 0.2);
  --zp-gradient-hero: linear-gradient(165deg, #0a0f1e 0%, #0d1a2e 40%, #0a1628 100%);
  --zp-gradient-section: linear-gradient(180deg, #0d1529 0%, #0a0f1e 100%);
  --zp-gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00a88a 100%);
  --zp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --zp-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --zp-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --zp-shadow-glow: 0 0 30px rgba(0, 212, 170, 0.15);
  --zp-radius-sm: 6px;
  --zp-radius-md: 10px;
  --zp-radius-lg: 16px;
  --zp-radius-xl: 24px;
  --zp-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --zp-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --zp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --zp-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--zp-font-main);
  background: var(--zp-primary);
  color: var(--zp-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--zp-accent);
  text-decoration: none;
  transition: color var(--zp-transition);
}

a:hover {
  color: var(--zp-accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--zp-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:focus-visible {
  outline: 2px solid var(--zp-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--zp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons (UI Designer + Growth Hacker) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--zp-radius-md);
  transition: all var(--zp-transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--zp-gradient-accent);
  color: #0a0f1e;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 170, 0.4);
  color: #0a0f1e;
}

.btn-secondary {
  background: transparent;
  color: var(--zp-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--zp-accent);
  color: var(--zp-accent);
  background: rgba(0, 212, 170, 0.05);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--zp-border);
  transition: background var(--zp-transition);
}

.site-header.scrolled {
  background: rgba(10, 15, 30, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zp-text);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--zp-text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--zp-gradient-accent);
  border-radius: var(--zp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--zp-primary);
  font-weight: 800;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  color: var(--zp-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--zp-transition);
}

.nav-main a:hover {
  color: var(--zp-text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--zp-text);
  border-radius: 2px;
  transition: all var(--zp-transition);
}

/* --- Hero Section (Frontend Developer + Whimsy Injector) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--zp-gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--zp-primary), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid var(--zp-border-accent);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--zp-accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zp-accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .text-accent {
  background: var(--zp-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--zp-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--zp-text);
}

.hero-stat-value .text-accent {
  color: var(--zp-accent);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--zp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-xl);
  padding: 32px;
  box-shadow: var(--zp-shadow-lg), var(--zp-shadow-glow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-title {
  font-size: 0.85rem;
  color: var(--zp-text-muted);
  font-weight: 500;
}

.hero-card-badge {
  padding: 4px 12px;
  background: rgba(0, 212, 170, 0.1);
  color: var(--zp-accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-card-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--zp-text);
  margin-bottom: 8px;
}

.hero-card-label {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  margin-bottom: 24px;
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card-metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--zp-radius-md);
  border: 1px solid var(--zp-border);
}

.hero-card-metric-label {
  font-size: 0.75rem;
  color: var(--zp-text-dim);
  margin-bottom: 4px;
}

.hero-card-metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zp-accent);
}

/* --- Conditions Strip --- */
.conditions-strip {
  position: relative;
  z-index: 2;
  background: var(--zp-surface);
  border-top: 1px solid var(--zp-border);
  border-bottom: 1px solid var(--zp-border);
  padding: 32px 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.condition-item {
  padding: 16px;
}

.condition-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zp-text);
  margin-bottom: 4px;
}

.condition-value .text-accent {
  color: var(--zp-accent);
}

.condition-label {
  font-size: 0.8rem;
  color: var(--zp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Section Shared Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--zp-gradient-section);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--zp-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--zp-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Challenge Programs Section --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 36px 28px;
  transition: all var(--zp-transition);
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  border-color: var(--zp-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--zp-shadow-glow);
}

.program-card.featured {
  border-color: var(--zp-accent);
  background: linear-gradient(165deg, var(--zp-surface) 0%, rgba(0, 212, 170, 0.03) 100%);
}

.program-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--zp-gradient-accent);
  color: var(--zp-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.program-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.program-desc {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  margin-bottom: 24px;
}

.program-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--zp-text);
  margin-bottom: 4px;
}

.program-price-label {
  font-size: 0.8rem;
  color: var(--zp-text-dim);
  margin-bottom: 24px;
}

.program-features {
  margin-bottom: 28px;
}

.program-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--zp-text-muted);
  border-bottom: 1px solid var(--zp-border);
}

.program-feature:last-child {
  border-bottom: none;
}

.program-feature .check {
  color: var(--zp-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.program-cta {
  width: 100%;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.08);
  border: 2px solid var(--zp-border-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--zp-accent);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  line-height: 1.6;
}

/* --- Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 32px 24px;
  transition: all var(--zp-transition);
}

.advantage-card:hover {
  border-color: var(--zp-border-accent);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--zp-radius-md);
  background: rgba(0, 212, 170, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.advantage-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.advantage-desc {
  font-size: 0.88rem;
  color: var(--zp-text-muted);
  line-height: 1.6;
}

/* --- Payouts / Trust Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.trust-content p {
  font-size: 1rem;
  color: var(--zp-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-md);
}

.trust-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-feature-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.trust-feature-text span {
  font-size: 0.82rem;
  color: var(--zp-text-dim);
}

.trust-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-stat-card {
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 28px;
  text-align: center;
}

.trust-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--zp-accent);
}

.trust-stat-label {
  font-size: 0.82rem;
  color: var(--zp-text-dim);
  margin-top: 4px;
}

/* --- FAQ (Accordion) --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open {
  border-color: var(--zp-border-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zp-text);
  text-align: left;
  transition: color var(--zp-transition);
}

.faq-question:hover {
  color: var(--zp-accent);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--zp-text-dim);
  transition: transform var(--zp-transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--zp-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--zp-text-muted);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--zp-gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--zp-text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --- Footer (Legal Compliance Checker) --- */
.site-footer {
  background: var(--zp-secondary);
  border-top: 1px solid var(--zp-border);
  padding-top: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--zp-border);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--zp-text);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  transition: color var(--zp-transition);
}

.footer-col a:hover {
  color: var(--zp-accent);
}

/* --- Footer Risk Disclosures --- */
.footer-disclosures {
  padding: 32px 0;
  border-bottom: 1px solid var(--zp-border);
}

.disclosure-block {
  margin-bottom: 20px;
}

.disclosure-block:last-child {
  margin-bottom: 0;
}

.disclosure-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--zp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.disclosure-text {
  font-size: 0.78rem;
  color: var(--zp-text-dim);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--zp-text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--zp-text-dim);
}

/* --- Cookie Consent Banner (Legal Compliance) --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--zp-surface);
  border-top: 1px solid var(--zp-border);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--zp-text-muted);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: var(--zp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Legal Pages (Privacy Policy, User Agreement) --- */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--zp-text-dim);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--zp-text);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--zp-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.92rem;
  color: var(--zp-text-muted);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 4px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Responsive (UX Architect) --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-main {
    display: none;
  }

  .header-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-card {
    max-width: 100%;
  }

  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-card-amount {
    font-size: 2.2rem;
  }

  .conditions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--zp-transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.2rem;
  color: var(--zp-text);
  font-weight: 500;
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* --- Hero Form --- */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--zp-text-muted);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-sm);
  color: var(--zp-text);
  font-family: var(--zp-font-main);
  font-size: 0.92rem;
  transition: border-color var(--zp-transition), box-shadow var(--zp-transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--zp-text-dim);
}

.form-input:focus {
  border-color: var(--zp-accent);
  box-shadow: 0 0 0 3px var(--zp-accent-glow);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238a92a6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--zp-surface);
  color: var(--zp-text);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--zp-text-dim);
  text-align: center;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--zp-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--zp-accent);
}

.form-success p {
  font-size: 0.88rem;
  color: var(--zp-text-muted);
  line-height: 1.6;
}

/* --- Animations (Whimsy Injector) --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== AGGRESSIVE / SALESY ADDITIONS ========== */

/* --- Urgency Top Bar --- */
.urgency-bar {
  background: linear-gradient(90deg, #b91c1c, #dc2626, #b91c1c);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 72px;
  position: relative;
  z-index: 10;
  animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.urgency-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-spots {
  color: #fbbf24;
  font-weight: 800;
  font-size: 1.1rem;
}

.urgency-countdown {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 10px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Pulsing CTA Button --- */
.btn-pulse {
  animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(0, 212, 170, 0.6), 0 0 60px rgba(0, 212, 170, 0.2); }
}

/* --- Hero adjustments for urgency --- */
.hero {
  padding-top: 0;
}

.hero-stats {
  margin-bottom: 16px;
}

/* --- Social Proof / Live Viewers --- */
.social-proof-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  color: #fca5a5;
  margin-top: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: live-blink 1s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* --- Hero Form Heading --- */
.form-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--zp-text);
  margin-bottom: 4px;
}

.form-subheading {
  font-size: 0.82rem;
  color: var(--zp-text-dim);
  margin-bottom: 20px;
}

/* --- Form Trust Badges --- */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--zp-text-dim);
  margin-top: 4px;
  margin-bottom: 8px;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* --- Steps CTA --- */
.steps-cta {
  text-align: center;
  margin-top: 48px;
}

.steps-cta-note {
  font-size: 0.82rem;
  color: var(--zp-text-dim);
  margin-top: 12px;
}

/* --- 3-column steps grid --- */
.steps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Results Journal --- */
.results-journal {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journal-entry {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-md);
  padding: 24px;
  transition: border-color var(--zp-transition);
}

.journal-entry:hover {
  border-color: var(--zp-border-accent);
}

.journal-entry-highlight {
  border-color: var(--zp-accent);
  background: linear-gradient(165deg, var(--zp-surface) 0%, rgba(0, 212, 170, 0.04) 100%);
}

.journal-day {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--zp-accent);
  padding-top: 4px;
}

.journal-content p {
  font-size: 0.88rem;
  color: var(--zp-text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.journal-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.journal-balance {
  font-size: 0.9rem;
  color: var(--zp-text);
}

.journal-profit {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
}

.profit-up {
  background: rgba(0, 212, 170, 0.1);
  color: var(--zp-accent);
}

.journal-payout {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: rgba(0, 212, 170, 0.06);
  border-radius: var(--zp-radius-sm);
  margin-top: 8px;
}

.payout-badge {
  background: var(--zp-gradient-accent);
  color: var(--zp-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.payout-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--zp-accent);
}

.payout-method {
  font-size: 0.78rem;
  color: var(--zp-text-dim);
}

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--zp-surface);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius-lg);
  padding: 28px;
  transition: all var(--zp-transition);
}

.testimonial-card:hover {
  border-color: var(--zp-border-accent);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--zp-gradient-accent);
  color: var(--zp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-header strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-location {
  display: block;
  font-size: 0.75rem;
  color: var(--zp-text-dim);
}

.testimonial-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--zp-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-gain {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zp-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-gain span {
  font-weight: 400;
  color: var(--zp-text-dim);
  font-size: 0.72rem;
}

/* --- CTA Urgency --- */
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: urgency-pulse 2s ease-in-out infinite;
}

.urgency-icon {
  font-size: 1rem;
}

.cta-spots {
  font-size: 1.1rem;
  color: #fbbf24;
  margin-bottom: 24px;
}

.cta-spots strong {
  font-size: 1.3rem;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--zp-text-dim);
}

/* --- Sticky Bottom Bar --- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--zp-border-accent);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0, 212, 170, 0.1);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.sticky-bar-spots {
  color: #fbbf24;
  font-weight: 600;
}

.sticky-bar-countdown {
  font-family: 'Courier New', monospace;
  color: var(--zp-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Responsive aggressive additions --- */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .urgency-bar {
    font-size: 0.78rem;
    padding: 8px 0;
  }

  .steps-grid-3 {
    grid-template-columns: 1fr;
  }

  .journal-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journal-day {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .journal-payout {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sticky-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .sticky-bar-text {
    flex-direction: column;
    gap: 4px;
  }

  .cta-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .social-proof-live {
    font-size: 0.75rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
