:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #141937;
  --bg-gradient: linear-gradient(135deg, #0a0e27 0%, #141937 50%, #1e2451 100%);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #8896a8;
  --accent-primary: #4f7cac;
  --accent-secondary: #6b9bd1;
  --accent-gradient: linear-gradient(135deg, #4f7cac 0%, #6b9bd1 100%);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Urgency Bar */
.urgency-bar {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.urgency-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-icon {
  animation: pulse 1s infinite;
}

.countdown-urgent {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-flex;
  gap: 4px;
}

.countdown-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.countdown-value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.countdown-label {
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 2px;
}

.countdown-separator {
  font-size: 18px;
  font-weight: 800;
  align-self: flex-start;
  padding-top: 2px;
}

/* Hero Section */
.hero {
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center top, rgba(79, 124, 172, 0.15) 0%, transparent 60%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(79, 124, 172, 0.2);
  border: 1px solid rgba(79, 124, 172, 0.4);
  color: #a8d0f0;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: slideDown 0.6s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-subtitle strong {
  color: #22c55e;
  font-weight: 700;
}

.highlight {
  color: var(--text-primary);
  font-weight: 500;
}

/* Value Props */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 32px 0;
  animation: fadeIn 1s ease-out 0.4s both;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Price Section */
.price-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
  animation: fadeIn 1s ease-out 0.6s both;
}

.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 20px 32px;
  border-radius: 16px;
  text-align: center;
}

.price-box.featured {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

.price-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.price-old {
  font-size: 32px;
  font-weight: 700;
  text-decoration: line-through;
  opacity: 0.5;
}

.price-new {
  font-size: 48px;
  font-weight: 800;
  color: #22c55e;
}

.price-save {
  background: #22c55e;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.price-arrow {
  font-size: 32px;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 40px 0;
  animation: fadeIn 1s ease-out 0.8s both;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

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

.btn-text {
  font-size: 20px;
}

.btn-subtext {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-secondary);
  border: 2px solid var(--accent-secondary);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--accent-secondary);
  color: white;
  transform: translateY(-2px);
}

.btn-primary.large {
  padding: 24px 48px;
  font-size: 20px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  animation: fadeIn 1s ease-out 1s both;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.badge-icon {
  font-size: 20px;
}

/* Social Proof Bar */
.social-proof-bar {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 20px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat {
  animation: fadeIn 1s ease-out;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem Solution Section */
.problem-solution {
  padding: 80px 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.problem-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.solution-bridge {
  margin-top: 80px;
}

.solution-title {
  font-size: clamp(28px, 4vw, 36px);
  text-align: center;
  margin-bottom: 48px;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.solution-item {
  display: flex;
  gap: 20px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 24px;
  border-radius: 12px;
}

.checkmark {
  font-size: 24px;
  color: #22c55e;
  flex-shrink: 0;
}

.solution-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.solution-item p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* What's Included Section */
.whats-included {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card.main {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .product-card.main {
    grid-column: span 1;
  }
}

.product-label {
  background: var(--accent-gradient);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-value {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
}

.product-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Total Value */
.total-value {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}

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

.value-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 18px;
}

.value-line.featured {
  font-size: 24px;
  font-weight: 700;
  color: #22c55e;
  border-top: 2px solid rgba(34, 197, 94, 0.2);
  margin-top: 12px;
  padding-top: 20px;
}

.value-amount {
  font-weight: 700;
}

.value-savings {
  background: #22c55e;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

/* Author Story Section */
.author-story {
  padding: 80px 20px;
}

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

.story-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: 20px;
}

.story-intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

.story-results {
  background: rgba(79, 124, 172, 0.1);
  border-left: 4px solid var(--accent-primary);
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.story-results h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--accent-secondary);
}

.story-results ul {
  list-style: none;
}

.story-results li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
}

.story-results li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
}

.story-why {
  font-size: 17px;
  line-height: 1.8;
  margin: 32px 0;
  color: var(--text-secondary);
}

.story-quote {
  background: linear-gradient(135deg, rgba(79, 124, 172, 0.1) 0%, rgba(107, 155, 209, 0.1) 100%);
  border-left: 4px solid var(--accent-secondary);
  padding: 24px;
  margin: 32px 0;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 8px;
}

.story-mission {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 14px;
}

/* Video Section */
.video-section {
  padding: 80px 20px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Guarantee Section */
.guarantee {
  padding: 80px 20px;
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  padding: 48px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.guarantee-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
}

.guarantee-box h2 {
  font-size: 32px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.guarantee-box p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.guarantee-note {
  font-size: 18px;
  color: var(--text-primary);
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-secondary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary:after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 20px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
}

.decision-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.path-option {
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.path-option.no {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.path-option.yes {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.3);
  transform: scale(1.05);
}

.path-option h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.path-option p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.path-result {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.path-result.success {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.urgency-notice {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.2);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.urgency-notice h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fca5a5;
}

.urgency-notice p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.countdown-large {
  display: inline-flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 800;
}

.countdown-large .countdown-value {
  font-size: 32px;
}

.countdown-large .countdown-label {
  font-size: 11px;
}

.cta-section.final {
  text-align: center;
}

.payment-methods {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.payment-icons {
  display: inline-flex;
  gap: 12px;
  font-size: 24px;
  margin-top: 8px;
}

.final-message {
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
}

footer p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

/* Loading State */
.loading {
  display: inline-block;
  animation: pulse 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 80px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .price-section {
    flex-direction: column;
  }
  
  .price-box.featured {
    transform: scale(1);
  }
  
  .price-arrow {
    transform: rotate(90deg);
  }
  
  .value-props {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-badges {
    flex-wrap: wrap;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .story-text {
    padding: 32px 24px;
  }
  
  .guarantee-box {
    padding: 32px 24px;
  }
  
  .decision-box {
    grid-template-columns: 1fr;
  }
  
  .path-option.yes {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .urgency-bar {
    font-size: 12px;
  }
  
  .countdown-value {
    font-size: 16px;
  }
  
  .countdown-label {
    font-size: 8px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .btn-primary {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .btn-text {
    font-size: 18px;
  }
  
  .btn-subtext {
    font-size: 12px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* Expired State */
.expired {
  color: #fca5a5;
  font-weight: 800;
  font-size: 18px;
  animation: pulse 1s infinite;
}