:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f9d976;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    /* New Mystical Variables */
    --sacred-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 40%);
    --aura-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* Mystical Backgrounds */
.bg-symbols {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Mystical Separator */
.mystical-separator {
    height: 1px;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    position: relative;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystical-separator::after {
    content: '✦';
    background: var(--darker-bg);
    padding: 0 15px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    text-shadow: 0 0 15px var(--primary-gold);
    position: relative;
    z-index: 2;
}

/* Particle Effects */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20%) scale(1);
        opacity: 0;
    }
}

/* Image Aura */
.aura-wrapper {
    position: relative;
    display: inline-block;
}

.aura-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
    animation: pulse-aura 4s ease-in-out infinite alternate;
}

@keyframes pulse-aura {
    0% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

/* Parallax & Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Slightly taller for parallax */
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(-1px) scale(2);
    /* CSS Parallax base or JS handled */
    will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--secondary-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--gold-glow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.cta-button.pulse {
    animation: pulse-gold 2s infinite;
}

.security-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Identification Section */
.identification {
    padding: 60px 0;
    position: relative;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.dark-overlay {
    background: linear-gradient(to bottom, var(--dark-bg), rgba(0, 0, 0, 0.7), var(--dark-bg));
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.warning-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    padding: 60px 0;
    background: radial-gradient(circle at center, #1a1a1a, var(--dark-bg));
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.text-col {
    flex: 1;
    min-width: 300px;
}

.image-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.highlight-text {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 1rem 0;
}

.floating-image-wrapper img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.glow-image {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

/* Modules Section */
.modules {
    padding: 60px 0;
    position: relative;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #222;
    transition: all 0.3s ease;
    text-align: center;
}

.module-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 5s ease-in-out infinite alternate;
}

.module-card h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    min-height: 50px;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), transparent 70%);
}

.gradient-text {
    background: linear-gradient(to right, #cfc09f, #ffecb3, #b3a073);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price-box {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    max-width: 500px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15), inset 0 0 30px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.25), inset 0 0 40px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.price-box>* {
    position: relative;
    z-index: 1;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.guarantee-box {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.guarantee-box:hover {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.guarantee-icon {
    font-size: 2.5rem;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: #050505;
}

.faq-grid {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid #222;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-gold);
}

footer {
    padding: 2rem 0;
    border-top: 1px solid #222;
    color: var(--text-muted);
}

/* Scroll reveal class */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .price {
        font-size: 3rem;
    }
}