/* ==========================================================================
   LONIweb CSS - Refonte Maquette
   Palette de couleurs : #0A2342, Noir (#1A1A1A), Blanc (#FFFFFF)
   Polices : Outfit (Titres) & Plus Jakarta Sans (Corps de texte)
   ========================================================================== */

/* Variables CSS */
:root {
    --primary: #0A2342;
    --primary-light: #16365f;
    --primary-soft: rgba(10, 35, 66, 0.05);
    --primary-accent: #0f3c73;
    --accent: #ff8600;
    --accent-hover: #e07500;
    --dark: #111827;
    --dark-muted: #4b5563;
    --light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 35, 66, 0.08), 0 2px 4px -1px rgba(10, 35, 66, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(10, 35, 66, 0.1), 0 10px 10px -5px rgba(10, 35, 66, 0.04);
}

/* Reset de base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Conteneur et Grille */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typographie globale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Boutons Réutilisables */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-soft);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--light);
    border-color: var(--primary);
}

.btn-dark-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Badges de section */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-soft);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* En-tête de section */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--dark-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-accent {
    color: var(--primary);
}

.nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #edf2f7 100%);
    padding: 80px 0 100px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--dark-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    border: 1px solid var(--border);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card-info {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.floating-card-desc {
    font-size: 0.85rem;
    color: var(--dark-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-soft);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-text {
    color: var(--dark-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   Coverage Section
   ========================================================================== */
.coverage {
    background-color: var(--light);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.city-badge {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.city-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.city-badge i {
    color: var(--primary);
}

.coverage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-map {
    position: relative;
    width: 380px;
    height: 380px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-circle {
    position: absolute;
    border: 1px dashed rgba(10, 35, 66, 0.15);
    border-radius: 50%;
}

.circle-1 { width: 100px; height: 100px; }
.circle-2 { width: 220px; height: 220px; }
.circle-3 { width: 320px; height: 320px; }

.radar-pin-center {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 0 15px rgba(10, 35, 66, 0.4);
    z-index: 2;
}

.radar-city-label {
    position: absolute;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    bottom: 120px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.radar-ping {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 10px rgba(10, 35, 66, 0.5);
}

.ping-1 { top: 80px; left: 100px; }
.ping-2 { bottom: 90px; right: 80px; }
.ping-3 { top: 120px; right: 110px; }

/* ==========================================================================
   Values Section
   ========================================================================== */
.values {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.value-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-desc {
    color: var(--dark-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-fallback {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.author-meta {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

.press-mentions {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.press-text {
    font-size: 0.85rem;
    color: var(--dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.press-text a {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   Blog & Latest Articles Section
   ========================================================================== */
.blog {
    padding: 100px 0;
    background-color: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.btn-all-posts {
    align-self: flex-end;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-body {
    padding: 32px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    line-height: 1.35;
}

.blog-title a:hover {
    color: var(--primary-light);
}

.blog-excerpt {
    color: var(--dark-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.blog-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #031021 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 750px;
}

.cta-title {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-phone {
    background-color: var(--white);
    color: var(--primary);
    border: none;
}

.cta-btn-phone:hover {
    background-color: #f1f5f9;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: var(--dark);
    color: #9ca3af;
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info-col {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--white);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Panneau Mobile Navigation
   ========================================================================== */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.mobile-cta-li {
    margin-top: 16px;
}

.mobile-cta-li .btn {
    width: 100%;
}

/* ==========================================================================
   Media Queries & Responsivité
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container, .coverage-container {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 1140px) {
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-floating-card {
        left: 0;
        bottom: -10px;
    }
    
    .coverage-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .services-grid, .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .btn-all-posts {
        align-self: flex-start;
        width: 100%;
    }
    
    .radar-map {
        width: 320px;
        height: 320px;
    }
    
    .circle-3 { display: none; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================================================
   Form & Input Styling (Audit Page)
   ========================================================================== */
.audit-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: flex-start;
    padding: 60px 0 100px 0;
}

.audit-intro-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.audit-intro-text {
    color: var(--dark-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.audit-intro-bullets {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audit-intro-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark);
}

.audit-intro-bullets i {
    color: var(--accent);
    margin-top: 4px;
}

.audit-form-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--accent);
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: var(--light);
    color: var(--dark);
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 134, 0, 0.1);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--accent);
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--dark-muted);
    line-height: 1.4;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 28px;
}

.audit-notice {
    font-size: 0.85rem;
    color: var(--dark-muted);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

/* ==========================================================================
   Criteria Evaluation Layout
   ========================================================================== */
.criteria-section {
    padding: 100px 0;
    background-color: var(--white);
}

.criteria-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.criteria-row:last-child {
    margin-bottom: 0;
}

.criteria-row.reversed {
    grid-template-columns: 1fr 1fr;
}

.criteria-content {
    max-width: 520px;
}

.criteria-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.criteria-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.criteria-list i {
    color: var(--primary);
    font-size: 0.85rem;
}

.criteria-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.criteria-img {
    width: 100%;
    transition: var(--transition-smooth);
}

.criteria-img-wrapper:hover .criteria-img {
    transform: scale(1.03);
}

/* ==========================================================================
   Related Pages Grid
   ========================================================================== */
.related {
    padding: 80px 0 100px 0;
    background-color: var(--light);
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.related-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
}

.related-arrow {
    color: var(--accent);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.related-card:hover .related-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Responsive updates for Audit Page
   ========================================================================== */
@media (max-width: 1024px) {
    .audit-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .criteria-row, .criteria-row.reversed {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .criteria-img-wrapper {
        order: -1;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   Language Switcher Pill
   ========================================================================== */
.lang-switch-pill {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff !important;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.lang-switch-btn:hover {
    color: var(--white);
}

.lang-switch-btn.active {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(255, 134, 0, 0.35);
}

.lang-switch-btn .flag-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.lang-switch-btn {
    opacity: 1 !important;
    filter: none !important;
}

.lang-switch-btn img,
.lang-switch-btn .flag-icon,
.lang-switch-btn img.emoji {
    opacity: 1 !important;
    filter: none !important;
}
