/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* Variables - Dark Mode */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent-color: #06b6d4;
  --accent-light: #22d3ee;

  /* Dark theme colors */
  --bg-dark: #0f1117;
  --bg-card: #1a1d29;
  --bg-elevated: #ffffff;
  --bg-hover: #f8f9fa;

  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-color: #e2e8f0;
  --border-accent: #cbd5e1;

  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #1e293b;
  background-color: #0f1117;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

h2 {
  font-size: 2.75rem;
  color: #e2e8f0;
}

h3 {
  font-size: 1.625rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.nav-cta:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
  .nav-cta {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 24px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float 20s ease-in-out infinite;
  backdrop-filter: blur(2px);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.circle-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -80px;
  animation-delay: -7s;
}

.circle-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 10%;
  animation-delay: -14s;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s ease-out;
}

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

.logo-icon {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.logo {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.arrow {
  display: inline-block;
  margin-right: 0.5rem;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 20px 48px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button.primary {
  background-color: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cta-button.primary:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-button.large {
  padding: 22px 54px;
  font-size: 1.25rem;
  border-radius: var(--radius-xl);
}

/* Section */
.section {
  padding: 80px 24px;
  position: relative;
}

.section:nth-child(even) {
  background: #1a1d29;
  position: relative;
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(139, 92, 246, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(45deg);
  pointer-events: none;
}

.section:nth-child(odd) {
  position: relative;
}

.section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(99, 102, 241, 0.08);
  transform: rotate(30deg);
  pointer-events: none;
}

/* Pattern Background */
.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--text-dark) 35px, var(--text-dark) 36px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--text-dark) 35px, var(--text-dark) 36px);
}

.pattern-bg-light {
  opacity: 0.02;
  background-image:
    radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--primary-color) 2px, transparent 2px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-header .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* Icon Wrappers */
.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.section-header:hover .icon-wrapper svg {
  transform: scale(1.05);
}

/* Content Boxes */
.content-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.06) 100%);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(139, 92, 246, 0.25);
  transition: all 0.3s ease;
}

.content-box:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.highlight-box {
  border-left: 4px solid var(--primary-color);
  background: linear-gradient(to right, rgba(139, 92, 246, 0.12) 0%, rgba(167, 139, 250, 0.08) 100%);
}

.intro-text {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

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

.big-text {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

.highlight-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-top: 2rem;
}

/* Lists */
.problem-list {
  margin: 2rem 0;
}

.problem-list li {
  padding: 12px 0;
  font-size: 1.25rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
}

.bullet {
  margin-right: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Reality Section */
.reality-section {
  background: #1a1d29;
}

.reality-section .content-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.06) 100%);
  padding: 56px 48px;
  max-width: 1000px;
}

.reality-section .big-text {
  color: #e2e8f0;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.6;
}

.reality-section .big-text strong {
  color: #c4b5fd;
  font-weight: 800;
}

/* Consequence Box */
.consequence-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
  padding: 36px;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  border: 2px solid rgba(245, 158, 11, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.consequence-box:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.consequence-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #f59e0b, #ef4444);
}

.consequence-box .intro-text {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1.2rem;
}

.consequence-box .problem-list li {
  color: #cbd5e1;
  font-size: 1.125rem;
}

.reality-section .highlight-text {
  color: #c4b5fd;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 2.5rem;
  font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 3rem 0;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.12) 0%, rgba(167, 139, 250, 0.08) 100%);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(139, 92, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.4);
}

.benefit-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: #e2e8f0;
}

/* Package Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: linear-gradient(135deg, rgba(221, 214, 254, 0.12) 0%, rgba(196, 181, 253, 0.08) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid rgba(139, 92, 246, 0.25);
}

.package-card:nth-child(1) {
  border-top: 4px solid #6366f1;
}

.package-card:nth-child(2) {
  border-top: 4px solid #10b981;
}

.package-card:nth-child(3) {
  border-top: 4px solid #f59e0b;
}

.package-card:nth-child(4) {
  border-top: 4px solid #8b5cf6;
}

.package-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.4);
}

.package-number {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.package-card h3 {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.package-card p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.package-card ul {
  margin-left: 1.5rem;
}

.package-card ul li {
  padding: 8px 0;
  color: #cbd5e1;
  position: relative;
}

.package-card ul li:before {
  content: "✓";
  position: absolute;
  left: -1.5rem;
  color: var(--success-color);
  font-weight: bold;
}

/* Target Section */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .target-grid {
    grid-template-columns: 1fr;
  }
}

.target-box {
  background: var(--bg-elevated);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.target-box:hover {
  transform: translateY(-4px);
}

.yes-box {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.15) 0%, rgba(253, 224, 71, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-top: 4px solid var(--success-color);
}

.yes-box:hover {
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
}

.no-box {
  background: linear-gradient(135deg, rgba(252, 165, 165, 0.12) 0%, rgba(254, 215, 170, 0.1) 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-top: 4px solid var(--danger-color);
}

.no-box:hover {
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.target-box h3 {
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.target-box ul li {
  padding: 12px 0;
  font-size: 1.25rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
}

.target-box .bullet {
  margin-right: 12px;
  margin-top: 4px;
}

/* Pricing Section */
.pricing-box {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
  padding: 56px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 3px solid rgba(139, 92, 246, 0.25);
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.4);
}


.price {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.price-label {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.price-context {
  background: rgba(26, 29, 41, 0.5);
  padding: 32px;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  text-align: left;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.price-context ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.price-context li {
  padding: 8px 0;
  color: #cbd5e1;
}

.price-context p {
  color: #cbd5e1;
}

/* About Section */
.about-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient-mesh-premium);
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.8;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid rgba(139, 92, 246, 0.25);
}

.about-box:hover {
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-box p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.about-image {
  max-width: 650px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* Problem Image */
.problem-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.problem-image:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-secondary);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-section .section-header h2 {
  color: white;
}

.cta-section .section-header {
  position: relative;
  z-index: 1;
}

.cta-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}

.cta-box .intro-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-box .cta-button {
  background: white;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.testimonial-header h4 {
  margin: 0;
  color: #e2e8f0;
  font-size: 1.25rem;
}

.testimonial-role {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.testimonial-content p {
  color: #cbd5e1;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.result-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Guarantee Section */
.guarantee-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(16, 185, 129, 0.3);
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.2);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
}

.badge-icon {
  font-size: 2rem;
}

.guarantee-features {
  margin: 2rem 0;
  text-align: left;
}

.guarantee-item {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
}

.guarantee-check {
  color: #10b981;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.guarantee-item p {
  color: #cbd5e1;
  margin: 0;
}

/* Pricing Updates */
.pricing-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.urgency-badge, .offer-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}

.urgency-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.offer-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1rem;
}

.old-price {
  font-size: 2rem;
  color: #64748b;
  text-decoration: line-through;
}

.price-validity {
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.pricing-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-subtext {
  margin-top: 1rem;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Comparison Section */
.comparison-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.comparison-column {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 2px solid;
}

.comparison-bad {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.05) 100%);
  border-color: rgba(239, 68, 68, 0.3);
}

.comparison-good {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.4);
}

.comparison-column h3 {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.comparison-column ul {
  list-style: none;
  margin-bottom: 2rem;
}

.comparison-column li {
  padding: 12px 0;
  color: #cbd5e1;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.comparison-column li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.comparison-bad li:before {
  color: #ef4444;
}

.comparison-good li:before {
  color: #10b981;
}

.comparison-result {
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.1rem;
}

.comparison-result.bad {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-result.good {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.comparison-result p {
  margin: 0.5rem 0;
  color: #e2e8f0;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.06) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.faq-item h3 {
  color: #c4b5fd;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

/* Story Box */
.story-box {
  background: rgba(139, 92, 246, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
  text-align: left;
}

.story-box h4 {
  color: #c4b5fd;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.story-box p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: bottom 0.4s ease;
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.sticky-cta .cta-button {
  background: white;
  color: var(--primary-color);
  padding: 12px 32px;
  white-space: nowrap;
}

/* Lead Magnet Modal */
.lead-magnet-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-magnet-content {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
  backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  position: relative;
  border: 2px solid rgba(139, 92, 246, 0.3);
  text-align: center;
}

.lead-magnet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lead-magnet-close:hover {
  color: #e2e8f0;
}

.lead-magnet-content h3 {
  font-size: 2rem;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.lead-magnet-content h4 {
  font-size: 1.5rem;
  color: #c4b5fd;
  margin-bottom: 1rem;
}

.lead-magnet-content > p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-magnet-form input {
  padding: 16px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
  background: rgba(26, 29, 41, 0.5);
  color: #e2e8f0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.6);
}

.lead-magnet-privacy {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Footer Updates */
.footer-ps {
  background: rgba(139, 92, 246, 0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-ps p {
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-ps a {
  color: #c4b5fd;
  font-weight: 600;
  text-decoration: none;
}

.footer-ps a:hover {
  color: #a78bfa;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: #a78bfa;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #c4b5fd;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 50px 15px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .content-box,
  .about-box,
  .pricing-box {
    padding: 25px 20px;
  }

  .benefits-grid,
  .package-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .price {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .cta-button.large {
    padding: 16px 35px;
    font-size: 1.125rem;
  }

  .big-text {
    font-size: 1.25rem;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .package-number {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 968px) {
  .comparison-table,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta .cta-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .problem-section .content-box {
    flex-direction: column-reverse !important;
  }

  .problem-section .problem-image {
    flex: 1 !important;
    max-width: 100% !important;
  }

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

  .lead-magnet-content {
    padding: 32px 24px;
  }

  .footer-ps {
    padding: 20px;
  }

  .footer-ps p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 15px;
  }

  .target-box {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

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

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

