* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    padding-top: 76px;
}

.section-divider {
    height: 1px;
    background: #e5e7eb;
}

.swiss-expand {
    width: 0;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-expand.is-visible {
    width: 100%;
}

.swiss-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.swiss-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-fade-in.is-visible {
    opacity: 1;
}

.swiss-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.swiss-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.swiss-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiss-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.site-header {
    background-color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #0066ff;
    width: 0%;
    transition: width 0.1s ease;
}

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

.logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
}

.logo-primary {
    color: #0066ff;
}

.logo-secondary {
    color: #333;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0066ff;
}

.nav-link.active {
    color: #0066ff;
}

.header-cta {
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    padding: 8px 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-lg {
    padding: 16px 32px;
}

.btn-primary {
    background-color: #0066ff;
    color: #fff;
    border-color: #0066ff;
}

.btn-primary:hover {
    background-color: #fff;
    color: #0066ff;
    border-color: #0066ff;
}

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

.page-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    padding: 80px 24px;
    text-align: center;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.page-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 auto;
    max-width: none;
}

.realisations {
    background: #fff;
    padding: 48px 24px;
}

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

.realisations-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.realisations-filter-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.realisations-filter-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
}

.realisations-filter-btn.is-active {
    background: #0066ff;
    border-color: #0066ff;
    color: #fff;
}

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

.realisations-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.realisations-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #0066ff;
}

.realisations-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f3f4f6;
}

.realisations-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.realisations-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.realisations-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.realisations-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.realisations-card-tag {
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 10px;
    background: #dbeafe;
    color: #2563eb;
}

.realisations-card-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.realisations-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0066ff;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.realisations-card-link:hover {
    color: #0052cc;
}

.realisations-card-link svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 1024px) {
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .realisations-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.realisations-card.is-hidden {
    display: none;
}

.realisations-load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: #0066ff;
    border: 2px solid #0066ff;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .btn-load-more:hover {
        background: #fff;
        color: #0066ff;
    }

    .btn-load-more:hover svg {
        transform: translateY(3px);
    }
}

.btn-load-more svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-load-more.is-hidden {
    display: none;
}

.realisations-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #4a5568;
}

.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    padding: 48px 24px;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.hero-title-highlight {
    color: #0066ff;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: #fff;
    color: #0066ff;
    border-color: #0066ff;
}

.btn-outline:hover {
    background-color: #0066ff;
    color: #fff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.features {
    background: #f9fafb;
    padding: 48px 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: #0066ff;
    flex-shrink: 0;
}

.feature-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 400;
    margin: 0;
}

/* Section Fondateurs */
.founders {
    background: #fff;
    padding: 80px 24px;
}

.founders-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center;
}

.founders-image {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.founders-image:hover {
    border-color: #0066ff;
}

.founders-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.founders-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.founders-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founders-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.founders-text strong {
    color: #1a1a1a;
}

.founders-signature {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #0066ff;
}

@media (max-width: 768px) {
    .founders-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .founders-title {
        font-size: 28px;
    }

    .founders-photo {
        max-height: 300px;
    }
}


.formules {
    background: #fff;
    padding: 48px 24px;
}

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

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

.formules-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.formules-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 auto;
    max-width: 600px;
}

.formules-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.formule-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.formule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}

.formule-card--selected:hover {
    border-color: transparent;
}

.formule-card--selected {
    background: #0066ff;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.25);
}

.formule-card--selected .formule-card-title {
    color: #fff;
}

.formule-card--selected .formule-card-price {
    color: #fff;
}

.formule-card--selected .formule-card-desc {
    color: rgba(255, 255, 255, 0.95);
}

.formule-card--selected .formule-card-features li {
    color: #fff;
}

.formule-card--selected .formule-check--blue {
    border-color: #fff;
}

.formule-card--selected .btn-formule-primary {
    background-color: #fff;
    color: #0066ff;
    border-color: #fff;
}

.formule-card--selected .btn-formule-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.formule-card-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fbbf24;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.formule-card--selected .formule-card-tag {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.formule-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.formule-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066ff;
    margin: 0;
    transition: color 0.3s ease;
}

.formule-card-price-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0.25rem 0 0;
    transition: color 0.3s ease;
}

.formule-card--selected .formule-card-price-sub {
    color: rgba(255, 255, 255, 0.85);
}

.formule-card-price sup,
.formule-card-price-sub sup {
    font-size: 0.4em;
    font-weight: 400;
}

.formule-card-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
    transition: color 0.3s ease;
}

.formule-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formule-card-features li {
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.formule-card.is-visible .formule-card-features li {
    opacity: 1;
    transform: translateX(0);
}

.formule-card.is-visible .formule-card-features li:nth-child(1) { transition-delay: 0.3s; }
.formule-card.is-visible .formule-card-features li:nth-child(2) { transition-delay: 0.4s; }
.formule-card.is-visible .formule-card-features li:nth-child(3) { transition-delay: 0.5s; }
.formule-card.is-visible .formule-card-features li:nth-child(4) { transition-delay: 0.6s; }
.formule-card.is-visible .formule-card-features li:nth-child(5) { transition-delay: 0.7s; }

.formule-check {
    display: inline-block;
    width: 14px;
    height: 8px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.formule-check--blue {
    border-color: #0066ff;
}

.formule-check--white {
    border-color: #fff;
}

.btn-formule {
    display: block;
    text-align: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-formule-primary {
    background-color: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
}

.btn-formule-primary:hover {
    background-color: #fff;
    color: #0066ff;
    border-color: #0066ff;
}

.btn-formule-outline {
    background-color: transparent;
    color: #0066ff;
    border: 2px solid #fff;
}

.btn-formule-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}

.formules-footer {
    text-align: center;
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
}

.formules-link {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
}

.formules-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .formules-cards {
        grid-template-columns: 1fr;
    }
}

.references {
    background: #f9fafb;
    padding: 48px 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.references-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.references-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.references-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 auto;
    max-width: 600px;
}

.references-cards {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 0.5rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.references-cards::-webkit-scrollbar {
    display: none;
}

.reference-card {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.reference-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}

.reference-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.reference-icon-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.reference-icon-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

.reference-icon-magenta {
    background: linear-gradient(135deg, #f472b6 0%, #c026d3 100%);
}

.reference-icon-teal {
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}

.reference-icon-green {
    background: linear-gradient(135deg, #86efac 0%, #9ca3af 100%);
}

.reference-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.reference-card-category {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.references-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-references-show-more,
.btn-references-show-less {
    background-color: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    margin: 0 0.5rem;
}

.btn-references-show-more:hover,
.btn-references-show-less:hover {
    background-color: #fff;
    color: #0066ff;
    border-color: #0066ff;
}

.site-footer {
    background-color: #090f1c;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-secondary-footer {
    color: #e5e7eb;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0066ff;
}

.footer-contact a[href^="tel"] {
    color: #9ca3af;
    text-decoration: none;
}

.footer-contact a[href^="tel"]:hover {
    color: #0066ff;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    flex-shrink: 0;
    color: #9ca3af;
}

.footer-divider {
    height: 1px;
    background-color: #374151;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    color: #e5e7eb;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #0066ff;
    color: #fff;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

@media (hover: hover) {
    .scroll-top:hover {
        background-color: #fff;
        color: #0066ff;
        transform: translateY(-4px);
    }
}

.scroll-top--visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 999;
}

@media (hover: hover) {
    .floating-cta:hover {
        background-color: #fff;
        color: #0066ff;
        transform: translateY(-4px);
    }
}

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

.floating-cta-badge {
    position: absolute;
    top: -12px;
    right: -5px;
    background-color: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    animation: breathing 2s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.portfolio {
    background: #f9fafb;
    padding: 48px 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.portfolio-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.portfolio-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 auto;
    max-width: 600px;
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
}

.portfolio-card,
.portfolio-card:hover,
.portfolio-card:focus,
.portfolio-card:visited,
.portfolio-card * {
    text-decoration: none !important;
}

.portfolio-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #0066ff;
    text-decoration: none;
}

.portfolio-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f3f4f6;
    border-radius: 20px 20px 0 0;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 1rem 1.5rem 0.5rem;
}

.portfolio-card-category {
    font-size: 0.875rem;
    color: #0066ff;
    text-decoration: none;
    margin: 0 1.5rem 1.5rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.portfolio-card-category:hover {
    color: #0066ff;
    text-decoration: underline;
}

.portfolio-card--hidden {
    display: none;
}

.portfolio-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-portfolio-show-more,
.btn-portfolio-show-less {
    background-color: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    margin: 0 0.5rem;
}

@media (hover: hover) {
    .btn-portfolio-show-more:hover,
    .btn-portfolio-show-less:hover {
        background-color: #fff;
        color: #0066ff;
        border-color: #0066ff;
    }
}

@media (max-width: 1200px) {
    .portfolio-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .portfolio-card--hidden {
        display: none !important;
    }

    .portfolio-card--mobile-hidden {
        display: none !important;
    }

    .btn-portfolio-show-more,
    .btn-portfolio-show-less {
        display: inline-block;
    }
}

.process {
    background: #fff;
    padding: 48px 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

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

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.process-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 auto;
    max-width: 600px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 55px);
    width: 0;
    height: 2px;
    background: #bfdcff;
    z-index: 0;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.process-step:nth-child(1).is-visible::after {
    width: calc(100% + 1rem - 110px);
}

.process-step:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 55px);
    width: 0;
    height: 2px;
    background: #bfdcff;
    z-index: 0;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
}

.process-step:nth-child(2).is-visible::after {
    width: calc(100% + 1rem - 110px);
}

.process-step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0066ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.process-step-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.process-step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-step:nth-child(1)::after,
    .process-step:nth-child(2)::after {
        display: none !important;
    }

    .process-step:not(:last-child)::after {
        display: block !important;
        content: '';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 200px;
        height: 1px;
        background: #bfdcff;
        top: auto !important;
        right: auto !important;
    }
}

.cta {
    background: #0066ff;
    padding: 48px 24px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    max-width: 600px;
}

.cta .btn-formule-primary {
    background-color: #fff;
    color: #0066ff;
    border-color: #fff;
    margin-top: 1rem;
    padding: 16px 40px;
}

.cta .btn-formule-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0066ff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 900px) {
    .menu-burger {
        display: flex;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        margin: 0;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .header-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .footer-menu {
        display: none;
    }

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

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        position: relative;
    }

    .footer-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #0066ff;
        margin: 0.5rem auto 0;
    }

    .footer-list {
        align-items: center;
        gap: 0.6rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .footer-social {
        gap: 1.25rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .formules-title,
    .references-title,
    .portfolio-title,
    .process-title,
    .cta-title,
    .page-hero-title {
        font-size: 28px;
    }

    .hero-description,
    .formules-description,
    .references-description,
    .portfolio-description,
    .process-description,
    .cta-description,
    .page-hero-description {
        font-size: 16px;
    }

    .page-hero-description {
        white-space: normal;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-item {
        justify-content: center;
    }

    .references-cards {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

    .floating-cta {
        left: 1rem;
        right: auto;
        bottom: 1rem;
        padding: 10px 16px;
        font-size: 0.875rem;
        width: auto;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .reference-card {
        width: 240px;
        min-width: 240px;
    }
}

.floating-cta.is-over-blue {
    background-color: #fff;
    color: #0066ff;
    border-color: #fff;
}

.scroll-top.is-over-blue {
    background-color: #fff;
    color: #0066ff;
    border-color: #fff;
}

.chatbot-toggle.is-over-blue {
    background-color: #fff;
    border-color: #fff;
}

.chatbot-toggle.is-over-blue svg {
    color: #0066ff;
}

.error-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    padding: 48px 24px;
}

.error-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: #0066ff;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: -10px;
}

.error-content {
    position: relative;
}

.error-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.error-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-actions .btn svg {
    flex-shrink: 0;
}

.error-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .error-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .error-illustration {
        order: -1;
    }

    .error-illustration svg {
        max-width: 280px;
    }

    .error-code {
        font-size: 80px;
        position: relative;
        top: auto;
        left: auto;
        display: block;
        text-align: center;
    }

    .error-title {
        font-size: 28px;
    }

    .error-description {
        font-size: 16px;
    }

    .error-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.contact-section {
    padding: 80px 24px;
    background-color: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: #0066ff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.parrainage-referral-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    font-size: 14px;
    color: #065f46;
}

.parrainage-referral-banner svg {
    flex-shrink: 0;
    color: #059669;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select-display:hover {
    border-color: #d1d5db;
}

.custom-select.is-open .custom-select-display {
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.custom-select-text {
    font-size: 16px;
    color: #9ca3af;
}

.custom-select-display.has-value .custom-select-text {
    color: #1a1a1a;
}

.custom-select-arrow {
    color: #4a5568;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.custom-select.is-open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}

.custom-select.is-open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 16px;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-select-option:first-child {
    border-radius: 10px 10px 0 0;
}

.custom-select-option:last-child {
    border-radius: 0 0 10px 10px;
}

.custom-select-option:hover {
    background: #f0f4f8;
}

.custom-select-option.is-selected {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #0066ff;
    font-weight: 500;
}

.custom-select-option.is-placeholder {
    color: #9ca3af;
}

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

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0066ff;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.5;
}

.form-checkbox label a {
    color: #0066ff;
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-contact-submit:hover {
    background: #fff;
    color: #0066ff;
    border: 2px solid #0066ff;
    transform: translateY(-2px);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-contact-submit svg {
    flex-shrink: 0;
}

.form-note {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

/* Validation Box */
.validation-box {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.validation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.validation-header svg {
    color: #0066ff;
}

.validation-terms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.validation-term {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.term-number {
    width: 20px;
    height: 20px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
}

.validation-term p {
    margin: 0;
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
}

.validation-term p strong {
    color: #1a1a1a;
}

.validation-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.validation-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #0066ff;
    cursor: pointer;
    flex-shrink: 0;
}

.validation-checkbox label {
    font-size: 0.8rem;
    color: #374151;
    line-height: 1.5;
    cursor: pointer;
}

.validation-checkbox label strong {
    color: #0066ff;
}

.btn-validation-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

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

.btn-validation-submit svg {
    flex-shrink: 0;
}

.legal-terms-summary {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 24px;
}

.legal-terms-summary p {
    font-size: 0.7rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 0.5rem;
}

.legal-terms-summary p:last-child {
    margin-bottom: 0;
}

.legal-terms-summary p strong {
    color: #4b5563;
}

.contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

.contact-success h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.contact-success p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.contact-success .btn-contact-submit {
    text-decoration: none;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: #0066ff;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

.contact-info-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    border-radius: 12px;
    color: #0066ff;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 13px;
    color: #6b7280;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-response-time {
    font-size: 14px;
    font-weight: 600;
    color: #0066ff;
    margin: 0.5rem 0 0;
}

.contact-social {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.contact-social:hover {
    border-color: #0066ff;
}

.contact-social-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #4a5568;
    transition: background 0.2s, color 0.2s;
}

.contact-social-link:hover {
    background: #0066ff;
    color: #fff;
}

.contact-benefits {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-benefits:hover {
    border-color: #0066ff;
}

.contact-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #1a1a1a;
    font-size: 14px;
}

.contact-benefit-item svg {
    color: #0066ff;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-social {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 48px 16px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .btn-contact-submit {
        width: 100%;
    }
}

.about-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    padding: 80px 24px;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #0066ff;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-badge svg {
    color: #0066ff;
}

.about-title {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-value {
    font-size: 36px;
    font-weight: 400;
    color: #0066ff;
}

.about-stat-label {
    font-size: 14px;
    color: #6b7280;
}

.about-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

.about-hero-cards .about-card:nth-child(1),
.about-hero-cards .about-card:nth-child(3) {
    transform: translateY(-16px);
}


.about-card {
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-card-blue {
    background: linear-gradient(135deg, #0066ff 0%, #3b82f6 100%);
    color: #fff;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.about-card-blue:hover {
    border-color: #fff;
}

.about-card-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #fff;
}

.about-card-light {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.about-card-light:hover {
    border-color: #0066ff;
}

.about-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-light .about-card-icon {
    color: #0066ff;
}

.about-card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.about-card-desc {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.about-card-light .about-card-desc {
    color: #6b7280;
}

.why-choose {
    padding: 80px 24px;
    background: #fff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.why-choose-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

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

.why-choose-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.why-choose-card:hover {
    border-color: #0066ff;
}

.why-choose-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.why-choose-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

.why-choose-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.team-section {
    padding: 80px 24px;
    background: #f9fafb;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.team-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.team-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

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

.team-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.team-card:hover {
    border-color: #0066ff;
}

.team-card-image {
    height: 650px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    color: #fff;
}

.team-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 0.75rem;
}

.team-card-name {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 0.25rem;
}

.team-card-role {
    font-size: 14px;
    color: #60a5fa;
    margin: 0 0 1rem;
}

.team-card-quote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 1rem;
    opacity: 0.9;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-card-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

@media (max-width: 900px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-cards {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 48px 16px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .about-stat-value {
        font-size: 28px;
    }

    .about-hero-cards {
        display: none;
    }

    .why-choose {
        padding: 48px 16px;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-subtitle {
        font-size: 16px;
    }

    .team-section {
        padding: 48px 16px;
    }

    .team-title {
        font-size: 28px;
    }

    .team-card-image {
        height: 550px;
    }

    .team-card-name {
        font-size: 28px;
    }
}

/* ========================================
   OFFERS PAGE STYLES
   ======================================== */

.tva-banner {
    background: #f3f4f6;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.tva-banner p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.offers-pricing {
    background: #fff;
    padding: 60px 24px 80px;
}

.offers-pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.offers-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #0066ff;
}

.offer-card--selected {
    background: #0066ff;
    border-color: transparent;
    color: #fff;
    z-index: 1;
    transform: scale(1.08) !important;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25) !important;
}

.offer-card--selected .btn-offer {
    background: #fff;
    color: #0066ff;
    border-color: #fff;
}

.offer-card--selected .btn-offer:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0066ff;
    border-color: #fff;
}

.offer-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fbbf24;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
}

.offer-card-badge svg {
    color: #1a1a1a;
}

.offer-card--selected .offer-card-badge {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.offer-card-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.offer-card--selected .offer-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.offer-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1a1a1a;
}

.offer-card--selected .offer-card-title {
    color: #fff;
}

.offer-card-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1.25rem;
}

.offer-card--selected .offer-card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.offer-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0066ff;
    line-height: 1;
}

.price-amount sup {
    font-size: 0.4em;
    font-weight: 400;
}

.offer-card--selected .price-amount {
    color: #fff;
}

.price-type {
    font-size: 0.9rem;
    color: #6b7280;
}

.offer-card--selected .price-type {
    color: rgba(255, 255, 255, 0.8);
}

.offer-card-subscription {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
}

.offer-card--selected .offer-card-subscription {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.subscription-notice {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066ff;
}

.offer-card--selected .subscription-notice {
    color: rgba(255, 255, 255, 0.9);
}

.subscription-engagement {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.offer-card--selected .subscription-engagement {
    color: rgba(255, 255, 255, 0.7);
}

.offer-card-body {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-includes {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.offer-card--selected .offer-includes {
    color: #fff;
}

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

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    transition: color 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.offer-card.is-visible .offer-features li {
    opacity: 1;
    transform: translateX(0);
}

.offer-card.is-visible .offer-features li:nth-child(1) { transition-delay: 0.3s; }
.offer-card.is-visible .offer-features li:nth-child(2) { transition-delay: 0.4s; }
.offer-card.is-visible .offer-features li:nth-child(3) { transition-delay: 0.5s; }
.offer-card.is-visible .offer-features li:nth-child(4) { transition-delay: 0.6s; }
.offer-card.is-visible .offer-features li:nth-child(5) { transition-delay: 0.7s; }
.offer-card.is-visible .offer-features li:nth-child(6) { transition-delay: 0.8s; }
.offer-card.is-visible .offer-features li:nth-child(7) { transition-delay: 0.9s; }
.offer-card.is-visible .offer-features li:nth-child(8) { transition-delay: 1.0s; }
.offer-card.is-visible .offer-features li:nth-child(9) { transition-delay: 1.1s; }
.offer-card.is-visible .offer-features li:nth-child(10) { transition-delay: 1.2s; }
.offer-card.is-visible .offer-features li:nth-child(11) { transition-delay: 1.3s; }

.offer-card--selected .offer-features li {
    color: #fff;
}

.offer-feature--highlight {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.offer-check {
    display: inline-block;
    width: 12px;
    height: 7px;
    border-left: 2px solid #0066ff;
    border-bottom: 2px solid #0066ff;
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.offer-card--selected .offer-check {
    border-color: #fff;
}

.offer-card-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn-offer {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-offer-primary {
    background: #0066ff;
    color: #fff;
    border-color: #0066ff;
}

.btn-offer-primary:hover {
    background: #fff;
    color: #0066ff;
    border-color: #0066ff;
}

.btn-offer-outline {
    background: #fff;
    color: #0066ff;
    border-color: #fff;
}

.btn-offer-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0066ff;
}

.offers-custom-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.offers-custom-note a {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.offers-custom-note a:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* Subscriptions Section */
.subscriptions-section {
    background: #f9fafb;
    padding: 80px 24px;
}

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

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

.subscriptions-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.subscriptions-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.subscriptions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.subscription-card {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subscription-card:hover {
    border-color: #0066ff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.1);
}

.subscription-card--popular {
    border-color: #0066ff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.subscription-card--selected {
    border-color: #0066ff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.subscription-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066ff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.subscription-card-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.subscription-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

.subscription-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
}

.subscription-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0066ff;
}

.subscription-amount sup {
    font-size: 0.5em;
    font-weight: 400;
}

.subscription-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.subscription-card-body {
    padding: 0;
}

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

.subscription-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.subscription-features li.included {
    color: #1a1a1a;
}

.subscription-features li.not-included {
    color: #9ca3af;
}

.sub-check {
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.sub-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sub-dash {
    width: 18px;
    height: 18px;
    background: #e5e7eb;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.sub-dash::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 2px;
    background: #9ca3af;
}

.subscription-upgrade {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

.subscription-card--popular .subscription-upgrade {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.subscription-card--disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(100%);
}

.subscription-card--disabled .subscription-upgrade {
    display: none;
}

.subscription-card--disabled::after {
    content: 'Non disponible avec ce pack';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #9ca3af;
    white-space: nowrap;
}

.subscriptions-options {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 10px;
    color: #6b7280;
    font-size: 0.95rem;
}

.subscriptions-options strong {
    color: #1a1a1a;
}

.subscriptions-options a {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
}

.subscriptions-options a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .subscriptions-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

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

/* Benefits Section */
.offers-benefits {
    background: #fff;
    padding: 80px 24px;
}

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

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

.offers-benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.offers-benefits-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #f0f7ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0066ff;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .offers-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offers-benefits-title {
        font-size: 1.5rem;
    }
}

/* Comparison Section */
.offers-comparison {
    background: #fff;
    padding: 80px 24px;
}

.offers-comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.offers-comparison-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

.offers-comparison-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
}

.comparison-note {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1.5rem;
    font-style: italic;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background: #f9fafb;
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-feature-col {
    width: 35%;
}

.comparison-plan-col {
    width: calc(65% / 3);
    text-align: center !important;
}

.comparison-plan-col--highlight {
    color: #0066ff !important;
}

.comparison-plan-col--active {
    color: #0066ff !important;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: outline-color 0.2s ease;
    outline: 1px solid transparent;
    outline-offset: -1px;
}

.comparison-table tbody tr:not(.comparison-category-row):hover {
    outline-color: #0066ff;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-category-row {
    background: #f9fafb;
}

.comparison-category-row td {
    font-weight: 600;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.comparison-check {
    display: inline-block;
    width: 18px;
    height: 10px;
    border-left: 3px solid #22c55e;
    border-bottom: 3px solid #22c55e;
    transform: rotate(-45deg);
}

.comparison-dash {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #d1d5db;
    vertical-align: middle;
}

/* Responsive Offers */
@media (max-width: 1024px) {
    .offers-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .offers-pricing {
        padding: 40px 16px 60px;
    }

    .offers-comparison {
        padding: 60px 16px;
    }

    .offers-comparison-title {
        font-size: 28px;
    }

    .offers-comparison-subtitle {
        font-size: 16px;
    }

    .comparison-table-wrapper {
        margin: 0 -8px;
        border-radius: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===========================================
   Cookie Consent Banner & Modal
   =========================================== */

/* Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner__icon svg {
    width: 24px;
    height: 24px;
    color: #0066ff;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.cookie-banner__description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn--primary {
    background: #0066ff;
    color: #fff;
    border-color: #0066ff;
}

.cookie-btn--primary:hover {
    background: #fff;
    color: #0066ff;
}

.cookie-btn--secondary {
    background: #f9fafb;
    color: #4a5568;
    border-color: #e5e7eb;
}

.cookie-btn--secondary:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}

.cookie-btn--outline {
    background: transparent;
    color: #0066ff;
    border-color: #0066ff;
}

.cookie-btn--outline:hover {
    background: #0066ff;
    color: #fff;
}

/* Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-modal__container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-modal.is-visible .cookie-modal__container {
    transform: scale(1) translateY(0);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-modal__close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f9fafb;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cookie-modal__close:hover {
    background: #e5e7eb;
}

.cookie-modal__close svg {
    width: 20px;
    height: 20px;
    color: #4a5568;
}

.cookie-modal__body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal__intro {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Cookie Options */
.cookie-option {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-option__info {
    flex: 1;
}

.cookie-option__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cookie-option__description {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.cookie-option__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-option__badge {
    font-size: 11px;
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

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

.cookie-toggle__slider {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.cookie-toggle__slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: #0066ff;
}

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

.cookie-toggle--disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-toggle--disabled .cookie-toggle__slider {
    background: #0066ff;
}

.cookie-toggle--disabled .cookie-toggle__slider::before {
    transform: translateX(24px);
}

/* Modal Footer */
.cookie-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal__container {
        width: 95%;
        max-height: 85vh;
    }

    .cookie-modal__header,
    .cookie-modal__body,
    .cookie-modal__footer {
        padding: 16px;
    }

    .cookie-option__header {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-option__toggle {
        align-self: flex-start;
    }

    .cookie-modal__footer {
        flex-direction: column;
    }
}

/* ===========================================
   Chatbot Widget
   =========================================== */

.chatbot {
    position: fixed;
    bottom: 2rem;
    right: calc(2rem + 66px);
    z-index: 9998;
    font-family: inherit;
}

.chatbot-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066ff;
    border: 2px solid #0066ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

@media (hover: hover) {
    .chatbot-toggle:hover {
        background-color: #fff;
        color: #0066ff;
        transform: translateY(-4px);
    }

    .chatbot-toggle:hover svg {
        color: #0066ff;
    }
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
    color: #fff;
    transition: all 0.3s ease;
}

.chatbot-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chatbot--open .chatbot-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chatbot--open .chatbot-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatbot-pulse 2s infinite;
}

@keyframes chatbot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chatbot--open .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.chatbot-header-title {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.chatbot-header-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-header-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-close svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.chatbot-message {
    display: flex;
    max-width: 85%;
    animation: chatbot-message-in 0.3s ease;
}

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

.chatbot-message--user {
    align-self: flex-end;
}

.chatbot-message--bot {
    align-self: flex-start;
}

.chatbot-message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.chatbot-message--user .chatbot-message-content {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chatbot-message--bot .chatbot-message-content {
    background: #fff;
    color: #1a1a1a;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Typing indicator */
.chatbot-typing .chatbot-message-content {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 20px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chatbot-form {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: #0066ff;
}

.chatbot-input::placeholder {
    color: #94a3b8;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.chatbot-send svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .chatbot {
        bottom: 1rem;
        right: calc(1rem + 56px);
    }

    .chatbot-toggle {
        width: 44px;
        height: 44px;
    }

    .chatbot-toggle svg {
        width: 22px;
        height: 22px;
    }

    .chatbot-window {
        position: fixed;
        width: calc(100vw - 32px);
        height: 70vh;
        max-height: 500px;
        left: 16px;
        right: 16px;
        bottom: 70px;
    }
}

/* ===========================================
   Legal Pages (Mentions, CGV, Privacy)
   =========================================== */

.legal-content {
    padding: 60px 24px 80px;
    background: #fff;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0066ff;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #0066ff;
    border-radius: 50%;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #0066ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #0052cc;
    text-decoration: underline;
}

.legal-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-section em {
    color: #6b7280;
    font-style: italic;
}

.legal-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-warning h4 {
    color: #92400e;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.legal-warning p {
    color: #78350f;
    margin: 0;
    font-size: 0.95rem;
}

.legal-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px 60px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}

/* ===== FAQ Section ===== */

.faq-section {
    background: #fff;
    padding: 60px 24px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.swiss-fade-up {
    transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
    border-color: #0066ff;
}

.faq-item--open {
    border-color: #0066ff;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: left;
    font-family: inherit;
    line-height: 1.5;
    gap: 16px;
}

.faq-question:hover {
    color: #0066ff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #9ca3af;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-icon--open {
    transform: rotate(180deg);
    stroke: #0066ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 16px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 0.95rem;
    }
}

/* =============================================
   PARRAINAGE PAGE STYLES
   ============================================= */

/* Hero Section */
.parrainage-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    padding: 80px 24px;
}

.parrainage-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.parrainage-hero-title {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.parrainage-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.parrainage-hero-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 0;
}

.parrainage-hero-card {
    background: #fff;
    border: 2px solid #0066ff;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    min-width: 200px;
}

.parrainage-hero-card-value {
    font-size: 32px;
    font-weight: 600;
    color: #0066ff;
    display: block;
}

.parrainage-hero-card-label {
    font-size: 14px;
    color: #4a5568;
    margin-top: 8px;
    display: block;
}

.parrainage-hero-highlight {
    display: inline-block;
    background: #fff;
    border: 2px solid #0066ff;
    border-radius: 16px;
    padding: 14px 40px;
    margin-top: 24px;
    text-align: center;
    min-width: 200px;
}

.parrainage-hero-highlight span {
    font-size: 16px;
    font-weight: 500;
    color: #0066ff;
}

/* Rewards Section */
.parrainage-rewards {
    background: #fff;
    padding: 50px 24px;
}

.parrainage-rewards-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* How It Works Section */
.parrainage-howto {
    background: #f9fafb;
    padding: 80px 24px;
}

.parrainage-howto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.parrainage-howto-header {
    text-align: center;
    margin-bottom: 60px;
}

.parrainage-howto-title {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
}

.parrainage-howto-subtitle {
    font-size: 18px;
    color: #4a5568;
}

.parrainage-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.parrainage-step {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.parrainage-step:hover {
    border-color: #0066ff;
}

.parrainage-step-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    color: #0066ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.parrainage-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.parrainage-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

/* Benefits Section */
.parrainage-benefits {
    background: #fff;
    padding: 80px 24px;
}

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

.parrainage-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.parrainage-benefits-title {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
}

.parrainage-benefits-subtitle {
    font-size: 18px;
    color: #4a5568;
}

.parrainage-benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.parrainage-benefit-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
}

.parrainage-benefit-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.parrainage-benefit-border rect {
    x: 1px;
    y: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    rx: 15px;
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 2;
    stroke-dasharray: 12 6;
    transition: stroke 0.3s ease;
}

.parrainage-benefit-card:hover .parrainage-benefit-border rect {
    stroke: #0066ff;
    animation: dash-move 15s linear infinite;
}

@keyframes dash-move {
    to {
        stroke-dashoffset: -1000;
    }
}

.parrainage-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.parrainage-benefit-icon--parrain {
    background: #fff;
    border: 2px solid #0066ff;
    color: #0066ff;
}

.parrainage-benefit-icon--filleul {
    background: #fff;
    border: 2px solid #0066ff;
    color: #0066ff;
}

.parrainage-benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

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

.parrainage-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #4a5568;
}

.parrainage-benefit-list li:last-child {
    margin-bottom: 0;
}

.parrainage-check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Start Parrainage Section */
.parrainage-start {
    background: #f9fafb;
    padding: 80px 24px;
}

.parrainage-start-container {
    max-width: 700px;
    margin: 0 auto;
}

.parrainage-start-header {
    text-align: center;
    margin-bottom: 40px;
}

.parrainage-start-title {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
}

.parrainage-start-subtitle {
    font-size: 18px;
    color: #4a5568;
}

.parrainage-start-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
}

.parrainage-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.parrainage-link-input-wrapper,
.parrainage-email-input-wrapper {
    display: flex;
    gap: 12px;
}

.parrainage-link-input,
.parrainage-email-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #111;
    background: #f9fafb;
}

.parrainage-link-input:focus,
.parrainage-email-input:focus {
    border-color: #0066ff;
    outline: none;
}

.parrainage-copy-btn,
.parrainage-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.parrainage-copy-btn:hover,
.parrainage-send-btn:hover {
    background: #0052cc;
}

.parrainage-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.parrainage-divider::before,
.parrainage-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.parrainage-divider span {
    padding: 0 16px;
    font-size: 14px;
    color: #6b7280;
}

.parrainage-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parrainage-form-group {
    display: flex;
    flex-direction: column;
}

.parrainage-form-input {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #111;
    background: #f9fafb;
    transition: border-color 0.3s ease;
}

.parrainage-form-input:focus {
    border-color: #0066ff;
    outline: none;
}

.parrainage-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #0066ff;
    color: #fff;
    border: 2px solid #0066ff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.parrainage-submit-btn:hover {
    background: #fff;
    color: #0066ff;
}

.parrainage-flash {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.parrainage-flash--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.parrainage-flash--info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.parrainage-code-display {
    margin-top: 12px;
    font-size: 14px;
    color: #4a5568;
}

.parrainage-tip {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: #fffbeb;
    border-radius: 8px;
}

.parrainage-tip svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.parrainage-tip p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.parrainage-tip strong {
    font-weight: 600;
}

/* FAQ Section */
.parrainage-faq-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.parrainage-faq-title {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    margin-bottom: 12px;
}

.parrainage-faq-subtitle {
    font-size: 18px;
    color: #4a5568;
}

/* CTA Section */
.parrainage-cta {
    background: #0066ff;
    padding: 48px 24px;
    text-align: center;
}

.parrainage-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.parrainage-cta-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.parrainage-cta-description {
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 32px;
}

.parrainage-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-parrainage {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-parrainage-primary {
    background: #fff;
    color: #0066ff;
}

.btn-parrainage-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-parrainage-outline {
    background: transparent;
    color: #fff;
}

.btn-parrainage-outline:hover {
    background: #fff;
    color: #0066ff;
}

/* Responsive Parrainage */
@media (max-width: 1024px) {
    .parrainage-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .parrainage-hero-cards {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .parrainage-hero-card {
        flex: 1;
        min-width: 0;
        padding: 20px 16px;
    }

    .parrainage-howto-title,
    .parrainage-benefits-title,
    .parrainage-start-title,
    .parrainage-faq-title,
    .parrainage-cta-title {
        font-size: 28px;
    }

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

    .parrainage-link-input-wrapper,
    .parrainage-email-input-wrapper {
        flex-direction: column;
    }

    .parrainage-copy-btn,
    .parrainage-send-btn {
        justify-content: center;
    }

    .parrainage-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-parrainage {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
