/* ========================================
   LANDING PAGE FISCALITÉ - KIREVA INVEST
   ======================================== */

:root {
    --fiscal-primary: #10b981;
    --fiscal-primary-light: rgba(16, 185, 129, 0.1);
    --fiscal-primary-dark: #059669;
    --fiscal-secondary: #447CAC;
    --fiscal-warning: #f59e0b;
}

/* Hero Section */
.fiscal-hero {
    min-height: 90vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 50%);
}

.fiscal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.fiscal-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.fiscal-gradient-1 {
    top: -10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.fiscal-gradient-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(68, 124, 172, 0.15) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

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

.fiscal-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fiscal-badge-unique {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--fiscal-primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid var(--fiscal-primary);
    border-radius: 50px;
    color: var(--fiscal-primary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.fiscal-badge-unique svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.fiscal-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.fiscal-hero-title .accent {
    background: linear-gradient(135deg, var(--fiscal-primary) 0%, var(--fiscal-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 3rem;
}

/* Preview Screenshots */
.fiscal-preview-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

.preview-screenshots {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.screenshot-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.screenshot-caption strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.screenshot-caption span {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--fiscal-primary) 0%, var(--fiscal-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.preview-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.preview-cta svg {
    width: 22px;
    height: 20px;
}

/* Trust Badges */
.fiscal-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--fiscal-primary);
}

/* Section Commune */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(68, 124, 172, 0.1);
    color: var(--fiscal-secondary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-eyebrow.success {
    background: var(--fiscal-primary-light);
    color: var(--fiscal-primary-dark);
}

.section-header-centered h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Problem Section */
.fiscal-problem-section {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solution Section */
.fiscal-solution-section {
    padding: 6rem 0;
}

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

.solution-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--fiscal-primary);
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Screenshot Mockup */
.screenshot-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

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

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.mockup-body {
    padding: 3rem;
}

.mockup-comparison {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.mockup-col {
    text-align: center;
}

.mockup-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.mockup-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.mockup-amount.bad {
    color: #ef4444;
}

.mockup-amount.good {
    color: var(--fiscal-primary);
}

.mockup-detail {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.mockup-vs {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #9ca3af;
}

.mockup-verdict {
    text-align: center;
    padding: 1.5rem;
    background: var(--fiscal-primary-light);
    border-radius: 8px;
    color: #374151;
    line-height: 1.8;
}

/* Coverage Section */
.fiscal-coverage-section {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.coverage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.coverage-card.featured {
    border: 2px solid var(--fiscal-primary);
}

.coverage-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--fiscal-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.coverage-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fiscal-primary);
    font-weight: 700;
}

/* Testimonials Section */
.fiscal-testimonials-section {
    padding: 6rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fiscal-primary) 0%, var(--fiscal-secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-location {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* FAQ Section */
.fiscal-faq-section {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--fiscal-primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.fiscal-cta-section {
    padding: 6rem 0;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--fiscal-primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    border: 2px solid var(--fiscal-primary);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-card > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-feature svg {
    color: var(--fiscal-primary);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--fiscal-primary) 0%, var(--fiscal-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.cta-reassurance {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

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

    .fiscal-hero-subtitle {
        font-size: 1.0625rem;
    }

    .fiscal-preview-card {
        padding: 2rem 1.5rem;
    }

    .preview-screenshots {
        gap: 2rem;
    }

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

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }
}
