:root {
  --bg-primary: #010101;
  --bg-surface: #111111;
  --bg-surface-alt: #1a1a1a;
  --accent-red: #fe2c55;
  --accent-cyan: #25f4ee;
  --text-primary: #ffffff;
  --text-muted: #888888;
  --border-color: rgba(255,255,255,0.07);
  --gradient-btn: linear-gradient(135deg, #fe2c55 0%, #ff6b81 100%);
  --radius: 14px;
  --radius-lg: 16px;
  --radius-btn: 12px;
  --shadow-btn: 0 6px 32px rgba(254,44,85,0.45);
  --shadow-btn-hover: 0 8px 40px rgba(254,44,85,0.55);
  --transition: 0.25s ease;
  --header-height: 62px;
}

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

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

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.3;
}

h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes shimmer {
  to { transform: translateX(100%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-red);
}

.desk-nav {
  display: flex;
  align-items: center;
}

.desk-nav .btn-nav {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
}

.desk-nav .btn-nav:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,244,238,0.35);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-drawer.open {
  max-height: 200px;
}

.mobile-drawer a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition), color var(--transition);
}

.mobile-drawer a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--accent-cyan);
}

.mobile-drawer .btn-mobile {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 800;
  border-bottom: none;
  border-radius: 8px;
  margin: 12px 16px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 48px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, rgba(37,244,238,0.08) 0%, rgba(254,44,85,0.06) 50%, transparent 70%);
  overflow: hidden;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-red);
}

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 40px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.btn-primary:hover::after {
  animation: shimmer 0.8s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-primary.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 10px;
}

.btn-primary.loading .spinner {
  display: inline-block;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  min-height: 52px;
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(37,244,238,0.05);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
}

/* ============ STATS BAR ============ */
.stats-bar {
  padding: 0 20px 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-surface);
  padding: 32px 16px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.stat-item:hover {
  background: var(--bg-surface-alt);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

/* ============ SECTIONS ============ */
.section {
  padding: 48px 0;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(254, 44, 85, 0.08);
  border: 1px solid rgba(254, 44, 85, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-heading {
  margin-bottom: 10px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px 0 0 auto;
  border-radius: 3px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 15px;
}

.text-center {
  text-align: center;
}

.text-center .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform var(--transition), border-color var(--transition);
}

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

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,244,238,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.prose-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px auto 0;
  max-width: 840px;
  text-align: right;
  line-height: 1.8;
  color: var(--text-muted);
}

.content-image-wrapper {
  margin: 24px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  aspect-ratio: 1200 / 630;
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.content-image:hover {
  transform: scale(1.02);
}

.prose-card h2 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 900;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prose-card h3 {
  color: var(--accent-cyan);
  font-size: 19px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.prose-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.prose-card p:last-child {
  margin-bottom: 0;
}

.prose-card strong {
  color: var(--text-primary);
  font-weight: 700;
}

.prose-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.prose-card li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.prose-card li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--accent-red);
  font-weight: bold;
}

/* ============ SECURITY ALERT ============ */
.security-alert {
  padding: 0 20px 36px;
}

.alert-box {
  background: rgba(254,44,85,0.06);
  border: 1px solid rgba(254,44,85,0.2);
  border-right: 5px solid var(--accent-red);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.alert-box h3 {
  color: var(--accent-red);
  font-size: 18px;
  margin-bottom: 8px;
}

.alert-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.alert-box strong {
  color: var(--text-primary);
}

/* ============ HOW IT WORKS ============ */
.steps {
  margin-top: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--gradient-btn);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--accent-cyan);
  font-size: 16px;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ OFFER SECTION ============ */
.offer-section {
  padding: 80px 20px;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
}

.offer-card {
  background: #0f111a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-align: center;
}

.offer-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-red) 100%);
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
}

.offer-label {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.offer-number-wrapper {
  margin: 10px 0 16px;
}

.offer-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 12vw, 100px);
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  letter-spacing: -2px;
}

.offer-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
}

.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 28px;
}

.pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-premium-action {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: bounce-slow 2s infinite ease-in-out;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.btn-premium-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
  animation-play-state: paused;
}

.trust-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

.trust-micro-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 600px) {
  .feature-pills {
    grid-template-columns: 1fr;
  }
  .offer-card {
    padding: 30px 20px;
  }
}

/* ============ ALTERNATIVES ============ */
.alt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.alt-card .alt-icon {
  width: 50px;
  height: 50px;
  background: rgba(254,44,85,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.alt-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 720px;
  margin: 28px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--accent-cyan);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-a.open {
  max-height: 200px;
}

.faq-inline {
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.faq-inline h2 {
  margin-top: 0;
  border-bottom-color: var(--accent-cyan);
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-primary);
  padding: 24px 20px;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .alt-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offer-section {
    padding: 44px 16px;
  }
}

@media (max-width: 600px) {
  .desk-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-drawer {
    display: block;
  }
}

@media (max-width: 520px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .alt-card-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-bottom: 1px solid var(--border-color);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .feature-pills {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .offer-section {
    padding: 40px 14px;
  }
  .section {
    padding: 40px 0;
  }
}
