/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Global Styles */
:root {
  --primary-color: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary-color: #f59e0b;
  --secondary-light: #fbbf24;
  --text-color: #111827;
  --text-light: #4b5563;
  --background-color: #ffffff;
  --background-alt: #f9fafb;
  --success-color: #10b981;
  --success-light: #34d399;
  --chart-color: #06b6d4;
  --chart-color-2: #7c3aed;
  --chart-color-3: #ec4899;
  --chart-bg: rgba(6, 182, 212, 0.1);
  --danger-color: #ef4444;
  --border-color: #e5e7eb;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  --chart-gradient: linear-gradient(180deg, rgba(6, 182, 212, 0.4) 0%, rgba(6, 182, 212, 0) 100%);
  --glow: 0 0 20px rgba(99, 102, 241, 0.6);
  --backdrop-blur: blur(20px);
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  line-height: 1.2;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

/* Typography Styles */
h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h1 span, h2 span, h3 span {
  color: var(--primary-color);
  position: relative;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  position: relative;
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

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

.logo h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

/*.logo h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  border-radius: 4px;
}
*/
.logo span {
  color: var(--primary-color);
    font-size: 1rem;
  position: relative;
}

.logo span::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  top: -5px;
  right: -5px;
  box-shadow: 0 0 8px var(--secondary-light);
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 50px 50px;
  opacity: 0.05;
  animation: pulse 15s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.03; }
  50% { opacity: 0.07; }
  100% { opacity: 0.03; }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-content p span {
  color: var(--success-color);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 100%);
  padding: 2px 5px;
  border-radius: 4px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stats {
  display: flex;
  gap: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0;
}

.stat-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
}

/* Chart Styles */
.chart-container {
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 10px 25px rgba(99, 102, 241, 0.15);
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient);
  border-radius: 8px 8px 0 0;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: center;
}

.token-pair {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(90deg, var(--primary-color), var(--chart-color-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.profit {
  color: white;
  font-weight: 700;
  background: var(--success-color);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.chart {
  height: 280px;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--chart-bg);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.chart-line {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.4) 0%, rgba(6, 182, 212, 0.1) 100%);
  clip-path: polygon(0 85%, 10% 75%, 20% 80%, 30% 65%, 40% 70%, 50% 45%, 60% 35%, 70% 25%, 80% 15%, 90% 20%, 100% 0%, 100% 100%, 0% 100%);
  border-top: 3px solid var(--chart-color);
  animation: chartReveal 2s ease-in-out forwards;
}

@keyframes chartReveal {
  0% { clip-path: polygon(0 100%, 10% 100%, 20% 100%, 30% 100%, 40% 100%, 50% 100%, 60% 100%, 70% 100%, 80% 100%, 90% 100%, 100% 100%, 100% 100%, 0% 100%); }
  100% { clip-path: polygon(0 85%, 10% 75%, 20% 80%, 30% 65%, 40% 70%, 50% 45%, 60% 35%, 70% 25%, 80% 15%, 90% 20%, 100% 0%, 100% 100%, 0% 100%); }
}

.chart-profit-indicator {
  position: absolute;
  top: 10%;
  right: 5%;
  background: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Features Section */
.features {
  background: var(--background-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 10px 25px rgba(99, 102, 241, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  top: -50%;
  left: -50%;
  z-index: -1;
  transition: all 0.5s ease;
}

.feature-card:hover::after {
  transform: scale(1.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-icon {
  background: rgba(93, 69, 255, 0.1);
  position: relative;
}

.ai-icon::before {
  content: "AI";
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.security-icon {
  background: rgba(15, 186, 129, 0.1);
  position: relative;
}

.security-icon::before {
  content: "🔒";
  font-size: 2rem;
}

.strategy-icon {
  background: rgba(255, 154, 61, 0.1);
  position: relative;
}

.strategy-icon::before {
  content: "📈";
  font-size: 2rem;
}

.setup-icon {
  background: rgba(93, 224, 160, 0.1);
  position: relative;
}

.setup-icon::before {
  content: "⚙️";
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Results Section */
.results {
  background: var(--background-alt);
}

.results-container {
  max-width: 800px;
  margin: 0 auto;
}

.result-chart {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.chart-label {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.chart-comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comparison-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  border-radius: 8px;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.comparison-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

.bot-performance {
  background: rgba(93, 69, 255, 0.1);
}

.bot-performance::before {
  background: var(--primary-light);
  width: 90%;
}

.btc-performance {
  background: rgba(255, 154, 61, 0.1);
}

.btc-performance::before {
  background: var(--secondary-color);
  width: 50%;
}

.sp-performance {
  background: rgba(93, 224, 160, 0.1);
}

.sp-performance::before {
  background: var(--chart-color);
  width: 15%;
}

.bar-label, .bar-value {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.bar-value {
  color: var(--success-color);
  font-size: 1.25rem;
}

.chart-footnote {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Testimonial Section */
.testimonials {
  background: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  top: -400px;
  right: -200px;
  z-index: 0;
  filter: blur(50px);
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -300px;
  left: -200px;
  z-index: 0;
  filter: blur(50px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 10px 25px rgba(99, 102, 241, 0.15);
}

.testimonial-video {
  position: relative;
}

.video-placeholder {
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-25deg);
  top: -50px;
  left: -50px;
  filter: blur(5px);
  animation: shine 8s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(-25deg); }
  100% { transform: translateX(100%) rotate(-25deg); }
}

.play-button {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  z-index: -1;
  transform: scale(0.8);
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 22px solid var(--primary-color);
  margin-left: 6px;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.15);
}

.play-button:hover::after {
  border-left-color: var(--primary-dark);
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.video-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.testimonial-content {
  padding: 1.5rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1.25rem;
}

.testimonial-location {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.testimonial-results {
  display: flex;
  justify-content: flex-end;
}

.testimonial-results span {
  background: var(--success-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works {
  background: var(--background-alt);
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Pricing Section */
.pricing {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.pricing-card {
  background: var(--background-alt);
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(99, 102, 241, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
  color: white;
  border: none;
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(99, 102, 241, 0.25);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  margin-bottom: 2rem;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin: 1.5rem 0;
}

.currency, .period {
  font-size: 1.25rem;
  font-weight: 500;
  vertical-align: text-top;
}

.period {
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-features li::before {
  content: "✓";
  color: var(--success-color);
  margin-right: 0.75rem;
  font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--secondary-color);
}

.pricing-card.featured .btn-primary {
  background: white;
  color: var(--primary-color);
}

.pricing-card.featured .btn-secondary {
  color: white;
  border-color: white;
}

/* FAQ Section */
.faq {
  background: var(--background-alt);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
  filter: blur(50px);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.signup-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
}

.signup-form input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 0.75rem 0 0 0.75rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  color: var(--text-color);
}

.signup-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) inset;
}

.signup-form input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.signup-form .btn-primary {
  border-radius: 0 0.75rem 0.75rem 0;
  background: white;
  color: var(--primary-color);
  white-space: nowrap;
  padding: 1.25rem 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.signup-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.signup-form .btn-primary:hover {
  background: var(--background-color);
  color: var(--primary-dark);
  transform: translateY(0);
}

.signup-form .btn-primary:hover::before {
  transform: translateX(100%);
}

.disclaimer {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Footer Styles */
footer {
  background: var(--text-color);
  color: white;
  padding-top: 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h2 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-logo p {
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
  font-size: 0.875rem;
}

.risk-warning p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-align: right;
}

/* Responsiveness */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero .container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .steps {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .stats {
    flex-wrap: wrap;
  }
  
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .signup-form {
    flex-direction: column;
  }
  
  .signup-form input, 
  .signup-form .btn-primary {
    border-radius: 0.5rem;
    width: 100%;
  }
  
  .signup-form input {
    margin-bottom: 1rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .risk-warning p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.hidden{
  display:none!important;
}
