@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

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

:root {
    --primary: #d4af37;
    --secondary: #1a1a2e;
    --accent: #16213e;
    --text: #ffffff;
    --text-secondary: #b8b8b8;
    --success: #4caf50;
    --gradient-1: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --gradient-2: linear-gradient(45deg, var(--primary), #f4d03f);
}

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-1);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.05rem;
}

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

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-100px) translateX(50px); }
    50% { transform: translateY(-50px) translateX(-50px); }
    75% { transform: translateY(-150px) translateX(100px); }
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 46, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: #ff6b35;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.glitch {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tagline {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeIn 1.2s ease;
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeIn 1.6s ease;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-2);
    color: var(--secondary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeIn 1.8s ease;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.currency {
    font-size: 1.8rem;
    margin-top: 12px;
    color: var(--primary);
}

.amount {
    font-size: 4rem;
    font-weight: bold;
    color: var(--text);
}

.period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 25px;
}

.savings {
    color: var(--success);
    font-size: 0.95rem;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--success);
    font-size: 1.1rem;
}

.buy-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-2);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
}

.author-name {
    font-weight: bold;
    color: var(--text);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Community Section */
.community {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card.discord {
    border-color: #5865F2;
}

.social-card.discord .social-icon {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.social-card.discord:hover {
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4);
}

.social-card.telegram {
    border-color: #0088cc;
}

.social-card.telegram .social-icon {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.social-card.telegram:hover {
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.4);
}

.social-card.youtube {
    border-color: #FF0000;
}

.social-card.youtube .social-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.social-card.youtube:hover {
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.social-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

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

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.85rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    margin: 5% auto;
    padding: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 25px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.close {
    color: var(--text-secondary);
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

#orderSummary {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-2);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

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

    .tagline {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-cards,
    .testimonials-grid,
    .social-links {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Logo Image Styling */
.logo-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

/* ============================================
   ENHANCED VISUALS
   ============================================ */

/* Orbitron for logo & branding */
.logo, .logo-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
}

.logo-text {
    font-size: 1.1rem;
}

/* Navbar glow border */
.navbar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* Nav links upgrade */
.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ---- Glitch Title: shimmer + neon pulse ---- */
.glitch {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 5px;
    background: linear-gradient(90deg, #b8901e, #f4d03f, #fff, #f4d03f, #b8901e);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s linear infinite, neonPulse 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)); }
    50%       { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1))
                        drop-shadow(0 0 60px rgba(212, 175, 55, 0.5)); }
}

/* Tagline */
.tagline {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    animation: none;
}

/* Typewriter cursor */
.typewriter-cursor {
    color: var(--primary);
    font-weight: 300;
    animation: cursorBlink 0.75s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Hero background animated grid */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 200%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Hero badge enhanced */
.hero-badge {
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.05);
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Section headers: Orbitron + animated underline */
.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 22px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--gradient-2);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 50px; }
    50%       { width: 200px; }
}

/* Stat numbers: Orbitron + glow */
.stat-number {
    font-family: 'Orbitron', sans-serif;
    animation: statGlow 2.5s ease-in-out infinite;
}

@keyframes statGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
    50%       { text-shadow: 0 0 30px rgba(212, 175, 55, 1),
                             0 0 60px rgba(212, 175, 55, 0.4); }
}

/* CTA buttons: font + pulse */
.cta-button.primary,
.cta-button.secondary {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button.primary {
    animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }
    50%       { box-shadow: 0 5px 40px rgba(212, 175, 55, 0.9),
                            0 0 70px rgba(212, 175, 55, 0.3); }
}

/* Twinkling particle keyframe */
@keyframes twinkle {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50%       { opacity: 1;    transform: scale(2.5); }
}

/* ── Checkout tip notice ── */
.checkout-tip {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
}

.checkout-tip-icon {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-tip-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkout-tip-text strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.checkout-tip-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.checkout-tip-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.25s;
}

.checkout-tip-links a:first-child {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: #7289da;
}

.checkout-tip-links a:first-child:hover {
    background: rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
}

.checkout-tip-links a:last-child {
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.5);
    color: #29b6f6;
}

.checkout-tip-links a:last-child:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
}

/* Modal h2 Orbitron */
.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

/* ============================================
   PROFESSIONAL SECTIONS
   ============================================ */

/* ── Online Status Badge ── */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #66bb6a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #66bb6a;
    border-radius: 50%;
    box-shadow: 0 0 8px #66bb6a;
    animation: statusBlink 1.6s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}

/* ── How It Works ── */
.how-it-works {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.07;
    position: absolute;
    top: 5px;
    right: 12px;
    line-height: 1;
    user-select: none;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.step-connector {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.35;
    flex-shrink: 0;
}

/* ── Guarantee Bar ── */
.guarantee-section {
    padding: 55px 0;
    background: rgba(212, 175, 55, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.guarantee-item:hover {
    background: rgba(212, 175, 55, 0.06);
}

.guarantee-item > i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.guarantee-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ── Testimonials Section ── */
.testimonials {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
    position: relative;
    z-index: 1;
}

.review-summary {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 680px;
    margin: 0 auto 4rem;
}

.summary-score {
    text-align: center;
    flex-shrink: 0;
}

.score-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.score-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.score-count {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.rating-breakdown {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
}

.rating-row > span:first-child {
    width: 30px;
    text-align: right;
    color: #ffd700;
    flex-shrink: 0;
}

.rating-row > span:last-child {
    width: 34px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.rating-bar {
    flex: 1;
    height: 7px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 4px;
}

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

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.97rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-top: 1.2rem;
    flex-wrap: wrap;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
}

.author-name  { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(76, 175, 80, 0.12);
    color: #66bb6a;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 700;
    margin-left: auto;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* ── FAQ Section ── */
.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
}

.faq-question {
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    user-select: none;
    gap: 1rem;
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    color: var(--primary);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 0.97rem;
    border-left: 3px solid rgba(212, 175, 55, 0.4);
    padding-left: 1rem;
}

/* ── Footer Updates ── */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
    margin: 2rem 0;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover { text-decoration: underline; }

/* ── Success Modal ── */
.success-modal-content {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4.5rem;
    color: var(--success);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.6));
    animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes successPop {
    0%  { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.15); }
    100%{ transform: scale(1);   opacity: 1; }
}

.success-modal-content h2 {
    color: var(--success);
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    font-family: 'Orbitron', sans-serif;
}

.success-modal-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.order-info-box {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.order-info-row:last-child { border-bottom: none; }
.order-info-row strong { color: var(--text); }

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
    text-align: left;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.next-step i {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
    .step-connector { display: none; }
    .step-card { max-width: 100%; width: 100%; }
    .review-summary { gap: 2rem; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
