:root {
    --primary-color: #D4AF37;
    /* Gold/Sand - Divine/Value */
    --primary-dark: #B59328;
    /* Darker Gold */
    --secondary-color: #1B3B5F;
    /* Deep Navy - Trust/Stability */
    --accent-color: #8FBC8F;
    /* Sage Green - Growth */
    --background-light: #FDFBF7;
    /* Warm Cream - Peace */
    --surface-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.4s;
}

html {
    scroll-behavior: smooth;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(to bottom, var(--background-light), #ffffff);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Scroll Reveal Classes (JS will trigger) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    width: 100%;
    text-align: center;
}

/* -- Sections -- */

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(27, 59, 95, 0.6), rgba(27, 59, 95, 0.4)), url('https://images.unsplash.com/photo-1491841550275-ad7854e35ca6?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    /* For potential navbar */
}

/* Fallback background if image fails or while loading */
.hero-section {
    background-color: #2c3e50;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(27, 59, 95, 0.7), rgba(27, 59, 95, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out infinite alternate;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.problem-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.alert-box {
    margin-top: 2rem;
    background: #FFF4F4;
    border-left: 4px solid #E74C3C;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 8px;
    text-align: left;
}

.alert-box i {
    color: #E74C3C;
    font-size: 1.5rem;
    margin-top: 3px;
}

.card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.card-glass h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-glass ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    justify-content: center;
    /* Centered for mobile mostly */
}

@media (min-width: 769px) {
    .card-glass ul li {
        justify-content: flex-start;
    }
}

.card-glass i {
    color: #E74C3C;
}

.card-glass i.fa-arrow-down {
    color: var(--primary-dark);
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.title-gold {
    color: var(--primary-dark);
    font-size: 3rem;
    margin: 0.5rem 0 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
    opacity: 1;
}

/* Visible by default if needed, or handle by JS */
.center-text {
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.steps-container::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #eee;
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-container::after {
        display: none;
    }
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    /* To hide line behind */
    padding: 1rem;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(27, 59, 95, 0.3);
}

/* Bonuses */
.bonuses-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), #2C5282);
    color: white;
}

.text-white {
    color: white !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bonus-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bonus-card h4 {
    font-family: var(--font-body);
    font-weight: 500;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.offer-header {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 1rem;
}

.offer-tag {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-box {
    padding: 2rem;
    color: var(--secondary-color);
}

.old-price {
    display: block;
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.current-price-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
}

.price-box .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.price-box .period {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.benefits-list {
    padding: 2rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefits-list li i {
    color: var(--primary-color);
}

.scarcity-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #E74C3C;
    font-weight: 500;
    padding-bottom: 2rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.main-footer h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .offer-card {
        border-radius: 15px;
        margin: 0 10px;
    }

    .price-box .amount {
        font-size: 3rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }
}