/* Désactiver le hero sticky sur cette page et ajuster l'espacement */
.hero-banner {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
    margin-bottom: 0 !important;
    /* Pas de marge pour contrôler l'espacement via la sous-nav */
}

/* Barre de progression de lecture */
.reading-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 100000;
}

.reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    transition: width 80ms linear;
}

/* Sous-navigation sticky (intégrée dans la section bleue) */
.subnav {
    position: sticky;
    top: 64px;
    z-index: 2000;
    background: transparent;
    border: none;
    padding: 0;
    margin: 50px auto 100px auto;
    max-width: 1400px;
}

.subnav .container-content {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.subnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    border: 1.5px solid #e0e0e0;
    transition: all 160ms ease;
    background: #fff;
}

.subnav a:hover,
.subnav a.active {
    color: #fff;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}

/* Sous-nav intégrée à la hero (alignée à droite, centrée verticalement) */
.hero-subnav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.hero-subnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    border: 1.5px solid #e0e0e0;
    transition: all 160ms ease;
    background: #fff;
}

.hero-subnav a:hover,
.hero-subnav a.active {
    color: #fff;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}

/* Variante: sous-nav flottant AU-DESSUS du premier bloc (over-card) */
.subnav--over-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3000;
    margin: 0;
}

.subnav--over-card .container-content {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.subnav--over-card a {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-weight: 700;
}

.subnav--over-card a:hover,
.subnav--over-card a.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(30, 64, 175, 0.35);
}

/* Styles spécifiques au Bureau des Entreprises */

main {
    width: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

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

/* Section titles communes */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Section Présentation BDE */
.bde-presentation {
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 40px 2rem 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.bde-presentation::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: url('/img/uploads/1760430335_8aebf4de458cf24cd2c47ef27385f5d6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(3px);
    z-index: 0;
}

.bde-presentation::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bde-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

/* Hero Intro - Titre et sous-titre */
.hero-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 3rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.9),
        2px 2px 6px rgba(0, 0, 0, 0.7),
        3px 3px 9px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Grille de statistiques */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    line-height: 1.4;
}

/* Grille d'arguments */
.arguments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.argument-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.argument-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.argument-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.argument-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.argument-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Note discrète sur le BDE */
.bde-note {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.bde-note i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.bde-note span {
    font-weight: 500;
}

/* CTA Hero */
.hero-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.btn-hero-cta i {
    font-size: 1.4rem;
}

/* Section Partenariat (2 colonnes compactes) */
.partenariat-section {
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.partenariat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.apport-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.apport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.apport-card h3 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.apport-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

.apport-list li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Section Parcours de Collaboration */
.parcours-section {
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.parcours-section>* {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Sous-titres de section */
.parcours-subtitle {
    font-size: 1.8rem;
    color: #1e40af;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.parcours-subtitle i {
    font-size: 2rem;
    color: #3b82f6;
}

/* Expertises */
.parcours-expertises {
    margin-bottom: 3rem;
}

.secteurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.secteur-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.secteur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
}

.secteur-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.secteur-card h4 {
    font-size: 1.2rem;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.secteur-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Connecteur central */
.parcours-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 4rem auto;
    max-width: 600px;
}

.connector-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

.connector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Animation pulse gérée par modern-theme.css */

/* Étapes timeline */
.parcours-etapes {
    margin-bottom: 3rem;
}

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

.timeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 2rem;
    padding: 0 1rem;
}

.etape-card {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.etape-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.etape-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.etape-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin: 1.5rem 0 1rem 0;
}

.etape-card h4 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.etape-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.parcours-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-partenariat {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-partenariat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.btn-partenariat i {
    font-size: 1.3rem;
}

/* Section Contact */
.contact-section {
    width: 100vw;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2.8fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
    width: 100%;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.contact-form h3 {
    color: #1e40af;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.full-width:has(button) {
    display: flex;
    justify-content: center;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.checkbox-label:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-label:has(input:checked) {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Messages de formulaire */
.form-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    /* Animation gérée par modern-theme.css */
}

.form-message i {
    font-size: 1.2rem;
}

.form-message-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.form-message-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #444;
    font-size: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: all 0.2s ease;
}

.contact-item i {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #fff;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.12);
}

.contact-item span {
    color: #374151;
}

.contact-item a {
    color: #1e40af;
    text-decoration: none;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.2s ease;
}

.contact-item a:hover::after,
.contact-item a:focus::after {
    width: 100%;
}

/* Icône du titre de la carte contact */
.contact-info h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-form form {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .bde-container {
        padding: 0 1.5rem;
    }

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

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

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

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

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

@media (max-width: 768px) {
    main {
        padding: 0 1rem;
    }

    .bde-container {
        padding: 0 1rem;
    }

    .bde-presentation {
        padding: 3rem 1rem;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .arguments-grid {
        gap: 1.5rem;
    }

    .argument-card {
        padding: 2rem 1.5rem;
    }

    .argument-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .argument-title {
        font-size: 1.3rem;
    }

    .argument-description {
        font-size: 1rem;
    }

    .bde-note {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-hero-cta {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

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

    .contact-form form {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 3rem 1rem;
    }
}