:root {
    --primary-color: #002253;
    --secondary-color: #3f8bf2;
    --accent-color: #0c72ed;
    --sky-blue: #84c1fa;
    --bright-blue: #0858f7;
    --success-green: #2db92d;
    --warning-orange: #ff6a0a;
    --error-red: #ef4444;
    --dark-bg: #000e21;
    --dark-bg-alt: #1d1d1e;
    --light-bg: #f5f5f6;
    --light-bg-white: #ffffff;
    --text-dark: #262527;
    --text-secondary: #5b5b5f;
    --text-light: #F5F7FA;
    --text-muted: #aeaeb2;
    --gradient-1: linear-gradient(135deg, #0c72ed 0%, #3f8bf2 100%);
    --gradient-2: linear-gradient(135deg, #3f8bf2 0%, #84c1fa 100%);
    --gradient-3: linear-gradient(135deg, #002253 0%, #0c72ed 100%);
    --gradient-hero: linear-gradient(135deg, #002253 0%, #0c72ed 50%, #3f8bf2 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 48px rgba(0,0,0,0.1);
    --border-radius-sm: 16px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.container {
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 25s linear infinite;
    opacity: 0.5;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    animation: fadeInUp 0.8s ease;
    transition: var(--transition-smooth);
    cursor: default;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.25);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -0.5px;
    color: white;
}

.gradient-text {
    background: linear-gradient(45deg, #84c1fa, #3f8bf2, #0c72ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 4s ease infinite;
    background-size: 200% 200%;
    font-weight: 600;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, #F7F9FB 0%, #FFFFFF 100%);
}

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

.problem-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(12, 114, 237, 0.15);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(12, 114, 237, 0.35);
    background: rgba(255,255,255,0.95);
}

.problem-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.problem-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Emotional Section */
.emotional-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.emotional-section .section-title {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.emotional-text {
    font-size: 1.5rem;
    text-align: center;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

.emotional-text strong {
    color: var(--warm-coral);
    font-size: 1.75rem;
    display: block;
    margin-top: 2rem;
}

/* Solution Section */
.solution-section {
    background: white;
}

.solution-subtitle {
    font-size: 1.4rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
}

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

.feature-card {
    padding: 3rem 2.5rem;
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(12, 114, 237, 0.35);
}

.feature-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(12, 114, 237, 0.15);
}

.benefits h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

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

.benefit {
    padding: 1.75rem 1.5rem;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: default;
    font-size: 1.05rem;
    border-left: 4px solid transparent;
    color: var(--text-dark);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: #3f8bf2;
    background: white;
}

/* Archetypes Section */
.archetypes-section {
    background: linear-gradient(135deg, #0c72ed 0%, #3f8bf2 100%);
    color: white;
}

.archetypes-subtitle {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.archetypes-description {
    font-size: 1.3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.archetype-quote {
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.archetype-quote:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Form Section */
.form-section {
    background: #F8F9FA;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 4rem 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(12, 114, 237, 0.1);
}

.form-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem 1.4rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--border-radius-sm);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    font-family: inherit;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3f8bf2;
    background: white;
    box-shadow: 0 0 0 4px rgba(12, 114, 237, 0.1);
}

.form-error {
    color: #f5576c;
    padding: 1rem;
    background: #ffe0e3;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.form-success {
    color: #00b894;
    padding: 1rem;
    background: #d4f8f0;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.submit-btn {
    background: var(--gradient-hero);
    color: white;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(12, 114, 237, 0.45);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-container {
        padding: 3rem 2rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1.3rem 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }

    .testimonial-quote {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }

    .company-logo {
        max-height: 35px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits {
        padding: 2.5rem 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Success Section */
.success-section {
    padding: 3rem 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f5f5f6 0%, #e8f4fc 100%);
    padding: 3rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(12, 114, 237, 0.12);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(12, 114, 237, 0.3);
    background: rgba(255,255,255,1);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.75;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: #3f8bf2;
    font-family: Georgia, serif;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-details {
    border-top: 1px solid rgba(12, 114, 237, 0.1);
    padding-top: 1.5rem;
}

.testimonial-program {
    font-size: 0.875rem;
    color: #0c72ed;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.company-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    letter-spacing: 2px;
}


/* Contact Section */
.contact-section {
    background: var(--light-bg);
    padding: 2rem 2rem;
    text-align: center;
}

.contact-info {
    max-width: 650px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-email {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-email a {
    color: #0c72ed;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

.contact-email a:hover {
    color: #002253;
    background: rgba(12, 114, 237, 0.12);
}

.sponsorship-note {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(12, 114, 237, 0.08) 0%, rgba(63, 139, 242, 0.08) 100%);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #3f8bf2;
    line-height: 1.7;
}