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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* Header Styles */
.header {
    background: #fff;
    color: #181818;
    padding: 24px 0;
    border-bottom: 1px solid #F5F5F5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #E63946;
    margin: 0;
}

/* Integrated Hero Section */
.hero-integrated {
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
}

/* Media Logos Section */
.media-logos-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.media-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
}

.media-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.media-logo span {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Update hero container to accommodate media logos */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    position: relative;
}

/* Left Column (60%): Hero Content */
.hero-content {
    flex: 0 0 60%;
    text-align: left;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E63946;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    height: 40px;
}

.badge i {
    color: white;
    font-size: 12px;
}

/* Right Column (40%): Progressive Form Card */
.hero-form-container {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #F5F5F5;
    width: 100%;
    padding: 24px;
    overflow: hidden;
}

/* Progressive Form */
.progressive-form {
    background: #fff;
}

.form-step {
    display: none;
    animation: fadeInSlide 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from { 
        opacity: 0; 
        transform: translateX(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.question-container {
    text-align: center;
    margin-top: 0;
}

/* Form Labels */
.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    display: block;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

/* Question Container Typography */
.question-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.form-reassurance {
    font-size: 15px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.4;
}

/* Option Buttons */
.option-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.option-btn {
    flex: 1;
    background: #E63946;
    color: #FFFFFF;
    border: none;
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.option-btn:hover {
    background: #C92C3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.option-btn.selected {
    background: #d32f2f;
    color: white;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.option-btn i {
    font-size: 1.5rem;
}

/* Input Container */
.input-container {
    position: relative;
    margin-bottom: 24px;
}

.input-container input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333333;
}

.input-container input::placeholder {
    color: #999999;
}

.input-container input:focus {
    outline: none;
    border-color: #E53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}

/* Consent Checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.consent-checkbox label {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.consent-checkbox label a {
    color: #3b82f6;
    text-decoration: underline;
}

.consent-checkbox label a:hover {
    color: #2563eb;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #0066FF;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.submit-btn.primary {
    background: #0066FF;
}

.submit-btn.primary:hover {
    background: #0052CC;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

.success-message p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

/* Trust Indicators Section */
.trust-indicators {
    background: #FFFFFF;
    padding: 60px 0;
    border-top: 1px solid #F5F5F5;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.trust-item i {
    font-size: 32px;
    color: #E63946;
    margin-bottom: 8px;
}

.trust-item span {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* Steps Section */
.steps-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step-column {
    text-align: center;
    padding: 32px 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #E63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.step-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.step-caption {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #333333;
    color: #FFFFFF;
    padding: 60px 0 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #E63946;
    margin: 0;
}

.footer-description {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.5;
}

.footer-center {
    display: flex;
    align-items: center;
}

.tcpa-disclosure {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.5;
    text-align: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E63946;
}

.footer-support {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E63946;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #C92C3C;
}

.support-link i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 32px;
        gap: 32px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Mobile Stacking - Columns stack vertically */
    .hero-container {
        flex-direction: column;
        padding: 0 32px;
        gap: 32px;
    }

    /* Mobile Media Logos */
    .media-logos-section {
        position: static;
        transform: none;
        margin: 24px 0;
        order: 2;
    }

    .media-logos-container {
        gap: 20px;
        padding: 0 16px;
    }

    .media-logo span {
        font-size: 12px;
    }

    .hero-content {
        flex: none;
        text-align: center;
        order: 1;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-form-container {
        flex: none;
        order: 3;
    }

    /* Mobile Form Adjustments */
    .form-card {
        padding: 24px 20px;
    }

    .input-container input {
        padding: 16px 16px 16px 48px;
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .option-btn {
        width: 100%;
        min-height: 44px;
        padding: 16px 24px;
        font-size: 16px;
    }

    .submit-btn {
        min-height: 44px;
        padding: 16px 32px;
        font-size: 16px;
    }

    .consent-checkbox {
        margin-bottom: 24px;
    }

    .consent-checkbox label {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Mobile Trust Elements */
    .trust-elements {
        margin-bottom: 20px;
    }

    .security-badge,
    .social-proof-rating,
    .response-time {
        margin-bottom: 8px;
    }

    /* Mobile Progress Indicator */
    .progress-indicator {
        margin-bottom: 20px;
    }

    /* Mobile Header & Footer */
    .header-content, .footer-content {
        padding: 0 24px;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Mobile Sticky CTA */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-top: 1px solid #E5E7EB;
        padding: 16px 24px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
        transform: translateY(0);
    }

    .cta-content {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }

    .cta-text {
        text-align: center;
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        min-height: 44px;
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Mobile Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-center {
        order: 3;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .footer-support {
        align-items: center;
    }

    .tcpa-disclosure {
        text-align: center;
    }

    /* Mobile Hero Badges */
    .hero-badges {
        justify-content: center;
        gap: 12px;
    }

    .badge {
        font-size: 14px;
        padding: 10px 16px;
        min-height: 40px;
    }

    .badge i {
        font-size: 10px;
    }

    /* Mobile Question Container */
    .question-container h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .form-reassurance {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .hero-container {
        padding: 0 16px;
        gap: 24px;
    }

    .hero-integrated {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .form-card {
        padding: 20px 16px;
    }

    .question-container h3 {
        font-size: 16px;
    }

    .option-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-column {
        padding: 24px 16px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-heading {
        font-size: 16px;
    }

    .step-caption {
        font-size: 14px;
    }

    /* Small Mobile Sticky CTA */
    .sticky-cta {
        padding: 12px 16px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Form Validation Styles */
.field-error {
    color: #DC2626;
    font-size: 14px;
    margin-top: 4px;
}

.form-field input.error,
.form-field select.error {
    border-color: #DC2626;
}

/* Message Styles */
.message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}

.message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

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

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

.success-message p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    padding: 16px 32px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.cta-button {
    background: #E63946;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #C92C3C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
} 

/* Trust & Security Elements */
.trust-elements {
    margin-bottom: 24px;
    text-align: center;
}

.security-badge {
    margin-bottom: 12px;
}

.security-badge span {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.social-proof-rating {
    margin-bottom: 12px;
}

.social-proof-rating span {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666666;
}

.response-time i {
    font-size: 12px;
    color: #666666;
}

.response-time span {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* Progress Indicator */
.progress-indicator {
    margin-bottom: 24px;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 8px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #0066FF;
    border-radius: 2px;
    transition: width 0.3s ease;
} 

/* Micro-animations for Form Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust Elements Animations */
.trust-elements {
    margin-bottom: 24px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.security-badge {
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.social-proof-rating {
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666666;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Progress Indicator Animation */
.progress-indicator {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Form Elements Animations */
.form-step {
    display: none;
    animation: fadeInSlide 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.question-container {
    text-align: center;
    margin-top: 0;
    animation: fadeInScale 0.6s ease-out 0.5s both;
}

.question-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Inter', 'Montserrat', sans-serif;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.form-reassurance {
    font-size: 15px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.4;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

/* Option Buttons Animation */
.option-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.option-btn {
    flex: 1;
    background: #E63946;
    color: #FFFFFF;
    border: none;
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    animation: fadeInScale 0.6s ease-out 0.9s both;
}

.option-btn:nth-child(2) {
    animation-delay: 1.0s;
}

/* Input Container Animations */
.input-container {
    position: relative;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 1.1s both;
}

.input-container:nth-child(2) {
    animation-delay: 1.2s;
}

.input-container input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333333;
}

/* Consent Checkbox Animation */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 1.3s both;
}

/* Submit Button Animation */
.submit-btn {
    width: 100%;
    background: #0066FF;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeInScale 0.6s ease-out 1.4s both;
}

/* Media Logos Animation */
.media-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.media-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    animation: fadeInScale 0.6s ease-out 0.4s both;
}

.media-logo:nth-child(2) {
    animation-delay: 0.5s;
}

.media-logo:nth-child(3) {
    animation-delay: 0.6s;
}

.media-logo:nth-child(4) {
    animation-delay: 0.7s;
}

.media-logo:nth-child(5) {
    animation-delay: 0.8s;
}

/* Hero Content Animations */
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: 'Inter', 'Montserrat', sans-serif;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E63946;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    height: 40px;
    animation: fadeInScale 0.6s ease-out 0.5s both;
}

.badge:nth-child(2) {
    animation-delay: 0.6s;
}

.badge:nth-child(3) {
    animation-delay: 0.7s;
}

/* Form Card Animation */
.form-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #F5F5F5;
    width: 100%;
    padding: 24px;
    overflow: hidden;
    animation: fadeInScale 0.8s ease-out 0.2s both;
} 

/* Performance & Accessibility - Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize animations for better performance */
.hero-content,
.form-card,
.trust-elements,
.progress-indicator,
.question-container,
.option-buttons,
.input-container,
.consent-checkbox,
.submit-btn,
.media-logos-container,
.media-logo,
.hero-badges,
.badge {
    will-change: transform, opacity;
} 

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.loading {
    background: #0052CC;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn.loading .loading-spinner {
    margin-right: 8px;
}

/* Validation Feedback */
.field-error {
    color: #DC3545;
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.3s ease-out;
}

.field-error::before {
    content: "⚠";
    font-size: 12px;
}

.field-success {
    color: #28A745;
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.3s ease-out;
}

.field-success::before {
    content: "✓";
    font-size: 12px;
}

.input-container.error input {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-container.success input {
    border-color: #28A745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.consent-checkbox.error {
    border: 1px solid #DC3545;
    border-radius: 4px;
    padding: 8px;
    background: rgba(220, 53, 69, 0.05);
}

.consent-checkbox.success {
    border: 1px solid #28A745;
    border-radius: 4px;
    padding: 8px;
    background: rgba(40, 167, 69, 0.05);
}

/* Form Validation States */
.form-field {
    position: relative;
}

.form-field.error .input-icon {
    color: #DC3545;
}

.form-field.success .input-icon {
    color: #28A745;
}

/* Real-time validation feedback */
.validation-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    animation: fadeInUp 0.3s ease-out;
}

.validation-message.error {
    color: #DC3545;
}

.validation-message.success {
    color: #28A745;
} 