/* --- Brand Colors & Basic Settings --- */
:root {
    --navy-blue: #001846;
    --orange: #FF6600;
    --white: #FFFFFF;
    --light-gray: #f5f5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--navy-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
}

/* --- Hero Section (Dark Theme) --- */
.hero-section {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.slogan {
    display: inline-block;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-section p.sub-headline {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px auto;
    color: #d1d8e0;
}

.hero-image {
    max-width: 100%;
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 30px;
    border: 4px solid rgba(255,255,255,0.1);
}

/* --- Call To Action Button (Clickable & Animated) --- */
.cta-button {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.5);
    background-color: #e65c00;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.guarantee-text {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 15px;
    display: block;
}

/* --- Value & Reviews Section (Light Theme) --- */
.value-section {
    background-color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.value-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.anti-sell {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.feature-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: left;
    border-left: 4px solid var(--orange);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

/* Reviews */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
        
.review-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.review-box p {
    font-style: italic;
    margin-bottom: 10px;
    color: #4a5568;
}

.review-box span {
    font-weight: 600;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
}

/* --- Urgency Section (Dark Theme) --- */
.urgency-section {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.urgency-section p {
    margin-bottom: 30px;
    color: #d1d8e0;
}

.progress-container {
    max-width: 500px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.progress-text span.orange {
    color: var(--orange);
}

.progress-bar-bg {
    background-color: rgba(255,255,255,0.2);
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background-color: var(--orange);
    height: 100%;
    width: 85%;
    border-radius: 10px;
}

.timer {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--orange);
    margin: 20px 0 40px 0;
    letter-spacing: 2px;
}

/* --- Footer --- */
footer {
    background-color: #000c24; 
    color: #718096;
    text-align: center;
    padding: 40px 20px;
}

footer h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive */
@media(max-width: 768px) {
    .hero-section h1 { font-size: 1.8rem; }
    .timer { font-size: 2.2rem; }
    .features-grid { flex-direction: column; align-items: center; }
    .feature-card { width: 100%; }
} 