:root {
  /* Colors */
  --bg-primary: #000000;
  --bg-secondary: #0A0A0A;
  --bg-card: #141414;
  --bg-elevated: #1C1C1C;
  
  --accent-primary: #1D9BF0;
  --accent-bright: #0084FF;
  --accent-secondary: #8B5CF6;
  
  --text-primary: #E7E9EA;
  --text-secondary: #71767B;
  --text-muted: #3D4144;

  --border-color: #2F3336;
  --border-hover: #3D4144;
  
  --success-green: #00BA7C;
  --warning-yellow: #FFD400;
  --error-red: #F4212E;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  --gradient-hover: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-secondary) 100%);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  
  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-8: 96px;
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  font-size: 1rem;
}

.text-gradient {
  color: #FFFFFF;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-8) 0;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
}

.btn-primary {
  background: #FFFFFF;
  color: #000000;
}

.btn-primary:hover {
  background: #E7E9EA;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: #1C1C1C;
  border: 1px solid #2F3336;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: #2F3336;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-promo {
  background-color: var(--success-green);
  color: #000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-3) 0;
  background-color: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
}

.logo i {
  color: var(--accent-primary);
  filter: drop-shadow(0 0 8px rgba(29, 155, 240, 0.4));
}

.logo .text-gradient {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-buttons {
  display: flex;
  gap: var(--space-2);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}



@keyframes twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

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

.hero-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-4);
}

.trust-indicators {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  opacity: 0.7;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Plans Section */
/* New Investment Plans */
.new-plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: var(--space-5);
}
.new-plan-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #1C1C1C;
  border: 1px solid #2F3336;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.new-plan-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(29, 155, 240, 0.15);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29, 155, 240, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(29, 155, 240, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-badge {
  animation: pulse-glow 2s infinite;
}
.plan-icon {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: left;
}
.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.plan-duration {
  font-size: 14px;
  color: #71767B;
  margin-bottom: 16px;
}
.plan-roi-display {
  margin: 16px 0;
}
.roi-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}
.roi-label {
  font-size: 12px;
  color: #71767B;
  margin-top: 4px;
}
.plan-range {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.range-label {
  font-size: 14px;
  color: #71767B;
  margin-bottom: 4px;
}
.range-value {
  font-size: 16px;
  color: #E7E9EA;
  font-weight: 600;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.plan-features li {
  font-size: 14px;
  color: #E7E9EA;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li i {
  color: var(--accent-primary);
  font-size: 12px;
}
.plan-btn {
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: bold;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.plan-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  background: #E7E9EA;
}
.promo-plan {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 155, 240, 0.1);
  animation: border-pulse 3s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(29, 155, 240, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(29, 155, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 155, 240, 0); }
}
@keyframes border-pulse {
  0% { border-color: rgba(29, 155, 240, 0.3); }
  50% { border-color: rgba(29, 155, 240, 1); }
  100% { border-color: rgba(29, 155, 240, 0.3); }
}

@media (max-width: 1024px) {
  .new-plan-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .new-plans-grid {
    flex-direction: column;
  }
  .new-plan-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 24px;
  }
  .roi-value {
    font-size: 40px;
  }
}

/* How It Works Section */
.hiw-title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.hiw-subtitle {
  color: #71767B;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.hiw-connecting-line {
  position: absolute;
  top: 32px; /* Center of the 64px badge */
  left: 16.66%; /* Half of first column */
  right: 16.66%; /* Half of last column */
  height: 2px;
  background-image: linear-gradient(to right, #2F3336 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}
.hiw-connecting-line::before, .hiw-connecting-line::after {
  content: '▶';
  position: absolute;
  top: -8px;
  color: var(--accent-primary);
  font-size: 14px;
}
.hiw-connecting-line::before { left: 50%; transform: translateX(-50%); }
.hiw-step {
  text-align: center;
  position: relative;
  z-index: 2;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hiw-number {
  width: 64px;
  height: 64px;
  background: #1C1C1C;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hiw-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.hiw-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.hiw-step-desc {
  font-size: 15px;
  color: #71767B;
  line-height: 1.6;
  max-width: 280px;
}
.hiw-cta {
  margin-top: 60px;
}
.hiw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #000000;
  height: 56px;
  padding: 0 48px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hiw-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  background: #E7E9EA;
}
.hiw-cta-text {
  font-size: 13px;
  color: #71767B;
  margin-top: 12px;
}

@media (max-width: 768px) {
  #how-it-works {
    padding: 80px 0 !important;
  }
  .hiw-title {
    font-size: 28px;
  }
  .hiw-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hiw-connecting-line {
    display: none;
  }
  .hiw-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

/* Why Choose Us Section */
.wcu-title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.wcu-subtitle {
  color: #71767B;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wcu-card {
  background: #1C1C1C;
  border: 1px solid #2F3336;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  text-align: left;
}
.wcu-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(29, 155, 240, 0.15);
}
.wcu-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(29, 155, 240, 0.1);
  border: 1px solid rgba(29, 155, 240, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 28px;
  margin-bottom: 20px;
}
.wcu-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.wcu-card-desc {
  font-size: 15px;
  color: #71767B;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #why-choose-us {
    padding: 80px 0 !important;
  }
  .wcu-title {
    font-size: 28px;
  }
  .wcu-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Statistics Section */
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1C1C1C;
  border-radius: 16px;
  overflow: hidden;
}
.stat-card-new {
  padding: 40px;
  text-align: center;
  border-right: 1px solid #2F3336;
}
.stat-card-new:last-child {
  border-right: none;
}
.stat-number-new {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
}
.stat-label-new {
  font-size: 14px;
  color: #71767B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* Testimonials Section */
.testi-title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.testi-subtitle {
  color: #71767B;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #1C1C1C;
  border: 1px solid #2F3336;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}
.testi-stars {
  color: #1D9BF0;
  font-size: 18px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 16px;
  color: #E7E9EA;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  background: #2F3336;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-weight: bold;
}
.testi-user-info {
  text-align: left;
}
.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.testi-role {
  font-size: 13px;
  color: #71767B;
  margin: 0;
}

/* FAQ Section */
.faq-title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.faq-subtitle {
  color: #71767B;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}
.faq-container-new {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item-new {
  background: #1C1C1C;
  border: 1px solid #2F3336;
  border-radius: 12px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.faq-item-new:hover {
  border-color: var(--accent-primary);
}
.faq-question-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
}
.faq-question-new i {
  color: var(--accent-primary);
  font-size: 20px;
  transition: transform 0.3s ease;
}
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer-new p {
  font-size: 15px;
  color: #71767B;
  line-height: 1.7;
  margin: 0;
}
.faq-item-new.open .faq-answer-new {
  max-height: 500px;
  padding-top: 16px;
  border-top: 1px solid #2F3336;
  margin-top: 16px;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 1024px) {
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card-new:nth-child(2) {
    border-right: none;
  }
  .stat-card-new:nth-child(1), .stat-card-new:nth-child(2) {
    border-bottom: 1px solid #2F3336;
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stats-grid-new {
    grid-template-columns: 1fr;
  }
  .stat-card-new {
    border-right: none;
    border-bottom: 1px solid #2F3336;
    padding: 30px 20px;
  }
  .stat-card-new:last-child {
    border-bottom: none;
  }
  .stat-number-new {
    font-size: 36px;
  }
  .testi-title, .faq-title {
    font-size: 28px;
  }
  .testi-subtitle, .faq-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .faq-item-new {
    padding: 16px 20px;
  }
  .faq-question-new {
    font-size: 15px;
  }
  .faq-question-new i {
    font-size: 16px;
  }
  .faq-answer-new p {
    font-size: 14px;
    line-height: 1.5;
  }
  .faq-container-new {
    gap: 12px;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  padding: var(--space-8) 0 var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.footer-col h4 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: var(--space-2);
}

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

.social-links {
  display: flex;
  gap: var(--space-2);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--gradient-primary);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
  .nav-links a { font-size: 16px; }
  .btn { font-size: 16px; }
  p { font-size: 14px; }
  .card h3 { font-size: 20px; }
  
  .card { padding: 20px; }
  .section { padding: 60px 0; }
  .plans-section { padding: 60px 0 !important; }
  .container { padding: 0 20px; }
  
  .plans-grid, .stats-grid, .steps-grid, .features-grid, .testimonials-grid { 
    grid-template-columns: 1fr; 
  }
  
  .nav-links, .nav-buttons {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .navbar.mobile-active .container {
    flex-wrap: wrap;
  }
  
  .navbar.mobile-active .nav-links,
  .navbar.mobile-active .nav-buttons {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: var(--space-2) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
