/* CSS Variables for Brand Colors */
:root {
    --primary-blue: #0066B2;
    --accent-green: #2ECC71;
    --background-white: #FFFFFF;
    --background-light: #f7f9fb;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #888888;
    --border-light: #e0e0e0;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, #27ae60 100%);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.accent-blue { color: var(--primary-blue); }
.accent-green { color: var(--accent-green); }

/* Header */
.header {
    background: var(--background-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge {
    background: var(--gradient-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse-glow 2s infinite;
}

/* CEO Card */
.ceo-card {
    background: var(--background-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.ceo-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-blue);
}

.ceo-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ceo-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.ceo-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--background-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--background-light);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-solution {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
}

.solution-text {
    font-size: 1.2rem;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: var(--background-light);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.value-prop i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-top: 0.5rem;
}

.consultation-preview {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.consultation-preview h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.consultation-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.consultation-benefits i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Credibility Section */
.credibility-section {
    padding: 80px 0;
    background: var(--background-light);
}

.credibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credibility-stats {
    text-align: center;
}

.big-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.big-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.big-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
}

.mini-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.credibility-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--background-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

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

.urgency-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.urgency-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.urgency-stat {
    text-align: center;
}

.urgency-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.urgency-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.urgency-warning {
    color: #ffeb3b;
    font-weight: 600;
}

.urgency-cta {
    text-align: center;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: var(--background-light);
    text-align: center;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-gray);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.guarantee i {
    color: var(--accent-green);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.pulse {
    animation: pulse-glow 2s infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .solution-content,
    .credibility-content,
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .problems-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .ceo-photo {
        width: 150px;
        height: 150px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .urgency-number {
        font-size: 2.5rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}