:root {
  --primary-bg: #0a0b12;
  --secondary-bg: rgba(16, 18, 27, 0.95);
  --accent-1: #6d5aff;
  --accent-2: #ff59c7;
  --accent-3: #00ffb3;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --gradient-1: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-2: linear-gradient(135deg, var(--accent-3), var(--accent-1));
  --shadow-color: rgba(0, 0, 0, 0.2);
  --blur-bg: rgba(16, 18, 27, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--primary-bg);
  color: var(--text-primary);
  min-height: 200vh;
}

.epg_inv_hero_x9f2_wrapper {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1930 0%, #1a3b6e 100%);
  overflow: hidden;
}

.epg_inv_hero_x9f2_container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.epg_inv_hero_x9f2_content {
  flex: 1;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.epg_inv_hero_x9f2_title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #7eb6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.epg_inv_hero_x9f2_subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.epg_inv_hero_x9f2_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.epg_inv_hero_x9f2_stat_item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.epg_inv_hero_x9f2_stat_item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.epg_inv_hero_x9f2_stat_number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.epg_inv_hero_x9f2_stat_label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.epg_inv_hero_x9f2_cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.epg_inv_hero_x9f2_primary_btn,
.epg_inv_hero_x9f2_secondary_btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.epg_inv_hero_x9f2_primary_btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.epg_inv_hero_x9f2_primary_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.epg_inv_hero_x9f2_secondary_btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.epg_inv_hero_x9f2_secondary_btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.epg_inv_hero_x9f2_visual {
  flex: 1;
  position: relative;
  height: 600px;
}

.epg_inv_hero_x9f2_chart {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  border-radius: 30px;
  overflow: hidden;
}

.epg_inv_hero_x9f2_particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .epg_inv_hero_x9f2_container {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }

  .epg_inv_hero_x9f2_content {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .epg_inv_hero_x9f2_cta {
    justify-content: center;
  }

  .epg_inv_hero_x9f2_visual {
    height: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .epg_inv_hero_x9f2_stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .epg_inv_hero_x9f2_stat_item {
    padding: 1rem;
  }

  .epg_inv_hero_x9f2_visual {
    height: 300px;
  }
}
/* 
.epg_inv_plans_x8d3_wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 1rem;
}

.epg_inv_plans_x8d3_container {
  max-width: 1440px;
  margin: 0 auto;
}

.epg_inv_plans_x8d3_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.epg_inv_plans_x8d3_card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.epg_inv_plans_x8d3_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.epg_inv_plans_x8d3_card_header {
  text-align: center;
  margin-bottom: 2rem;
}

.epg_inv_plans_x8d3_plan_badge {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.epg_inv_plans_x8d3_plan_title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.epg_inv_plans_x8d3_profit_rate {
  background: rgba(59, 130, 246, 0.1);
  padding: 1rem;
  border-radius: 16px;
}

.epg_inv_plans_x8d3_rate_value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.epg_inv_plans_x8d3_rate_period {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.epg_inv_plans_x8d3_investment_range {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  text-align: center;
}

.epg_inv_plans_x8d3_range_label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.epg_inv_plans_x8d3_range_value {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.epg_inv_plans_x8d3_features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.epg_inv_plans_x8d3_features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.epg_inv_plans_x8d3_features li::before {
  content: "✓";
  color: #3b82f6;
  margin-right: 0.75rem;
  font-weight: bold;
}

.epg_inv_plans_x8d3_calculator {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.epg_inv_plans_x8d3_calc_label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.epg_inv_plans_x8d3_calc_input {
  position: relative;
  margin-bottom: 1rem;
}

.epg_inv_plans_x8d3_currency {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

.epg_inv_plans_x8d3_calc_input input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
}

.epg_inv_plans_x8d3_calc_input input:focus {
  outline: none;
  border-color: #3b82f6;
}

.epg_inv_plans_x8d3_calc_result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.epg_inv_plans_x8d3_profit {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.1rem;
}

.epg_inv_plans_x8d3_invest_btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.epg_inv_plans_x8d3_invest_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .epg_inv_plans_x8d3_wrapper {
    padding: 2rem 1rem;
  }

  .epg_inv_plans_x8d3_card {
    padding: 1.5rem;
  }

  .epg_inv_plans_x8d3_rate_value {
    font-size: 2rem;
  }

  .epg_inv_plans_x8d3_range_value {
    font-size: 1.25rem;
  }
}




 */


.epg_inv_features_k7m2_wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 1rem;
    color: white;
}

.epg_inv_features_k7m2_container {
    max-width: 1440px;
    margin: 0 auto;
}

.epg_inv_features_k7m2_header {
    text-align: center;
    margin-bottom: 4rem;
}

.epg_inv_features_k7m2_title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #7eb6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.epg_inv_features_k7m2_subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.epg_inv_features_k7m2_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.epg_inv_features_k7m2_stat_card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.epg_inv_features_k7m2_stat_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.epg_inv_features_k7m2_stat_icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epg_inv_features_k7m2_icon {
    width: 24px;
    height: 24px;
    color: white;
}

.epg_inv_features_k7m2_stat_content {
    flex: 1;
}

.epg_inv_features_k7m2_stat_number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.epg_inv_features_k7m2_stat_label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.epg_inv_features_k7m2_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.epg_inv_features_k7m2_card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.epg_inv_features_k7m2_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.epg_inv_features_k7m2_card_icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.epg_inv_features_k7m2_card_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.epg_inv_features_k7m2_card_text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .epg_inv_features_k7m2_wrapper {
        padding: 4rem 1rem;
    }

    .epg_inv_features_k7m2_stat_card {
        padding: 1.5rem;
    }

    .epg_inv_features_k7m2_card {
        padding: 1.5rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
