/* ===================================
   CABINET LEROY - CORPORATE MODERN
   Geometric patterns, glass effects, data-driven aesthetic
   =================================== */

:root {
    --primary-teal: #0D9488;
    --teal-dark: #0F766E;
    --teal-light: #14B8A6;
    --teal-pale: #CCFBF1;
    --teal-mist: #F0FDFA;

    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;

    --accent-blue: #3B82F6;
    --accent-emerald: #10B981;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.2);

    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-dark: rgba(15, 23, 42, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--slate-700);
    background: var(--slate-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================================
   TYPOGRAPHY - CLEAN & MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--slate-900);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* ===================================
   NAVIGATION - GLASS MORPHISM
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.nav-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav-text h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
}

.nav-text p {
    font-size: 0.75rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin: 0;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--slate-100);
    color: var(--slate-900);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   BUTTONS - MODERN GRADIENTS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* ===================================
   HERO - GEOMETRIC MODERN
   =================================== */

.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 25%, var(--teal-mist) 25%, var(--teal-mist) 50%, transparent 50%, transparent 75%, var(--teal-mist) 75%);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--teal-pale), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 20px;
    color: var(--slate-900);
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative data viz elements */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed var(--teal-pale);
    border-radius: 16px;
}

.image-placeholder p {
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* ===================================
   SECTION STYLES - MODERN
   =================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ===================================
   CABINET SECTION - CARDS
   =================================== */

.cabinet {
    background: var(--white);
}

.cabinet-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.cabinet-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image .image-placeholder {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.story-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.story-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.8;
}

.cabinet-values h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

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

.value-card {
    background: var(--slate-50);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--teal-pale);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   SERVICES - GLASS CARDS
   =================================== */

.services {
    background: linear-gradient(180deg, var(--slate-50), var(--white));
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--teal-light));
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate-600);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===================================
   TEAM SECTION - MODERN CARDS
   =================================== */

.equipe {
    background: var(--white);
}

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

.team-card {
    background: var(--slate-50);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.team-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: 0;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
}

.team-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    font-size: 0.8125rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
    border-radius: 20px;
}

.team-cta p {
    font-size: 1.125rem;
    color: var(--slate-700);
    margin-bottom: 20px;
}

/* ===================================
   SECTORS - ICON GRID
   =================================== */

.secteurs {
    background: var(--slate-50);
}

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

.secteur-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--slate-200);
}

.secteur-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-teal);
}

.secteur-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.secteur-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.secteur-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS - CLEAN CARDS
   =================================== */

.temoignages {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--slate-50);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-teal), var(--teal-light));
    border-radius: 20px 0 0 20px;
}

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

.testimonial-rating span {
    color: #F59E0B;
    font-size: 1.125rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
    border-radius: 12px;
}

.author-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin: 0;
}

/* ===================================
   CONTACT - MODERN FORM
   =================================== */

.contact {
    background: linear-gradient(180deg, var(--slate-50), var(--white));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--slate-200);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-teal);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-mist));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-teal);
}

.contact-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-teal);
    font-weight: 500;
}

.contact-map .image-placeholder {
    border-radius: 16px;
    min-height: 180px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--slate-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

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

.form-notice {
    font-size: 0.8125rem;
    color: var(--slate-500);
    text-align: center;
}

/* ===================================
   FOOTER - MODERN DARK
   =================================== */

.footer {
    background: var(--slate-900);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand h3 {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.2;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--primary-teal);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--slate-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-teal);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.footer-hours strong {
    display: block;
    color: var(--slate-300);
    margin-bottom: 8px;
}

.footer-hours p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

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

.footer-legal a {
    font-size: 0.875rem;
    color: var(--slate-500);
}

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

.footer-legal span {
    color: var(--slate-700);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-content,
    .cabinet-story,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image {
        order: -1;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px;
        border-bottom: 1px solid var(--slate-200);
    }

    .nav-cta {
        margin-top: 16px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .services-grid,
    .testimonials-grid,
    .values-grid,
    .secteurs-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 80px;
    }

    .service-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}
