/* ======================
   FLEXIA PREMIUM 2026 - ₦8,000 INVESTMENT
   ====================== */

/* Premium Color Variables */
:root {
  --premium-gold: #FFD700;
  --premium-purple: #8000FF;
  --premium-blue: #00EEFF;
  --investment-dark: #0A0A1A;
  --investment-darker: #05050F;
  --investment-card: rgba(30, 20, 60, 0.8);
  --success-green: #00C853;
  --warning-orange: #FF9800;
  --pure-white: #FFFFFF;
  --text-glow: rgba(255, 255, 255, 0.9);
  --premium-gradient: linear-gradient(135deg, var(--premium-gold), var(--premium-purple), var(--premium-blue));
  --card-gradient: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(0, 238, 255, 0.1));
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--investment-darker);
  color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 238, 255, 0.1) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-premium {
  background: var(--premium-gradient);
  color: var(--investment-darker);
  box-shadow: 
    0 5px 25px rgba(255, 215, 0, 0.4),
    0 0 30px rgba(128, 0, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 8px 35px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(128, 0, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: var(--investment-darker);
}

.btn-premium-lg {
  flex-direction: column;
  padding: 25px 40px;
  font-size: 18px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.btn-premium-lg .btn-main {
  font-size: 1.3em;
  font-weight: 800;
}

.btn-premium-lg .btn-sub {
  font-size: 0.9em;
  opacity: 0.9;
  font-weight: 600;
}

.btn-secondary {
  background: rgba(0, 238, 255, 0.1);
  color: var(--premium-blue);
  border: 2px solid var(--premium-blue);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 238, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0, 238, 255, 0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--premium-gradient);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-glow);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ======================
   HERO SECTION - FIXED LOGO SIZE
   ====================== */

/* Hero Base */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #05050f 0%, #0a0a1a 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 5, 20, 0.9) 0%,
        rgba(20, 10, 40, 0.85) 50%,
        rgba(30, 15, 60, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

/* Logo Container - FIXED */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Fixed Logo Size - FITS in Container */
.logo {
    width: 100px; /* Reduced from 140px */
    height: 100px; /* Reduced from 140px */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Reduced margin */
    box-shadow: 
        0 10px 30px rgba(128, 0, 255, 0.4),
        0 0 40px rgba(0, 238, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.15); /* Thinner border */
    animation: floatLogo 3s ease-in-out infinite;
    position: relative;
    overflow: hidden; /* Prevents overflow */
}

/* Smaller glow effect */
.logo::before {
    content: '';
    position: absolute;
    top: -4px; /* Reduced */
    left: -4px; /* Reduced */
    right: -4px; /* Reduced */
    bottom: -4px; /* Reduced */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px); /* Reduced blur */
}

/* Logo Image - FITS inside circle */
.logo-image {
    width: 60px; /* Reduced from 80px */
    height: 60px; /* Reduced from 80px */
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 
            0 10px 30px rgba(128, 0, 255, 0.4),
            0 0 40px rgba(0, 238, 255, 0.4);
    }
    50% {
        transform: translateY(-10px) scale(1.03); /* Reduced movement */
        box-shadow: 
            0 20px 40px rgba(128, 0, 255, 0.6),
            0 0 50px rgba(0, 238, 255, 0.6);
    }
}

/* Investment Badge - Adjusted */
.investment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Reduced */
    margin-bottom: 30px; /* Reduced */
    animation: fadeInUp 0.8s ease-out 0.3s both;
    max-width: 100%;
    overflow: hidden;
}

.investment-amount {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--darker);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.2rem; /* Reduced from 3rem */
    padding: 12px 25px; /* Reduced */
    border-radius: 20px; /* Slightly smaller */
    display: inline-block;
    box-shadow: 
        0 8px 25px rgba(128, 0, 255, 0.5),
        0 0 30px rgba(0, 238, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    max-width: 90%;
    word-wrap: break-word;
}

.investment-amount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.investment-amount:hover::before {
    left: 100%;
}

.investment-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Reduced */
    font-size: 0.9rem; /* Reduced */
    background: rgba(0, 238, 255, 0.1);
    padding: 8px 20px; /* Reduced */
    border-radius: 15px;
    border: 1px solid rgba(0, 238, 255, 0.3); /* Thinner border */
    backdrop-filter: blur(10px);
    max-width: 90%;
}

/* Hero Title - Adjusted */
.hero-title {
    font-size: 2.5rem; /* Reduced from 3.5rem */
    color: var(--pure-white);
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    line-height: 1.2;
    padding: 0 15px;
}

.title-line {
    display: block;
    line-height: 1.3;
    margin-bottom: 8px;
}

.highlight {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Exclusive Badge - Adjusted */
.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Reduced */
    background: rgba(128, 0, 255, 0.2);
    border: 1px solid var(--primary); /* Thinner border */
    border-radius: 40px; /* Smaller */
    padding: 12px 25px; /* Reduced */
    margin-bottom: 30px; /* Reduced */
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.7s both;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
}

.exclusive-badge i {
    color: var(--secondary);
    font-size: 1rem; /* Reduced */
}

.badge-text {
    color: var(--pure-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduced */
    font-size: 0.85rem; /* Reduced */
    text-align: center;
}

/* Hero Description - Adjusted */
.hero-description {
    max-width: 700px; /* Reduced */
    margin: 0 auto 40px; /* Reduced */
    animation: fadeInUp 0.8s ease-out 0.9s both;
    padding: 0 20px;
}

.main-description {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    color: var(--pure-white);
    margin-bottom: 15px; /* Reduced */
    font-weight: 600;
    line-height: 1.4;
}

.main-description strong {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem; /* Match parent size */
}

.sub-description {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    color: var(--white-glow);
    line-height: 1.6; /* Reduced */
    opacity: 0.9;
}

/* ROI Highlights - Adjusted */
.roi-highlights {
    display: flex;
    justify-content: center;
    gap: 20px; /* Reduced */
    margin-bottom: 50px; /* Reduced */
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    padding: 0 15px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced */
    background: rgba(30, 20, 60, 0.7);
    padding: 15px 20px; /* Reduced */
    border-radius: 12px; /* Smaller */
    border: 1px solid rgba(128, 0, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 180px; /* Reduced from 220px */
    max-width: 100%;
}

.roi-item:hover {
    transform: translateY(-3px); /* Reduced */
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(128, 0, 255, 0.3);
}

.roi-icon {
    width: 40px; /* Reduced from 50px */
    height: 40px; /* Reduced from 50px */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* Reduced */
    color: var(--darker);
    flex-shrink: 0; /* Prevents shrinking */
}

.roi-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.roi-value {
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.roi-label {
    color: var(--white-glow);
    font-size: 0.8rem; /* Reduced */
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced */
}

/* CTA Section - Adjusted */
.cta-section {
    background: rgba(20, 10, 40, 0.7);
    border: 1px solid var(--primary); /* Thinner border */
    border-radius: 20px; /* Smaller */
    padding: 30px 20px; /* Reduced */
    max-width: 600px; /* Reduced */
    margin: 0 auto 40px; /* Reduced */
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.cta-header {
    margin-bottom: 25px; /* Reduced */
}

.cta-header h3 {
    color: var(--secondary);
    font-size: 1.5rem; /* Reduced */
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-subtitle {
    color: var(--white-glow);
    font-size: 0.95rem; /* Reduced */
    opacity: 0.9;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced */
    align-items: center;
    margin-bottom: 25px; /* Reduced */
}

.btn-premium {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 16px 30px; /* Reduced */
    border-radius: 40px; /* Smaller */
    font-weight: 900;
    font-size: 1.1rem; /* Reduced */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    max-width: 350px; /* Reduced */
    width: 100%;
    box-shadow: 
        0 8px 25px rgba(128, 0, 255, 0.5),
        0 0 30px rgba(0, 238, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.03); /* Reduced */
    box-shadow: 
        0 12px 35px rgba(128, 0, 255, 0.7),
        0 0 40px rgba(0, 238, 255, 0.7);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Reduced */
}

.btn-icon {
    font-size: 1.2rem; /* Reduced */
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 1.1rem; /* Reduced */
    font-weight: 900;
}

.btn-sub {
    font-size: 0.8rem; /* Reduced */
    opacity: 0.9;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(0, 238, 255, 0.1);
    color: var(--secondary);
    border: 1px solid var(--secondary); /* Thinner border */
    padding: 12px 25px; /* Reduced */
    border-radius: 40px; /* Smaller */
    font-weight: 700;
    font-size: 0.95rem; /* Reduced */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Reduced */
    transition: all 0.3s ease;
    max-width: 350px; /* Reduced */
    width: 100%;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(0, 238, 255, 0.2);
    transform: translateY(-2px); /* Reduced */
    box-shadow: 0 8px 20px rgba(0, 238, 255, 0.2);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px; /* Reduced */
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced */
    color: var(--white-glow);
    font-size: 0.8rem; /* Reduced */
}

.security-item i {
    color: var(--secondary);
    font-size: 0.9rem; /* Reduced */
}

/* Stats Section - Adjusted */
.stats-section {
    animation: fadeInUp 0.8s ease-out 1.5s both;
    padding: 0 15px;
}

.stats-container {
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(0, 238, 255, 0.2);
    border-radius: 15px; /* Smaller */
    padding: 20px; /* Reduced */
    max-width: 800px; /* Reduced */
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Reduced min-width */
    gap: 20px; /* Reduced */
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced */
    padding: 15px; /* Reduced */
    background: rgba(128, 0, 255, 0.1);
    border-radius: 12px; /* Smaller */
    border: 1px solid rgba(128, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px); /* Reduced */
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(128, 0, 255, 0.2);
}

.stat-icon {
    width: 45px; /* Reduced */
    height: 45px; /* Reduced */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* Reduced */
    color: var(--darker);
    flex-shrink: 0; /* Prevents shrinking */
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.7rem; /* Reduced */
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.stat-label {
    color: var(--white-glow);
    font-size: 0.8rem; /* Reduced */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced */
    opacity: 0.9;
}

/* Scroll Indicator - Adjusted */
.scroll-indicator {
    position: absolute;
    bottom: 30px; /* Reduced */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Reduced */
    color: var(--secondary);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.8rem; /* Reduced */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced */
}

.scroll-indicator i {
    font-size: 1rem; /* Reduced */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px); /* Reduced */
    }
    60% {
        transform: translateX(-50%) translateY(-4px); /* Reduced */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Reduced */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Adjusted */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem; /* Reduced from 2.8rem */
    }
    
    .investment-amount {
        font-size: 2rem; /* Reduced */
        padding: 10px 20px; /* Reduced */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo {
        width: 90px; /* Reduced */
        height: 90px; /* Reduced */
    }
    
    .logo-image {
        width: 50px; /* Reduced */
        height: 50px; /* Reduced */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 15px; /* Reduced */
    }
    
    .hero-content {
        padding: 40px 15px; /* Reduced */
    }
    
    .hero-title {
        font-size: 1.8rem; /* Reduced from 2.2rem */
        padding: 0 10px;
    }
    
    .investment-amount {
        font-size: 1.7rem; /* Reduced from 2rem */
        padding: 8px 16px; /* Reduced */
    }
    
    .investment-label {
        font-size: 0.8rem; /* Reduced */
        padding: 6px 12px; /* Reduced */
    }
    
    .main-description {
        font-size: 1.3rem; /* Reduced */
    }
    
    .sub-description {
        font-size: 1rem; /* Reduced */
    }
    
    .roi-highlights {
        gap: 15px;
    }
    
    .roi-item {
        min-width: 100%;
    }
    
    .cta-section {
        padding: 20px 15px; /* Reduced */
    }
    
    .btn-premium {
        padding: 14px 20px; /* Reduced */
        font-size: 1rem; /* Reduced */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px; /* Reduced */
    }
    
    .logo {
        width: 80px; /* Further reduced */
        height: 80px; /* Further reduced */
    }
    
    .logo-image {
        width: 45px; /* Further reduced */
        height: 45px; /* Further reduced */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem; /* Further reduced */
    }
    
    .investment-amount {
        font-size: 1.5rem; /* Further reduced */
    }
    
    .exclusive-badge {
        flex-direction: column;
        gap: 8px; /* Reduced */
        padding: 10px 15px; /* Reduced */
    }
    
    .security-badges {
        flex-direction: column;
        gap: 12px; /* Reduced */
    }
    
    .logo {
        width: 70px; /* Smallest for mobile */
        height: 70px; /* Smallest for mobile */
        border-width: 2px; /* Thinner */
    }
    
    .logo-image {
        width: 40px; /* Smallest for mobile */
        height: 40px; /* Smallest for mobile */
    }
    
    .hero-description {
        padding: 0 10px;
    }
    
    .cta-buttons {
        gap: 12px; /* Reduced */
    }
}
/* Investment Badge */
.investment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.investment-amount {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--darker);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    padding: 15px 35px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 
        0 10px 30px rgba(128, 0, 255, 0.5),
        0 0 40px rgba(0, 238, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.investment-amount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.investment-amount:hover::before {
    left: 100%;
}

.investment-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    background: rgba(0, 238, 255, 0.1);
    padding: 10px 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 238, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    color: var(--pure-white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.title-line {
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Exclusive Badge */
.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(128, 0, 255, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.exclusive-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.badge-text {
    color: var(--pure-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

/* Hero Description */
.hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.main-description {
    font-size: 1.8rem;
    color: var(--pure-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.main-description strong {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-description {
    font-size: 1.3rem;
    color: var(--white-glow);
    line-height: 1.8;
    opacity: 0.9;
}

/* ROI Highlights */
.roi-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 20, 60, 0.7);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(128, 0, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 220px;
}

.roi-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.3);
}

.roi-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--darker);
}

.roi-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.roi-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.roi-label {
    color: var(--white-glow);
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: rgba(20, 10, 40, 0.7);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.cta-header {
    margin-bottom: 30px;
}

.cta-header h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: var(--white-glow);
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.btn-premium {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    max-width: 400px;
    width: 100%;
    box-shadow: 
        0 10px 30px rgba(128, 0, 255, 0.5),
        0 0 40px rgba(0, 238, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(128, 0, 255, 0.7),
        0 0 50px rgba(0, 238, 255, 0.7);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 1.3rem;
    font-weight: 900;
}

.btn-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(0, 238, 255, 0.1);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 238, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 238, 255, 0.2);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-glow);
    font-size: 0.9rem;
}

.security-item i {
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.stats-container {
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(0, 238, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(128, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--darker);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.stat-label {
    color: var(--white-glow);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .investment-amount {
        font-size: 2.5rem;
        padding: 12px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .investment-amount {
        font-size: 2rem;
        padding: 10px 20px;
    }
    
    .investment-label {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .main-description {
        font-size: 1.4rem;
    }
    
    .sub-description {
        font-size: 1.1rem;
    }
    
    .roi-highlights {
        gap: 20px;
    }
    
    .roi-item {
        min-width: 100%;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .btn-premium {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .investment-amount {
        font-size: 1.8rem;
    }
    
    .exclusive-badge {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
}
/* ======================
   INVESTMENT VALUE SECTION
   ====================== */
.investment-value {
  padding: 100px 0;
  background: var(--investment-dark);
}

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

.value-card {
  background: var(--investment-card);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card.premium {
  border-color: var(--premium-purple);
  background: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(0, 238, 255, 0.1));
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(128, 0, 255, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--premium-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--investment-darker);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--pure-white);
}

.value-card p {
  color: var(--text-glow);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
}

.value-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--premium-gold);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Investment Note */
.investment-note {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 238, 255, 0.1);
  border: 1px solid var(--premium-blue);
  border-radius: 15px;
  padding: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.note-icon {
  width: 60px;
  height: 60px;
  background: var(--premium-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--investment-darker);
  flex-shrink: 0;
}

.note-content h4 {
  color: var(--premium-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.note-content p {
  color: var(--text-glow);
  line-height: 1.7;
}

/* ======================
   ROI CALCULATOR SECTION
   ====================== */
.roi-calculator {
  padding: 100px 0;
  background: var(--investment-darker);
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(20, 10, 40, 0.7);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid var(--premium-purple);
}

.calculator-inputs {
  background: rgba(30, 20, 60, 0.8);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(128, 0, 255, 0.3);
}

.calculator-inputs h3 {
  color: var(--premium-gold);
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  color: var(--text-glow);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-group label i {
  color: var(--premium-blue);
}

.input-group input {
  width: 100%;
  padding: 15px;
  background: rgba(10, 5, 20, 0.8);
  border: 2px solid var(--premium-purple);
  border-radius: 10px;
  color: var(--pure-white);
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
}

.input-unit {
  display: block;
  color: var(--text-glow);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 5px;
}

.btn-calculate {
  width: 100%;
  background: var(--premium-gradient);
  color: var(--investment-darker);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px;
  margin-top: 20px;
}

/* Calculator Results */
.calculator-results {
  background: rgba(30, 20, 60, 0.8);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 238, 255, 0.3);
}

.results-header h3 {
  color: var(--premium-blue);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.results-subtitle {
  color: var(--text-glow);
  opacity: 0.8;
  margin-bottom: 30px;
}

.results-breakdown {
  background: rgba(10, 5, 20, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item.total {
  border-bottom: none;
  border-top: 2px solid var(--premium-gold);
  margin-top: 15px;
  padding-top: 20px;
}

.result-label {
  color: var(--text-glow);
  font-weight: 600;
}

.result-amount {
  color: var(--premium-gold);
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
}

.result-item.total .result-amount {
  font-size: 1.8rem;
  color: var(--success-green);
}

/* ROI Highlight Box */
.roi-highlight-box {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--premium-gold);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.roi-percentage {
  margin-bottom: 15px;
}

.percentage {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--success-green);
  display: block;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
}

.percentage-label {
  color: var(--text-glow);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roi-explanation p {
  color: var(--text-glow);
  line-height: 1.7;
}

.roi-explanation strong {
  color: var(--premium-gold);
}

/* Action Call */
.action-call {
  text-align: center;
}

.action-call p {
  color: var(--premium-blue);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ======================
   WHY INVEST SECTION
   ====================== */
.why-invest {
  padding: 100px 0;
  background: var(--investment-dark);
}

.invest-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.reason-card {
  display: flex;
  gap: 20px;
  background: rgba(30, 20, 60, 0.7);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(128, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--premium-purple);
  box-shadow: 0 15px 35px rgba(128, 0, 255, 0.2);
}

.reason-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--premium-purple);
  font-family: 'Orbitron', sans-serif;
  flex-shrink: 0;
}

.reason-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pure-white);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.reason-content h3 i {
  color: var(--premium-gold);
}

.reason-content p {
  color: var(--text-glow);
  opacity: 0.9;
  line-height: 1.7;
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */
.testimonials {
  padding: 100px 0;
  background: var(--investment-darker);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(30, 20, 60, 0.7);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-card.premium {
  border-color: var(--premium-purple);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(128, 0, 255, 0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(128, 0, 255, 0.2);
  border-bottom: 1px solid rgba(128, 0, 255, 0.3);
}

.investor-badge {
  background: var(--premium-gradient);
  color: var(--investment-darker);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roi-badge {
  background: rgba(0, 200, 83, 0.2);
  color: var(--success-green);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.testimonial-content {
  padding: 30px;
}

.testimonial-content p {
  color: var(--text-glow);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.user-info h4 {
  color: var(--pure-white);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.earnings {
  display: flex;
  align-items: center;
  gap: 15px;
}

.earning-amount {
  color: var(--premium-gold);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Orbitron', sans-serif;
}

.earning-period {
  color: var(--text-glow);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ======================
   REGISTRATION PROCESS
   ====================== */
.registration-process {
  padding: 100px 0;
  background: var(--investment-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.process-step {
  background: rgba(30, 20, 60, 0.7);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(128, 0, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: var(--premium-purple);
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--premium-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--investment-darker);
  margin: 0 auto 20px;
  font-family: 'Orbitron', sans-serif;
}

.step-content h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--pure-white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-content h3 i {
  color: var(--premium-blue);
}

.step-content p {
  color: var(--text-glow);
  opacity: 0.9;
  line-height: 1.7;
}

/* Payment Methods */
.payment-methods {
  background: rgba(30, 20, 60, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(0, 238, 255, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.payment-methods h4 {
  color: var(--premium-blue);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(10, 5, 20, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(128, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.method-item:hover {
  border-color: var(--premium-purple);
  transform: translateY(-5px);
}

.method-item i {
  font-size: 2rem;
  color: var(--premium-blue);
}

.method-item span {
  color: var(--text-glow);
  font-weight: 600;
}

/* ======================
   FINAL CTA SECTION
   ====================== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--investment-darker), var(--investment-dark));
}

.cta-box {
  background: rgba(20, 10, 40, 0.9);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  border: 3px solid var(--premium-purple);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box.premium {
  background: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(0, 238, 255, 0.1));
}

.cta-content h2 {
  color: var(--premium-gold);
  margin-bottom: 20px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta-subtitle {
  color: var(--text-glow);
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Investment Highlights */
.investment-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--premium-blue);
  font-weight: 600;
  background: rgba(0, 238, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0, 238, 255, 0.3);
}

.highlight-item i {
  color: var(--premium-gold);
}

/* Price Box */
.price-box {
  background: rgba(10, 5, 20, 0.8);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  border: 2px solid var(--premium-gold);
}

.current-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-label {
  color: var(--text-glow);
  font-size: 1.1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--premium-gold);
  font-family: 'Orbitron', sans-serif;
}

.price-note p {
  color: var(--text-glow);
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.price-note i {
  color: var(--warning-orange);
}

/* CTA Actions */
.cta-actions {
  margin-bottom: 30px;
}

.security-assurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.security-assurance p {
  color: var(--text-glow);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-assurance i {
  color: var(--success-green);
}

/* Urgency Message */
.urgency-message {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid var(--warning-orange);
  border-radius: 15px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.urgency-message p {
  color: var(--warning-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ======================
   FAQ SECTION
   ====================== */
.faq {
  padding: 100px 0;
  background: var(--investment-darker);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 20, 60, 0.7);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(128, 0, 255, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--premium-purple);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--pure-white);
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  background: rgba(128, 0, 255, 0.1);
}

.faq-item h3:hover {
  background: rgba(128, 0, 255, 0.2);
}

.faq-item h3 i.fa-question-circle {
  color: var(--premium-blue);
  margin-right: 10px;
}

.faq-item h3 i.fa-chevron-down {
  color: var(--premium-gold);
  transition: transform 0.3s ease;
}

.faq-item.active h3 i.fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-glow);
  line-height: 1.7;
}

/* ======================
   FOOTER SECTION
   ====================== */
.footer {
  background: var(--investment-dark);
  padding: 80px 0 30px;
  border-top: 3px solid var(--premium-purple);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo-container {
  margin-bottom: 30px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  background: var(--premium-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--investment-darker);
  margin-bottom: 20px;
}

.footer-logo-container h4 {
  color: var(--premium-gold);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--text-glow);
  opacity: 0.9;
  line-height: 1.6;
}

.footer-contact p {
  color: var(--text-glow);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--premium-blue);
  width: 20px;
}

.footer-col h4 {
  color: var(--premium-gold);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--text-glow);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--premium-blue);
}

/* Verification Badges */
.verification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(128, 0, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(128, 0, 255, 0.3);
}

.badge i {
  color: var(--premium-blue);
}

.badge span {
  color: var(--text-glow);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(128, 0, 255, 0.2);
  border-radius: 50%;
  color: var(--premium-blue);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--premium-gradient);
  color: var(--investment-darker);
  transform: translateY(-3px);
}

/* Newsletter */
.newsletter p {
  color: var(--text-glow);
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(10, 5, 20, 0.8);
  border: 1px solid rgba(128, 0, 255, 0.3);
  border-radius: 10px;
  color: var(--pure-white);
}

.newsletter-form button {
  background: var(--premium-gradient);
  color: var(--investment-darker);
  border: none;
  border-radius: 10px;
  padding: 0 25px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.disclaimer {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid var(--warning-orange);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}

.disclaimer p {
  color: var(--text-glow);
  line-height: 1.7;
  text-align: center;
}

.disclaimer strong {
  color: var(--warning-orange);
}

.copyright {
  text-align: center;
  color: var(--text-glow);
  opacity: 0.7;
  line-height: 1.6;
}

/* ======================
   ANIMATIONS
   ====================== */
@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.3rem;
  }
  
  .hero-header h1 {
    font-size: 2.8rem;
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .investment-highlights {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-header h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-container,
  .calculator-container,
  .cta-box {
    padding: 30px 20px;
  }
  
  .roi-highlight {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .value-grid,
  .invest-reasons {
    grid-template-columns: 1fr;
  }
  
  .investment-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .price-amount {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-header h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .logo {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .price-amount {
    font-size: 2.3rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}
