/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

/* Auto-redirect notice */
#redirect-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.redirect-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redirect-content button {
    background: rgba(255,255,255,0.2);
    border: 1px solid white;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.redirect-content button:hover {
    background: white;
    color: #ff6b35;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.derek-headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 3;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.3;
    z-index: 1;
}

.ai-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.urgency-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Proof Section */
.proof {
    padding: 80px 0;
    background: white;
    color: #333;
}

.proof h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.proof-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.proof-text strong {
    color: #ff6b35;
    font-weight: 700;
}

.proof-text em {
    color: #667eea;
    font-style: italic;
}

.proof-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.urgency h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

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

.countdown-container h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.countdown-item label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.urgency-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.secondary-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.secondary-cta:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Authority Section */
.authority {
    padding: 80px 0;
    background: white;
    color: #333;
}

.authority h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.authority-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.authority-headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.authority-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.authority-text .title {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.authority-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-proof {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.social-proof ul {
    list-style: none;
    margin-top: 15px;
}

.social-proof li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.social-proof li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
}

.pricing {
    max-width: 600px;
    margin: 0 auto;
}

.price-current {
    margin-bottom: 40px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    color: white;
}

.was {
    font-size: 1.5rem;
    opacity: 0.7;
    text-decoration: line-through;
}

.bonus {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(255,255,255,0.3);
}

.bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.policy {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.no-refund {
    color: #fff;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
}

.final-cta-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    font-size: 1.5rem;
    padding: 25px 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sub-text {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer a {
    color: #ff6b35;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .derek-headshot {
        width: 150px;
        height: 150px;
    }
    
    .hero-bg {
        width: 300px;
        height: 300px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 40px;
    }
    
    .proof-content,
    .urgency-content,
    .authority-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .final-cta-btn {
        font-size: 1.3rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stat,
    .social-proof,
    .bonus {
        padding: 20px;
    }
    
    .final-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}