/* Global Reset */
:root {
    --primary: #925828;
    /* Teddy Bear Brown - Premium */
    --primary-dark: #76411d;
    --secondary: #FFFBF7;
    /* Soft Cream */
    --accent: #FF5A1F;
    /* Vibrant Orange for CTA */
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    /* Mobile-focused layout even on desktop */
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo .highlight {
    color: var(--accent);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 0 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.tag {
    display: inline-block;
    background: #FEF3C7;
    color: #D97706;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.headline {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.hero-image-wrapper {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    background: #E5E7EB;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    /* Wider aspect ratio for mobile to save vertical space */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(255, 90, 31, 0.4);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(255, 90, 31, 0.5);
    background: #EA580C;
}

.cta-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 90, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.guarantee {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 16px;
    font-weight: 500;
}

/* Features */
.features {
    background: var(--white);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #F3F4F6;
}

.feature-card .icon {
    font-size: 2rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Social Proof */
.reviews {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #FFE4C4;
    border-bottom: 1px solid #FFE4C4;
}

.stars {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.review-text {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.final-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.final-cta p {
    color: #DC2626;
    /* Urgency Red */
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #9CA3AF;
    padding: 40px 0 20px;
    text-align: center;
    font-size: 0.875rem;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: #F3F4F6;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 0.7rem;
    line-height: 1.4;
    color: #4B5563;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .headline {
        font-size: 3.5rem;
        margin-bottom: 24px;
    }

    .hero-image-wrapper {
        aspect-ratio: 1 / 1;
        /* Back to square on desktop for impact */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .features .container {
        /* Grid for desktop */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 0;
    }

    .section-title {
        grid-column: 1 / -1;
    }
}