/* Pilot Analysis Page Specific Styles */

/* Main Content Styles */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1rem;
    /* Reduced top padding */
    position: relative;
    z-index: 10;
}

.pilot-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px -32px rgba(15, 23, 42, 0.35);
}

/* Background Shapes - Specific to this page */
/* .background-shapes and .shape are in core/components.css */


.shape-1 {
    top: 22%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #6b46c1, #00c6ff);
    border-radius: 50%;
}

.shape-2 {
    top: 37%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #00c6ff, #6b46c1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-3 {
    top: 49%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #6b46c1, #00c6ff);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Title Styles */
.title-container {
    text-align: center;
    margin-bottom: 2rem;
}

.title-free {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b46c1;
    margin-bottom: -0.5rem;
}

.title-main {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .title-free {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .title-main {
        font-size: 2.7em;
        font-weight: 700;
        color: var(--text-main);
    }
}

/* Benefit Items Animation */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item.active {
    opacity: 1;
    transform: translateX(0);
}

[data-theme="dark"] .pilot-faq h4 {
	color: var(--text-secondary);
}

[data-theme="dark"] .pilot-faq p {
	color: var(--text-muted);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: #6b46c1;
}

/* Cookie Consent Desktop Overrides (extracted from inline) */
/* Removed: Styles are now in layout.css */

/* Animations */
/* .fade-in is in core/components.css */


/* Progress Bar */
/* .progress-bar is in core/layout.css */

/* Accessibility Styles */
/* Accessibility styles are in core/layout.css */


/* Mobile Menu Styles */
/* Removed: Styles are now in layout.css */

/* Tally Form Dark Mode - Pure Grayscale (No Browns) */
[data-theme="dark"] #tally-form-iframe {
    filter: invert(1) grayscale(1) contrast(0.9) brightness(1.4);
    border-radius: 8px;
}