:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #ff4d00; /* Vibrant Orange */
    --accent-hover: #ff6a00;
    --highlight: #ffd700; /* Gold/Yellow */
    --success: #00e676;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 77, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.product-image-container {
    margin: 20px auto;
    max-width: 280px;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 77, 0, 0.2));
    border-radius: 10px;
}

.hero-offer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scarcity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 77, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 0, 0.3);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.scarcity-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 18px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.6);
}

.big-pulse {
    animation: pulse 2s infinite;
}

.timer-container {
    color: var(--text-muted);
    font-size: 0.9rem;
}

#time-remaining {
    color: var(--highlight);
    font-weight: 700;
}

/* Sections General */
section {
    padding: 60px 0;
    border-bottom: 0px solid #1a1a1a; /* Cleaner look */
}

/* Alternate backgrounds */
.authority-section, .kit-section, .testimonials-section {
    background-color: #0a0a0a;
}
.pain-section, .use-cases-section, .faq-section {
    background-color: #050505;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    padding: 0 10px;
}

.highlight {
    color: var(--accent-color);
}

.highlight-large {
    color: var(--highlight);
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    margin-top: 20px;
}

/* Authority / Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bento-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
    text-align: center;
}

.bento-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bento-card h3 {
    margin-bottom: 15px;
    color: var(--highlight);
    font-size: 1.2rem;
}

.bento-card p {
    color: var(--text-muted);
}

/* Pain Section */
.pain-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.8;
}

/* Kit Section */
.commands-grid {
    display: grid;
    gap: 20px;
}

.command-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.command-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.command-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
}

.command-card h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.command-card p {
    color: var(--text-muted);
    padding-left: 0;
}

/* Use Cases */
.cases-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #1a1a1a;
}

.case-situation {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
}

.case-solution {
    color: var(--accent-color);
    font-family: monospace;
    font-size: 1rem;
    background: rgba(255, 77, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
}

.stars {
    color: var(--highlight);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ddd;
}

.testimonial-card cite {
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    text-align: right;
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 8px;
    background: #0f0f0f;
    overflow: hidden;
}

.faq-question {
    background: #0f0f0f;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #151515;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(to top, #1a0b00, #050505);
    text-align: center;
    padding-bottom: 100px;
}

.guarantee-box {
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 600px;
    border: 1px solid #333;
}

.guarantee-icon {
    font-size: 3rem;
}

.final-offer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.3;
    padding: 0 10px;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.6);
}

.final-subtext {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.8rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #666;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsiveness */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 80px;
        text-align: left;
    }

    .product-image-container {
        margin: 0;
        max-width: 400px;
    }

    .hero-offer {
        align-items: flex-start;
        text-align: left;
    }
    
    .cta-button {
        width: auto;
    }
    
    .case-item {
        flex-direction: row;
        align-items: center;
    }
    
    .case-solution {
        align-self: center;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .commands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
}
