/* 
   THEME: Mystical Luxury 
   COLORS: Midnight Blue, Deep Purple, Gold, White
*/

:root {
    --bg-dark: #050507;
    --bg-card: rgba(20, 20, 25, 0.7);
    --gold-primary: #D4AF37;
    --gold-light: #F9E29C;
    --gold-dark: #AA8C2C;
    --text-main: #E0E0E0;
    --text-muted: #A0A0A0;
    --purple-glow: rgba(138, 43, 226, 0.3);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;

    --transition-fast: 0.3s ease;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UTILITIES */
.text-center {
    text-align: center;
}

/* URGENCY BAR */
.urgency-bar {
    background-color: #D32F2F;
    /* Red color */
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: fixed;
    /* Fixed to top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Adjust body to prevent content from hiding behind fixed bar */
body {
    padding-top: 40px;
}

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    border-bottom: 2px solid var(--gold-dark);
}

/* GLASSMORPHISM */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center bottom, rgba(212, 175, 55, 0.15) 0%, var(--bg-dark) 60%);
    /* Gold glow from bottom */
    padding: 60px 20px 40px;
    /* Reduced top padding to move content up */
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 5px;
    /* DRASTICALLY reduced from 20px */
    opacity: 0.9;
}

.hero-title {
    font-size: 2.5rem;
    /* Restored size but decreased margin */
    margin-bottom: 0px;
    /* ZERO margin */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    line-height: 1.1;
    /* Tighter leading */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #F0F0F0;
    margin-bottom: 5px;
    /* Extremely tight to image */
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}

@media(min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}



/* BUTTONS */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* ANIMATIONS */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

/* MECHANISM / PROBLEM */
.mechanism-section {
    background: linear-gradient(to bottom, var(--bg-dark), #0f0518);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.divider-gold {
    height: 3px;
    width: 80px;
    background: var(--gold-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* CARDS */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-fast);
}

.benefit-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.benefit-icon {
    color: var(--gold-primary);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* BONUSES */
.bonus-section {
    background: #080808;
    border-top: 1px solid #222;
}

.bonus-grid {
    display: grid;
    gap: 20px;
}

@media(min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    padding: 20px;
    text-align: center;
}

.bonus-price {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-top: 10px;
}

.strike {
    text-decoration: line-through;
    opacity: 0.6;
}

/* OFFER SECTION */
.offer-section {
    background: url('https://images.unsplash.com/photo-1533158388470-9a2166319d55?q=80&w=2669&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.offer-box {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
    border: 2px solid var(--gold-dark);
}

.price-container {
    font-size: 1.5rem;
    margin: 30px 0;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #888;
}

.new-price {
    font-size: 3rem;
    color: var(--gold-primary);
    font-weight: 700;
    display: block;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #ccc;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 0;
    margin-top: 60px;
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.alchemist-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    /* Fix to bottom of hero */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    margin-top: 0;
    /* Removing margin-top since absolute positioning handles it */
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator svg {
    color: #fff;
    width: 32px;
    height: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* GUARANTEE SEAL SECTION */
.guarantee-seal-section {
    position: relative;
    z-index: 10;
    color: #fff;
}

.guarantee-seal-section h3 {
    color: #FFF;
    font-size: 1.5rem;
}

.guarantee-seal-section p {
    color: #E0E0E0 !important;
    line-height: 1.6;
}





/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background: #fdfdfd0d;
    /* Very subtle light bg to differentiate if needed, or keep transparent */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

@media(min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-card {
    background: var(--bg-card);
    /* Dark glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    color: var(--text-main);
    /* Light text */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #d0d0d0;
    /* Light grey for text */
}

.author {
    font-weight: 700;
    color: var(--gold-primary);
    /* Gold for author name */
    font-size: 1.1rem;
}