/* ========================================
   DigiHealth Solutions - Main Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #2A9D8F;
    --primary-dark: #238B7E;
    --primary-light: #3AB4A6;
    --secondary: #1D3557;
    --secondary-light: #2B4A78;
    --accent: #3AB4A6;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;
    --gray-800: #212529;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Section Common ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 157, 143, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.navbar.scrolled .logo-text {
    color: var(--secondary);
}

/* ========== NEW LOGO BLOCK (ADHSC Full) ========== */
.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    white-space: nowrap;
}

.logo-line-1 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.logo-line-2 {
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--primary-light);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 2px;
    opacity: 0.9;
}

.navbar.scrolled .logo-line-1 {
    color: var(--secondary);
}

.navbar.scrolled .logo-line-2 {
    color: var(--primary);
}

/* Footer logo variant */
.footer-logo {
    align-items: flex-start;
}
.footer-logo .logo-text-block {
    white-space: normal;
    max-width: 220px;
}
.footer-logo .logo-line-1 {
    color: var(--white);
    font-size: 13px;
    white-space: normal;
    line-height: 1.25;
}
.footer-logo .logo-line-2 {
    color: var(--primary-light);
    font-size: 10.5px;
    margin-top: 4px;
}
.logo-img-footer {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Responsive logo */
@media (max-width: 1280px) {
    .logo-line-1 { font-size: 13.5px; }
    .logo-line-2 { font-size: 10.5px; }
    .logo-img { width: 44px; height: 44px; }
}

@media (max-width: 1100px) {
    .logo-line-1 { font-size: 12.5px; }
    .logo-line-2 { font-size: 10px; }
    .logo-img { width: 40px; height: 40px; }
}

@media (max-width: 768px) {
    .logo-text-block {
        white-space: normal;
        max-width: 200px;
    }
    .logo-line-1 {
        font-size: 12px;
        white-space: normal;
        line-height: 1.2;
    }
    .logo-line-2 {
        font-size: 9px;
    }
    .logo-img { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .logo-text-block {
        max-width: 150px;
    }
    .logo-line-1 { font-size: 11px; }
    .logo-line-2 { display: none; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(42, 157, 143, 0.08);
}

.nav-cta {
    background: var(--gradient) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.25);
}

.navbar.scrolled .lang-toggle {
    background: rgba(42, 157, 143, 0.08);
    border-color: rgba(42, 157, 143, 0.2);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--secondary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B2A4A 0%, #0f1b33 40%, #132744 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero-pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(42, 157, 143, 0.15);
    animation: pulse-ring 4s ease-out infinite;
}

.pulse-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 15%;
}

.pulse-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(42, 157, 143, 0.12);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #3AB4A6, #2A9D8F, #4DC9B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-plus {
    font-size: 24px;
    color: var(--primary-light);
    font-weight: 700;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.hero-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

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

.hero-icon-card:hover {
    background: rgba(42, 157, 143, 0.1);
    border-color: rgba(42, 157, 143, 0.3);
    transform: translateY(-5px);
}

.hero-icon-card i {
    font-size: 36px;
    color: var(--primary-light);
}

.hero-icon-card span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Service card image header */
.service-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 5/2;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-img-num {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(29,53,87,0.82);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Service card body */
.service-card-body {
    padding: 28px 28px 32px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--gray-600);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.about-text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(42, 157, 143, 0.06);
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 20px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 157, 143, 0.2);
}

.stat-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
    font-size: 28px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ==========================================
   SOLUTIONS SECTION
   ========================================== */
.solutions {
    padding: 100px 0;
    background: var(--gray-50);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.solution-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.solution-card:hover .solution-icon i {
    color: var(--white);
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(42, 157, 143, 0.1);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card:hover .why-number {
    color: rgba(42, 157, 143, 0.2);
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   PARTNERS / TESTIMONIALS
   ========================================== */
.partners {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFD93D;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B2A4A 0%, #0f1b33 50%, #132744 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.08);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 18px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray-500);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--gray-700);
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

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

.form-status {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(42, 157, 143, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 60px 0 0;
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(42, 157, 143, 0.3);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(42, 157, 143, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 4px;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--gray-700);
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(42, 157, 143, 0.08);
        color: var(--primary);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   NEW SECTIONS - Hero Tags, Domains, Prevention, etc.
   ========================================== */

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-tag {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.hero-tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}

/* About Identity */
.about-identity {
    margin-bottom: 28px;
}

.about-identity h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.values-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(42, 157, 143, 0.08);
    border: 1px solid rgba(42, 157, 143, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition);
}

.values-tag:hover {
    background: rgba(42, 157, 143, 0.15);
}

.values-tag i {
    font-size: 12px;
    color: var(--primary);
}

/* Service Card Enhancements */
.service-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(42, 157, 143, 0.08);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.service-tagline {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-metrics {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ==========================================
   HEALTH DOMAINS SECTION
   ========================================== */
.health-domains {
    padding: 100px 0;
    background: var(--white);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.domain-card {
    text-align: center;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    cursor: default;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.domain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* Image wrapper */
.domain-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.domain-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.domain-card:hover .domain-img-wrap img {
    transform: scale(1.06);
}

.domain-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    padding: 14px 12px;
    line-height: 1.3;
}

/* ==========================================
   PREVENTION SECTION
   ========================================== */
.prevention {
    padding: 100px 0;
    background: var(--gray-50);
}

.quote {
    font-style: italic;
    color: var(--primary-dark) !important;
    font-weight: 500;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.prevention-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.prevention-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.prevention-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.prevention-card:hover::before {
    transform: scaleX(1);
}

/* Image header */
.prev-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.prev-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.prevention-card:hover .prev-img-wrap img {
    transform: scale(1.06);
}

/* Numero sur l'image */
.prev-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    padding: 4px 10px;
    backdrop-filter: blur(6px);
}

.prevention-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 0;
}

/* Corps de la card */
.prev-card-body {
    padding: 20px 22px 24px;
}

.prevention-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
}

.prevention-card:hover .prevention-icon {
    background: var(--gradient);
}

.prevention-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.prevention-card:hover .prevention-icon i {
    color: var(--white);
}

.prevention-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.prevention-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   METHODOLOGY SECTION
   ========================================== */
.methodology {
    padding: 100px 0;
    background: var(--white);
}

.method-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.method-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 28px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.method-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.method-step h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.method-step p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.method-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--primary);
    font-size: 20px;
    margin-top: 40px;
}

.method-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(42, 157, 143, 0.06);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-600);
}

.highlight-item i {
    color: var(--primary);
    font-size: 16px;
}

/* ==========================================
   WHY US - Updated with icons
   ========================================== */
/* Why-us visual banner */
.why-visual-banner {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.why-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,53,87,0.72) 0%, rgba(42,157,143,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-banner-overlay span {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
}

.why-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

/* ==========================================
   PARTNERS - Updated
   ========================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Partner card image header */
.partner-card-img {
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.partner-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partner-card:hover .partner-card-img img {
    transform: scale(1.05);
}

/* Partner card body */
.partner-card-body {
    padding: 28px 28px 30px;
}

.partner-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.partner-icon i {
    font-size: 24px;
    color: var(--primary);
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.partner-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-card li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.partner-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 11px;
}

/* CTA Motto */
.cta-motto {
    font-style: italic;
    font-size: 16px !important;
    color: rgba(255,255,255,0.6) !important;
    margin-bottom: 32px !important;
}

/* ==========================================
   RESPONSIVE - New sections
   ========================================== */
@media (max-width: 1024px) {
    .domains-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .method-arrow {
        display: none;
    }

    .method-steps {
        gap: 16px;
    }
}

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

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

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

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

    .method-steps {
        flex-direction: column;
    }

    .method-step {
        min-width: 100%;
    }

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

    .values-tags {
        justify-content: center;
    }

    .service-metrics {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .domains-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .domain-card {
        padding: 0;
    }
    .domain-card h3 {
        font-size: 13px;
        padding: 10px 8px;
    }
}

/* ==========================================
   IMAGES & VISUAL ELEMENTS
   ========================================== */

/* Hero Image */
.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(29, 53, 87, 0.9));
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.hero-img-badge i {
    color: var(--primary-light);
}

/* About 2-column with image */
.about-grid-2col {
    grid-template-columns: 1fr 1.2fr !important;
    gap: 48px;
    align-items: center !important;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Image Banner */
.image-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.image-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 53, 87, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-banner-overlay p {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    text-align: center;
    padding: 0 24px;
    max-width: 700px;
}

/* Responsive images */
@media (max-width: 1024px) {
    .about-grid-2col {
        grid-template-columns: 1fr !important;
    }

    .about-image img {
        height: 350px;
    }

    .hero-img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-image img {
        height: 280px;
    }

    .hero-img {
        height: 260px;
    }

    .image-banner {
        height: 200px;
    }
}

/* ==========================================
   SECTION NOS PRODUITS
   ========================================== */
.produits {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.produits::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
}

/* Carte produit principale */
.produit-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid var(--gray-200);
}

.produit-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gradient);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    z-index: 2;
}

.produit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Colonne gauche */
.produit-info {
    padding: 48px;
    border-right: 1px solid var(--gray-200);
}

.produit-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.produit-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.produit-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 4px;
    line-height: 1.2;
}

.produit-version {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.produit-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 14px;
}

.produit-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.produit-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.4;
}

.produit-features li i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.produit-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.produit-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
}

.produit-spec i {
    color: var(--primary);
}

.produit-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Colonne droite — visual */
.produit-visual {
    padding: 40px;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

/* Mockup écran */
.produit-screen {
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.screen-topbar {
    background: #0f172a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.screen-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.screen-dot.red    { background: #ef4444; }
.screen-dot.yellow { background: #f59e0b; }
.screen-dot.green  { background: #22c55e; }

.screen-title {
    margin-left: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
}

.screen-body {
    display: flex;
    height: 280px;
}

.screen-sidebar {
    width: 130px;
    background: #0f172a;
    padding: 12px 8px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ss-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 6px;
}

.ss-logo img { opacity: 0.9; }

.ss-logo span {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    line-height: 1.2;
}

.ss-nav-item {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    padding: 6px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: all 0.2s;
}

.ss-nav-item.active {
    background: rgba(42, 157, 143, 0.25);
    color: #3AB4A6;
    font-weight: 600;
}

.ss-nav-item i { font-size: 9px; width: 12px; text-align: center; }

.screen-main {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.screen-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.screen-kpi {
    border-radius: 6px;
    padding: 8px 10px;
    text-align: center;
}

.screen-kpi.blue   { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.2); }
.screen-kpi.green  { background: rgba(34,197,94,0.15);  border: 1px solid rgba(34,197,94,0.2); }
.screen-kpi.red    { background: rgba(239,68,68,0.15);  border: 1px solid rgba(239,68,68,0.2); }
.screen-kpi.purple { background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.2); }

.kpi-val { font-size: 18px; font-weight: 800; color: white; line-height: 1; }
.kpi-lbl { font-size: 9px;  color: rgba(255,255,255,0.5); margin-top: 2px; }

.screen-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.alert-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.alert-dot.red    { background: #ef4444; box-shadow: 0 0 6px #ef444466; }
.alert-dot.orange { background: #f59e0b; box-shadow: 0 0 6px #f59e0b66; }
.alert-dot.blue   { background: #3b82f6; box-shadow: 0 0 6px #3b82f666; }

/* Tags produit */
.produit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ptag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
}

.ptag i { font-size: 10px; color: var(--primary-light); }

/* Prochainement */
.produits-coming {
    text-align: center;
}

.coming-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.coming-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.coming-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
}

.coming-card i {
    color: var(--gray-400);
    font-size: 14px;
}

/* Responsive produits */
@media (max-width: 1024px) {
    .produit-inner {
        grid-template-columns: 1fr;
    }
    .produit-info {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    .produit-visual {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .produit-info { padding: 28px 20px; }
    .produit-features { grid-template-columns: 1fr; }
    .screen-body { height: 220px; }
    .screen-sidebar { width: 100px; }
    .screen-kpis { grid-template-columns: 1fr 1fr; }
}

/* ========== GOUVERNANCE & EQUIPE (Redesign) ========== */
.governance {
    padding: 100px 0;
    background: var(--gray-50);
}

.governance-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.governance-subtitle i {
    color: var(--primary);
    font-size: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.8rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    position: relative;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42,157,143,0.12);
    border-color: var(--primary);
}

/* President card - dark background */
.team-card-president {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-color: transparent;
    color: white;
}
.team-card-president h4 { color: white; }
.team-card-president .team-specialty { color: rgba(255,255,255,0.65); }

/* Initials avatar */
.team-avatar-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.president-avatar {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    width: 76px;
    height: 76px;
    font-size: 1.6rem;
}

.team-card h4 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.team-role {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.7rem;
}

.role-president {
    background: var(--primary);
}

.team-specialty {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* President card overrides - MUST come after .team-card h4 to win specificity */
.team-card.team-card-president h4 {
    color: #FFFFFF !important;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.team-card.team-card-president .team-specialty {
    color: rgba(255,255,255,0.85) !important;
}
.team-card.team-card-president .team-role {
    color: #FFFFFF !important;
}

/* Direction Executive */
.exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.exec-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.exec-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.exec-info h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 700;
}

.exec-role-tag {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exec-spec {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Cadre Legal */
.legal-frame {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--secondary), #2B4A78);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.legal-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.legal-content h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ========== CONFIANCE & TRANSPARENCE ========== */
.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(42,157,143,0.1);
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.trust-icon-1 { background: rgba(42,157,143,0.1); color: var(--primary); }
.trust-icon-2 { background: rgba(29,53,87,0.08); color: var(--secondary); }
.trust-icon-3 { background: rgba(212,168,67,0.1); color: #D4A843; }
.trust-icon-4 { background: rgba(231,111,81,0.1); color: #E76F51; }

.trust-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Funder Bar */
.funder-bar {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.funder-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.funder-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.funder-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.funder-logo:hover { opacity: 1; }

.funder-logo i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.funder-logo span {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    .team-card {
        padding: 1.5rem 1rem;
    }
    .exec-grid {
        grid-template-columns: 1fr;
    }
    .legal-frame {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    .governance-subtitle {
        font-size: 1.2rem;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .funder-logos {
        gap: 1.2rem;
    }
}

/* ========================================
   HERO — Trust Bar & 4 CTAs
   ======================================== */

/* Barre de confiance au-dessus du badge hero */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}
.htb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.htb-item i {
    color: var(--primary-light);
    font-size: 0.7rem;
}
.htb-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* 4 CTA buttons grid */
.hero-cta-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.6rem 0 1.4rem;
    max-width: 520px;
}
.cta4-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s;
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.cta4-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cta4-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}
.cta4-label { line-height: 1.2; }

/* Couleurs des 4 CTAs */
.cta4-partner {
    background: var(--primary);
    color: white;
}
.cta4-donate {
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
}
.cta4-solution {
    background: white;
    color: var(--secondary);
    border: 2px solid rgba(255,255,255,0.8);
}
.cta4-contact {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.cta4-contact:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 480px) {
    .hero-cta-4 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .hero-trust-bar { display: none; }
}

/* ========================================
   SECTION ACTUALITES
   ======================================== */
.actualites {
    padding: 100px 0;
    background: var(--gray-50);
}

/* Filtres */
.actu-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.actu-filter {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-main);
}
.actu-filter:hover, .actu-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(42,157,143,0.25);
}

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

/* Card */
.actu-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Actu card image header */
.actu-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
}
.actu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.actu-card:hover .actu-img-wrap img {
    transform: scale(1.05);
}

/* Actu card body */
.actu-card-body {
    padding: 1.2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}
.actu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.actu-card[style*="display:none"] { display: none !important; }

/* Card header */
.actu-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.actu-date {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
}

/* Badges type */
.actu-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.actu-badge-projet {
    background: rgba(42,157,143,0.1);
    color: var(--primary-dark);
}
.actu-badge-evenement {
    background: rgba(52,152,219,0.1);
    color: #1A6FA8;
}
.actu-badge-publication {
    background: rgba(155,89,182,0.1);
    color: #7B3F9E;
}

/* Icone centrale */
.actu-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.actu-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin: 0;
}
.actu-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

/* Footer de la card */
.actu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-100);
}
.actu-tag-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
}
.actu-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.2s;
}
.actu-link:hover { color: var(--primary-dark); }

/* CTA bas de section */
.actu-cta-row {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.actu-cta-row p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Responsive actualites */
@media (max-width: 900px) {
    .actu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .actu-grid { grid-template-columns: 1fr; }
    .actu-filters { gap: 0.4rem; }
    .actu-filter { padding: 8px 16px; font-size: 0.8rem; }
}

/* ========================================
   FOOTER — Badges de conformite
   ======================================== */
.footer-compliance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}
.compliance-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
.compliance-badge:hover {
    background: rgba(42,157,143,0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}
.compliance-badge i {
    color: var(--primary-light);
    font-size: 0.75rem;
}

@media (max-width: 480px) {
    .footer-compliance { gap: 0.5rem; }
    .compliance-badge { font-size: 0.68rem; padding: 5px 11px; }
}

/* ========================================
   MOBILE-FIRST — Ameliorations generales
   ======================================== */
/* Touch targets minimum 44px */
.nav-link, .btn, .actu-filter, .cta4-btn {
    min-height: 44px;
}
.nav-link {
    display: flex;
    align-items: center;
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Formulaire mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    input, select, textarea, button {
        font-size: 16px !important; /* prevent iOS zoom */
    }
}

/* Navbar mobile — menu plus accessible */
@media (max-width: 768px) {
    .nav-menu {
        max-height: 85vh;
        overflow-y: auto;
    }
}
