/* Color Variables - Based on Logo */
:root {
    --primary-blue: #1A4D8D;
    --secondary-blue: #3498DB;
    --accent-orange: #F08D2D;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gradient: linear-gradient(135deg, #1A4D8D 0%, #3498DB 100%);
    --shadow-sm: 0 2px 8px rgba(26, 77, 141, 0.1);
    --shadow-md: 0 4px 16px rgba(26, 77, 141, 0.15);
    --shadow-lg: 0 8px 32px rgba(26, 77, 141, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--accent-orange);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    background: #E07A1F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent-orange);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #E07A1F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    padding: 0.85rem 1.8rem;
    min-height: 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 77, 141, 0.8);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.btn-contact:hover {
    background: #163f73;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Явно фиксируем вид вторичной CTA-кнопки для <button> */
.hero-cta .btn-contact {
    appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    font-family: inherit;
}

/* Hero Card */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-header {
    background: var(--bg-gradient);
    padding: 1rem;
    display: flex;
    align-items: center;
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.card-content {
    padding: 2rem;
}

.ai-analysis {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.analysis-icon {
    font-size: 2.5rem;
}

.analysis-text {
    flex: 1;
}

.analysis-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.analysis-progress {
    background: var(--bg-light);
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: var(--accent-orange);
    height: 100%;
    width: 75%;
    border-radius: 8px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0%, 100% { width: 60%; }
    50% { width: 90%; }
}

.analysis-status {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge {
    background: #D4EDDA;
    color: #155724;
}

.feature-badge-upcoming {
    background: #FFF3CD;
    color: #856404;
}

.feature-available {
    border-left: 4px solid #28A745;
}

.feature-upcoming {
    opacity: 0.85;
    border-left: 4px solid var(--accent-orange);
}

.features-upcoming {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(26, 77, 141, 0.1);
}

.upcoming-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.upcoming-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-blue);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 3rem;
    display: block;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary-blue);
    font-weight: 300;
    flex-shrink: 0;
    align-self: center;
    margin: 0 0.5rem;
}

/* Report Example Section */
.report-example {
    padding: 6rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.report-container {
    max-width: 1000px;
    margin: 0 auto;
}

.report-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.report-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: var(--shadow-md);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(26, 77, 141, 0.1);
}

.report-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.report-icon {
    font-size: 1.5rem;
}

/* Вердикт */
.report-verdict {
    background: linear-gradient(135deg, rgba(26, 77, 141, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-left: 4px solid var(--accent-orange);
}

.verdict-badge {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.verdict-conditional {
    background: #FFF3CD;
    color: #856404;
}

.verdict-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verdict-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-label {
    font-weight: 600;
    color: var(--text-dark);
}

.rating-value {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-high {
    background: #F8D7DA;
    color: #721C24;
}

.verdict-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Критические факторы */
.report-critical {
    border-left: 4px solid #DC3545;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.report-list li:last-child {
    border-bottom: none;
}

.report-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.report-list-compact li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.report-list-compact li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.report-more {
    margin-top: 1rem;
    padding-top: 1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Требования и Риски в сетке */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.report-requirements {
    border-left: 4px solid var(--secondary-blue);
}

.report-risks {
    border-left: 4px solid #DC3545;
}

/* Заказчик */
.report-customer {
    border-left: 4px solid var(--primary-blue);
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.customer-detail {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
}

.detail-value {
    color: var(--text-light);
    flex: 1;
}

/* Продукция */
.report-product {
    border-left: 4px solid var(--accent-orange);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-detail {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Источники данных */
.report-sources {
    border-left: 4px solid var(--secondary-blue);
}

.sources-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 2rem;
}

.sources-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.sources-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sources-list li {
    background: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.source-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.source-tag {
    font-size: 0.85rem;
    color: var(--text-light);
}

.sources-excerpts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.excerpt {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.excerpt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.excerpt-file {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(26, 77, 141, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.excerpt-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.excerpt-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.excerpt-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Метаданные */
.report-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.meta-value {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA после отчета */
.report-cta {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 20px;
    margin-top: 3rem;
}

.report-cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--bg-gradient);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 350px;
}

.visual-metric {
    text-align: center;
    color: white;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.contact-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(26, 77, 141, 0.15);
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-note {
    margin-top: 0.9rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.modal-overlay.is-open {
    display: flex;
}

.modal {
    width: 100%;
    max-width: 640px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    position: relative;
    max-height: 90vh;
    overflow: auto;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
}

.modal-close:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.modal-form.contact-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

body.modal-open {
    overflow: hidden;
}

/* Toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: rgba(26, 77, 141, 0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: min(560px, calc(100vw - 32px));
    width: fit-content;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 3000;
    font-weight: 600;
    text-align: center;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.toast.toast-error {
    background: rgba(220, 53, 69, 0.95);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input:not([type="checkbox"]),
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    margin-bottom: 1rem;
    text-align: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

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

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    display: block;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-blue);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 77, 141, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.logo-small {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-privacy {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
}

.footer-privacy .footer-link {
    color: rgba(255, 255, 255, 0.7);
}

.footer-privacy .footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-links a:not(.btn-nav) {
        display: none;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .sources-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .step-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }

    .step-arrow {
        display: none;
    }

    .report-card {
        padding: 1.5rem;
    }

    .report-card-title {
        font-size: 1.3rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .report-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .customer-detail,
    .product-detail {
        flex-direction: column;
    }

    .detail-label {
        min-width: auto;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 4rem;
    }

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

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .btn-contact {
        padding: 0.8rem 1.1rem;
        font-size: 0.95rem;
        min-height: 46px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .report-card {
        padding: 1.2rem;
    }

    .report-card-title {
        font-size: 1.2rem;
    }

    .report-cta-text {
        font-size: 1.1rem;
    }

    .features-upcoming {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .upcoming-title {
        font-size: 1.5rem;
    }

    .feature-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .step-card {
        flex: 1 1 100%;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo {
        height: 40px;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .footer-main {
        gap: 1.5rem;
    }
}
