/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #6366f1;
    --color-primary-foreground: #ffffff;
    --color-accent: #f97316;
    --color-accent-foreground: #ffffff;
    --color-background: #ffffff;
    --color-foreground: #0f172a;
    --color-secondary: #f1f5f9;
    --color-muted-foreground: #64748b;
    --color-dark-section: #1e293b;
    --color-dark-section-foreground: #f1f5f9;
    --color-success: #10b981;
    --color-success-foreground: #ffffff;
    --color-card: #ffffff;
    --color-border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
        'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--color-foreground);
    line-height: 1.6;
    background: var(--color-background);
}

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

/* Button Styles */
.btn {
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn--lg {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
}

.btn--accent:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    text-decoration: none;
}

/* Section Title */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero__content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
    text-align: center;
}

.hero__title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-primary-foreground);
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Reality Section */
.reality {
    background-color: var(--color-dark-section);
    color: var(--color-dark-section-foreground);
    padding: 5rem 0;
}

.reality__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.reality__item {
    text-align: center;
}

.reality__icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    color: rgba(241, 245, 249, 0.7);
}

.reality__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reality__description {
    color: rgba(241, 245, 249, 0.8);
}

.reality__tagline {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Offer Section */
.offer {
    background-color: var(--color-secondary);
    padding: 5rem 0;
}

.offer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.offer__card {
    background-color: var(--color-card);
    padding: 1.5rem;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.offer__title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.offer__description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--color-success);
    color: var(--color-success-foreground);
    padding: 4rem 0;
    text-align: center;
}

.guarantee__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.guarantee__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee__subtitle {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee__description {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--color-background);
    padding: 5rem 0;
}

.how-it-works__steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.how-it-works__step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.how-it-works__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.how-it-works__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-it-works__description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}

.how-it-works__arrow {
    flex-shrink: 0;
    color: var(--color-muted-foreground);
    display: none;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    padding: 5rem 0;
    text-align: center;
}

.final-cta__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .how-it-works__arrow {
        display: block;
    }

    .how-it-works__steps {
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .final-cta__title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}

/* Hero Logo */
.hero__logo {
    max-width: 360px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    background-color: var(--color-dark-section);
    color: var(--color-dark-section-foreground);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer__logo {
    margin-bottom: 1.5rem;
}

.footer__logo-img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__copyright {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: rgba(241, 245, 249, 0.9);
}

.footer__disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.footer__disclaimer p {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.7);
    margin: 0;
}

.footer__disclaimer strong {
    color: rgba(241, 245, 249, 0.9);
}

@media (max-width: 768px) {
    .hero__logo {
        max-width: 140px;
    }

    .footer__logo-img {
        max-width: 100px;
    }

    .footer__disclaimer {
        padding: 1rem;
    }

    .footer__disclaimer p {
        font-size: 0.7rem;
    }
}
