/* Executive Validation - Navy/Gold Luxury Theme */
:root {
    --navy: #0a1628;
    --gold: #d4af37;
    --gold-light: #f4e5c2;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
}

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

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--gold), #e6c757);
    color: var(--navy);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#countdown {
    font-weight: 700;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #162844 100%);
    color: var(--white);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badge-top {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-badge-top img {
    height: 40px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--gold-light);
}

/* Opt-in Form */
.optin-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.optin-form input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--gold);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.optin-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.optin-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.optin-form button {
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--gold), #e6c757);
    color: var(--navy);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.optin-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.form-trust img {
    height: 20px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-proof-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10,22,40,0.95);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--gold);
}

.live-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--gray-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--gold);
}

.testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--navy);
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-item img {
    height: 50px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.trust-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #162844 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--gold-light);
}

.cta-button {
    padding: 20px 50px;
    background: linear-gradient(90deg, var(--gold), #e6c757);
    color: var(--navy);
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.3);
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gold-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .optin-form {
        flex-direction: column;
    }
    
    .testimonial-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        display: none;
    }
}