/* ===== ÉCHELLE SANTÉ – MAIN STYLESHEET (VERSION MISE À JOUR) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --blue:    #0024fe;
    --green:   #00bf60;
    --red:     #fc001e;
    --blue-dark: #001ac2;
    --green-dark: #009f50;
    --navy:    #00103a;
    --white:   #ffffff;
    --light:   #f4f6ff;
    --gray:    #6b7280;
    --border:  #e5e9ff;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow:  0 8px 40px rgba(0,36,254,0.10);
    --shadow-sm: 0 2px 12px rgba(0,36,254,0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { 
    font-family: var(--font-head); 
    font-weight: 700; 
    line-height: 1.2; 
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; }
p { color: var(--gray); line-height: 1.7; }
a { text-decoration: none; }

.text-blue  { color: var(--blue); }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0,36,254,0.07);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,36,254,0.25); }

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,191,96,0.25); }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-white {
    background: var(--white);
    color: var(--blue);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 5%; }
.section-center { text-align: center; }
.section-center h2 { max-width: 650px; margin: 0 auto 16px; }
.section-center p { max-width: 580px; margin: 0 auto 40px; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== HEADER / NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img { height: 64px; object-fit: contain; }
.nav-logo .brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.1;
}
.nav-logo .brand-name span { color: var(--blue); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); background: rgba(0,36,254,0.06); }

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 8px 5%;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.top-bar a { color: var(--white); text-decoration: underline; }

/* ===== HERO (VERSION MISE À JOUR AVEC IMAGE) ===== */
.hero {
    background: linear-gradient(135deg, #f4f6ff 0%, #eef2ff 50%, #f0fff7 100%);
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,36,254,0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,191,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 640px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue); font-weight: 800; }
.hero p.lead { font-size: 1.1rem; color: var(--gray); margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.hero-stat strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--blue); display: block; }
.hero-stat span { font-size: 0.82rem; color: var(--gray); }

/* Image Hero à droite */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,36,254,0.15);
    object-fit: cover;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-badge-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    font-family: var(--font-head);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: var(--gray);
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0,36,254,0.1) 0%, rgba(0,191,96,0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 5%;
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.trust-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}
.trust-countries {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--navy);
}
.trust-country .flag { font-size: 1.1rem; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--white); }
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: rgba(0,36,254,0.08);
}
.service-icon.green { background: rgba(0,191,96,0.1); }
.service-icon.red   { background: rgba(252,0,30,0.08); }

.service-card h3 { margin-bottom: 10px; font-size: 1rem; }
.service-card p  { font-size: 0.875rem; margin-bottom: 16px; }
.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ===== ABOUT / MISSION ===== */
.about-section { background: var(--light); }
.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-badge .badge-icon { font-size: 1.8rem; }
.about-badge strong { display: block; font-size: 1.1rem; color: var(--blue); }
.about-badge span { font-size: 0.75rem; color: var(--gray); }
.about-content { padding-left: 20px; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }
.about-values { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.value-chip {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    display: flex; align-items: center; gap: 6px;
}

/* ===== PDG SECTION ===== */
.pdg-section { background: var(--white); }
.pdg-card {
    background: linear-gradient(135deg, var(--navy) 0%, #002080 100%);
    border-radius: 28px;
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.pdg-card::before {
    content: '"';
    position: absolute;
    top: -20px; left: 40px;
    font-size: 14rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}
.pdg-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.pdg-photo-placeholder {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 4px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}
.pdg-text { flex: 1; }
.pdg-text .quote-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; }
.pdg-text blockquote { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 24px; font-style: italic; }
.pdg-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); display: block; }
.pdg-role { font-size: 0.82rem; color: var(--green); }

/* ===== EVACUATION PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, #0018c0 100%);
    color: var(--white);
    padding: 80px 5% 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin-bottom: 32px; }

/* ===== PROCESS STEPS ===== */
.steps-section { background: var(--light); }
.step-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
    transition: box-shadow 0.2s;
}
.step-item:hover { box-shadow: var(--shadow-sm); }
.step-num {
    width: 48px; height: 48px;
    background: var(--blue);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-item.green .step-num { background: var(--green); }
.step-item h4 { margin-bottom: 6px; }
.step-item p { font-size: 0.875rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-offices { display: flex; flex-direction: column; gap: 20px; }
.office-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow 0.2s;
}
.office-card:hover { box-shadow: var(--shadow-sm); }
.office-card .office-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--blue);
}
.office-card .flag { font-size: 1.3rem; }
.office-card p { font-size: 0.85rem; margin-bottom: 5px; color: var(--gray); }
.office-card p strong { color: var(--navy); }

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap p { margin-bottom: 28px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy);
    transition: border-color 0.2s;
    outline: none;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== TELECONSULTATION ===== */
.tele-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tele-feature {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}
.tele-feature:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(0,191,96,0.1); transform: translateY(-4px); }
.tele-feature .tele-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.tele-feature h4 { margin-bottom: 8px; }
.tele-feature p { font-size: 0.875rem; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--navy); padding: 80px 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.stats-inner h2 { color: var(--white); margin-bottom: 10px; }
.stats-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-item { padding: 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; }
.stat-number { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--green); display: block; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green) 0%, #00a050 100%);
    padding: 70px 5%;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 70px 5% 30px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}
.footer-brand .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--white); display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: background 0.2s;
}
.social-link:hover { background: var(--blue); color: var(--white); }

.footer-col h5 { font-family: var(--font-head); font-size: 0.9rem; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green); }

.footer-contact p { font-size: 0.82rem; margin-bottom: 6px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.footer-contact .contact-icon { margin-top: 2px; flex-shrink: 0; }
.footer-contact .country-label { font-weight: 600; color: var(--green); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 12px; margin-bottom: 4px; display: block; font-family: var(--font-head); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--white);
    padding: 12px 5%;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--gray);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--gray); }

/* ===== FORMATIONS / EXPERTISE PAGES ===== */
.feature-list { list-style: none; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .check { color: var(--green); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ===== CARD GENERIC ===== */
.card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}
.card-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.card-blue h3, .card-blue p { color: rgba(255,255,255,0.9); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pdg-card { padding: 40px; gap: 30px; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-wrap {
        order: -1;
    }
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .tele-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .pdg-card { flex-direction: column; text-align: center; padding: 36px 24px; }
    .hero-stats { gap: 20px; }
    .section { padding: 60px 5%; }
    .page-hero { padding: 60px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .about-content { padding-left: 0; }
    .hero-image {
        max-width: 100%;
    }
    .hero-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
    }
    .hero-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .hero-badge-text strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Mobile menu open */
.nav-menu.open { 
    display: flex; 
    flex-direction: column; 
    position: absolute; 
    top: 72px; 
    left: 0; 
    right: 0; 
    background: var(--white); 
    border-bottom: 1px solid var(--border); 
    padding: 16px 5%; 
    gap: 4px; 
}