/* Global Styles */
:root {
    --primary-color: #ff4500;
    /* Vibrant Orange/Red */
    --secondary-color: #ff8c00;
    /* Darker Orange */
    --background-dark: #0a0a0a;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --accent-glow: rgba(255, 69, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero Section */
header {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.product-image-container {
    margin: 30px auto;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.product-image-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    transition: transform 0.3s ease;
}

.product-image-container img:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: #111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0500 100%);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--accent-glow);
    animation: pulse 2s infinite;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--primary-color);
}

.cta-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Testimonials / Social Proof (Optional but good) */
.guarantee-badge {
    margin-top: 40px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
}

footer a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #fff;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 69, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.4rem;
        padding: 20px 40px;
        width: 90%;
    }
}