/* ============================================
   MonEntrepriseFacile - Homepage Enhanced Styles
   ============================================ */

/* ============================================
   Liseré Tricolore
   ============================================ */

.tricolore-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    display: flex;
    z-index: 1001;
}

.tricolore-blue {
    flex: 1;
    background: #002654;
}

.tricolore-white {
    flex: 1;
    background: #ffffff;
}

.tricolore-red {
    flex: 1;
    background: #CE1126;
}

/* Adjust navbar for tricolore */
.navbar-luxury {
    top: 4px !important;
    transition: all 0.3s ease;
}

.navbar-luxury.scrolled {
    background: rgba(10, 15, 26, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Horizontal Navigation Menu
   ============================================ */

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

.nav-horizontal-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-horizontal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-horizontal-link:hover {
    color: var(--gold-primary);
}

.nav-horizontal-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.btn-menu-mobile {
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--gold-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-menu-mobile:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold-primary);
}

.mobile-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--gold-primary);
}

/* ============================================
   Enhanced Hero Section
   ============================================ */

.hero-section-enhanced {
    min-height: calc(100vh - 4px);
    padding-top: 100px;
}

.french-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.french-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--gold-primary);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002654, #ffffff, #CE1126);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1) 0%, var(--navy-darker) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-darkest);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

/* ============================================
   French Solution Section
   ============================================ */

.french-section {
    padding: 6rem 0;
    background: var(--navy-darker);
    position: relative;
    overflow: hidden;
}

.french-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(0, 38, 84, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(206, 17, 38, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.french-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.french-text .lead {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.french-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.french-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.french-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.french-feature-icon i {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.french-feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.french-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.french-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.france-map-container {
    position: relative;
}

.france-badge-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy-darkest));
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tricolore-vertical {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    opacity: 1;
}

.tv-blue, .tv-white, .tv-red {
    flex: 1;
}

.tv-blue { background: #002654; }
.tv-white { background: #ffffff; }
.tv-red { background: #CE1126; }

.france-badge-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.france-badge-content i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.france-badge-content span {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.france-badge-content strong {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.tech-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-badge {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tech-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.tech-origin {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy-darker));
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-darkest);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.step-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-primary), rgba(201, 169, 98, 0.2));
    margin: 0 auto;
    border-radius: 3px;
}

/* ============================================
   Eligibility Section
   ============================================ */

.eligibility-section {
    padding: 6rem 0;
    background: var(--navy-darker);
}

.eligibility-card {
    max-width: 800px;
    max-height: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002654, #ffffff, #CE1126);
}

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

.eligibility-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.eligibility-header p {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
}

.eligibility-question {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.eligibility-question.active {
    opacity: 1;
    transform: translateY(0);
}

.eligibility-question.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.eligibility-question.d-none {
    display: none;
}

.eq-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-darkest);
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.eligibility-question h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-align: center;
}

.eq-hint {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.eq-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eq-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.eq-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(26, 39, 68, 0.5);
    border: 2px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.eq-option i {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.eq-option:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.eq-option-no {
    border-color: rgba(139, 0, 0, 0.3);
}

.eq-option-no i {
    color: #f0a8a8;
}

.eq-option-no:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.5);
}

.eq-option-maybe {
    border-color: rgba(184, 134, 11, 0.3);
}

.eq-option-maybe i {
    color: #f0d78c;
}

.eq-option-maybe:hover {
    background: rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.5);
}

/* Eligibility Results */
.eligibility-result {
    text-align: center;
}

.result-content {
    animation: fadeInUp 0.5s ease;
}

.result-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon i {
    font-size: 3rem;
}

.result-success {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.3), rgba(45, 106, 79, 0.1));
    border: 2px solid rgba(45, 106, 79, 0.5);
}

.result-success i {
    color: #7dd3a8;
}

.result-warning {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(184, 134, 11, 0.1));
    border: 2px solid rgba(184, 134, 11, 0.5);
}

.result-warning i {
    color: #f0d78c;
}

.result-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.result-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.result-hint {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem !important;
}

/* ============================================
   Loading Enhancement
   ============================================ */

.loading-french-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.loading-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* ============================================
   Footer Section
   ============================================ */

.footer-section {
    background: var(--navy-darkest);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-brand .navbar-brand-luxury {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-elegant);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-badge i {
    color: var(--gold-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.tricolore-footer {
    display: flex;
    width: 40px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
}

.tf-blue, .tf-white, .tf-red {
    flex: 1;
}

.tf-blue { background: #002654; }
.tf-white { background: #ffffff; }
.tf-red { background: #CE1126; }

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 991.98px) {
    .french-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .french-visual {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .tricolore-banner {
        height: 3px;
    }
    
    .navbar-luxury {
        top: 3px !important;
    }
    
    .hero-section-enhanced {
        min-height: calc(100vh - 3px);
        padding-top: 80px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .services-section,
    .french-section,
    .how-it-works-section,
    .eligibility-section {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .step-icon {
        display: none;
    }
    
    .eligibility-card {
        padding: 2rem 1.5rem;
    }
    
    .eq-options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .french-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .eq-option {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .france-badge-large {
        width: 160px;
        height: 160px;
    }
    
    .france-badge-content i {
        font-size: 2rem;
    }
    
    .france-badge-content span {
        font-size: 0.8rem;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.services-section,
.french-section,
.how-it-works-section {
    opacity: 1;
}

.service-card,
.french-feature,
.step-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }


.french-feature:nth-child(1) { animation-delay: 0.1s; }
.french-feature:nth-child(2) { animation-delay: 0.2s; }
.french-feature:nth-child(3) { animation-delay: 0.3s; }
.french-feature:nth-child(4) { animation-delay: 0.4s; }

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(3) { animation-delay: 0.2s; }
.step-item:nth-child(5) { animation-delay: 0.3s; }

/* =====================================================
   PRICING SECTION — navy-gold luxury
   ===================================================== */
.pricing-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0f1e 0%, #0d1525 60%, #0a0f1e 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(184, 145, 68, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Billing toggle */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.pricing-toggle-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
}

.pricing-toggle-label.active {
    color: #c9a84c;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 34px;
    transition: 0.3s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #c9a84c;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-badge-annual {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Cards */
.pricing-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 32px 36px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    border-color: rgba(201, 168, 76, 0.25);
}

/* Featured card */
.pricing-card.pricing-featured {
    border-color: rgba(201, 168, 76, 0.45);
    background: linear-gradient(145deg, rgba(201, 168, 76, 0.07) 0%, rgba(201, 168, 76, 0.02) 100%);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(-8px);
}

.pricing-card.pricing-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.4), 0 32px 80px rgba(0,0,0,0.5);
}

/* Featured ribbon */
.pricing-ribbon {
    display: none;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    color: #0a0f1e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 0 0 12px 12px;
}

.pricing-featured .pricing-ribbon {
    display: block;
}

/* Card header */
.pricing-card-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-tier-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #c9a84c;
    flex-shrink: 0;
}

.pricing-featured .pricing-tier-icon {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
    border-color: rgba(201, 168, 76, 0.5);
}

.pricing-tier-info h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.pricing-featured .pricing-tier-info h4 {
    color: rgba(201, 168, 76, 0.8);
}

.pricing-tier-info p {
    margin: 3px 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* Price */
.pricing-price-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c9a84c;
    padding-bottom: 6px;
}

.pricing-amount {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    padding-bottom: 10px;
}

.pricing-annual-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: rgba(201, 168, 76, 0.7);
    height: 18px;
}

.pricing-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* Features list */
.pricing-features-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.45;
}

.pricing-features-list li .feat-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.55rem;
    color: #c9a84c;
}

.pricing-features-list li.feat-highlight {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.pricing-features-list li.feat-highlight .feat-icon {
    background: rgba(201, 168, 76, 0.22);
    border-color: rgba(201, 168, 76, 0.55);
    color: #e8c96a;
}

/* Separator label */
.pricing-features-sep {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 1.0);
    margin: 14px 0 6px;
    padding-left: 2px;
}

/* CTA Button */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #c9a84c;
}

.btn-pricing-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
    color: #e8c96a;
}

.btn-pricing-gold {
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
    background-size: 200% 100%;
    color: #0a0f1e;
}

.btn-pricing-gold:hover {
    background-position: right center;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
    color: #0a0f1e;
    transform: translateY(-1px);
}

.btn-pricing-solid {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}

.btn-pricing-solid:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Cumulative note */
.pricing-cumul-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(201, 168, 76, 0.6);
    margin-top: 12px;
    justify-content: center;
}

.pricing-cumul-note i {
    font-size: 0.65rem;
}

/* Bottom note */
.pricing-footer-note {
    text-align: center;
    margin-top: 52px;
}

.pricing-footer-note p {
    font-size: 0.85rem;
    color: rgba(255,255,255,1.0);
}

.pricing-footer-note .guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,1.0);
}

.guarantee-badge i {
    color: #c9a84c;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .pricing-card.pricing-featured {
        transform: none;
        order: -1;
    }
    .pricing-card.pricing-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 70px 0 90px;
    }
}