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

:root {
    --primary-blue: #1A5CB9;
    --primary-blue-alt: #3366CC;
    --vibrant-yellow: #FFD700;
    --yellow-dark: #FFC700;
    --dark-grey: #333333;
    --dark-grey-alt: #222222;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --grey-bg: #E8E8E8;
    --text-dark: #222222;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(200, 200, 200, 0.03) 10px,
            rgba(200, 200, 200, 0.03) 20px
        );
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-grey);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-body {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--vibrant-yellow);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Sections */
.section {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-alt {
    background-color: var(--light-grey);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: var(--vibrant-yellow);
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.feature-list li span:last-child {
    flex: 1;
    color: var(--text-dark);
}

/* Process List */
.process-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    counter-reset: process-counter;
}

.process-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 25px;
    box-shadow: 0 4px 10px rgba(26, 92, 185, 0.3);
}

.process-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Compensation Section */
.compensation-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.section-video {
    background-color: var(--light-grey);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--dark-grey);
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
}

.video-placeholder {
    color: var(--white);
    font-size: 1.2rem;
}

/* Application Form */
.section-form {
    background-color: var(--white);
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-blue-alt);
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Radio options stacked (e.g. long list) */
.radio-stack.radio-group {
    flex-direction: column;
    gap: 12px;
}

/* Section body text (paragraph) */
.section-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Thank-you block (shown after form submit) */
.thank-you-block {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--light-grey);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.thank-you-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.thank-you-block .btn-primary,
.btn-watch-presentation {
    display: inline-block;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--vibrant-yellow);
}

.company-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links {
    font-size: 0.95rem;
}

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

    .hero-subheadline {
        font-size: 1.5rem;
    }

    .hero-body {
        font-size: 1rem;
    }

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

    .section {
        padding: 60px 20px;
    }

    .application-form {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .process-list li {
        flex-direction: column;
        text-align: center;
    }

    .process-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-headline {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .checkmark {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 1rem;
        margin-right: 15px;
    }
}
