/* ====================================
   SANETOI PRO - CSS Premium
   Design institutionnel B2B
   ==================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --color-primary: #0066CC;
    --color-primary-dark: #004C99;
    --color-primary-light: #0088FF;
    
    /* Couleurs neutres */
    --color-white: #FFFFFF;
    --color-bg-light: #F8FAFC;
    --color-bg-dark: #0A1929;
    --color-text-dark: #0F172A;
    --color-text-medium: #334155;
    --color-text-light: #64748B;
    --color-border: #E2E8F0;
    
    /* Typographie */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Espacements */
    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Bordures arrondies */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Améliore les interactions tactiles sur mobile */
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
    touch-action: manipulation;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* === SECTIONS === */
.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Transitions arrondies entre sections */
.section-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.section-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

/* === BOUTONS === */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    /* Amélioration tactile mobile */
    min-height: 44px; /* Taille minimale recommandée pour les boutons tactiles */
    cursor: pointer;
    user-select: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    min-height: 44px;
    cursor: pointer;
    user-select: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* White button variant */
.btn-white {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
    border-radius: var(--radius-sm);
    min-height: 44px;
    cursor: pointer;
    user-select: none;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-white:active {
    transform: translateY(0);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* === NAVIGATION === */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 9999;
    transition: all var(--transition-normal);
}

.nav-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
}

.logo img {
    display: block;
    object-fit: contain;
    height: 64px;
    width: auto;
    max-height: 72px;
}

/* Keep navbar logo at controlled size without distortion */
.nav-container .logo img {
    height: 40px;
    width: auto;
    max-height: none;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-link {
    color: var(--color-text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

.btn-nav {
    padding: 10px 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    transition: all var(--transition-fast);
}

/* === HERO SECTION (100vh) === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #0088FF 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Formes arrondies en arrière-plan */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-white);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-white);
    bottom: -100px;
    left: -50px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Contenu du Hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    padding: 0 32px;
    width: 100%;
}

.hero-main {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.hero-cta .btn-primary:hover {
    background: var(--color-bg-light);
    border-color: var(--color-bg-light);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-cta .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Cartes de features dans le Hero */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card svg {
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* Courbe en bas du Hero */
.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.hero-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

/* === SECTION SERVICES === */
.services-section {
    background: var(--color-white);
    padding-bottom: 140px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* === SECTION POURQUOI === */
.why-section {
    background: var(--color-bg-light);
    padding-bottom: 140px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--color-white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.why-icon {
    margin-bottom: 24px;
}

.why-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.why-desc {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.7;
}

/* === SECTION PROCESS === */
.process-section {
    background: var(--color-white);
    padding-bottom: 140px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.process-card {
    position: relative;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.process-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-icon {
    margin: 24px 0;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* === SECTION DEVIS === */
.quote-section {
    background: var(--color-bg-light);
    padding-bottom: 140px;
}

.quote-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.quote-form {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 16px;
}

/* === SECTION TÉMOIGNAGES === */
.testimonials-section {
    background: var(--color-white);
    padding-bottom: 140px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* === FOOTER === */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* === RESPONSIVE === */

/* Tablettes */
/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    /* Navigation */
    .nav-content {
        padding: 0 24px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.0625rem;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Navigation mobile */
    .nav-content {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-logo span {
        font-size: 1.125rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 9998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }
    
    .btn-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-main {
        margin-bottom: 48px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn-large,
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Cards */
    .service-card,
    .why-card,
    .process-step {
        padding: 28px 20px;
    }
    
    /* Formulaire */
    .quote-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-col h4 {
        margin-bottom: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-top: 24px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    /* Navigation */
    .nav-content {
        padding: 0 16px;
        height: 65px;
    }
    
    .nav-logo svg {
        width: 36px;
        height: 36px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 24px 20px;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    /* Cards & Components */
    .feature-card,
    .service-card,
    .why-card,
    .process-step {
        padding: 24px 20px;
    }
    
    .service-card h3,
    .why-card h3 {
        font-size: 1.125rem;
    }
    
    .service-card p,
    .why-card p {
        font-size: 0.9375rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .btn-white {
        padding: 12px 24px;
        font-size: 0.9375rem;
        width: 100%;
    }
    
    /* Forms */
    .quote-form {
        padding: 24px 20px;
    }
    
    .form-label {
        font-size: 0.875rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
    
    /* Icons */
    .service-icon,
    .why-icon,
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo svg {
        width: 36px;
        height: 36px;
    }
    
    .footer-logo span {
        font-size: 1.125rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links,
    .footer-contact {
        font-size: 0.9375rem;
    }
    
    .footer-bottom {
        font-size: 0.875rem;
        padding-top: 20px;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll padding pour compenser le header fixe */
html {
    scroll-padding-top: 80px;
}

/* ====================================
   PAGE SERVICES - STYLES SPÉCIFIQUES
   Structure catalogue différenciée
   ==================================== */

/* === HERO SERVICES (35-45vh) === */
.hero-services {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #0088FF 100%);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-services-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.hero-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-services-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Navigation interne Services */
.services-nav {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -60px;
    box-shadow: var(--shadow-md);
}

.services-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.services-nav-item {
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-medium);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.services-nav-item:hover,
.services-nav-item.active {
    color: var(--color-primary);
    background: rgba(0, 102, 204, 0.08);
    border-color: var(--color-primary);
}

/* Courbe Hero Services (différente de la Home) */
.hero-services-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.hero-services-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

/* === SECTION CATÉGORIES === */
.services-categories-section {
    background: var(--color-white);
    padding-top: 120px;
    padding-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    transition: all var(--transition-normal);
    scroll-margin-top: 100px;
}

.category-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-icon {
    margin-bottom: 24px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.category-desc {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-category {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.btn-category:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* === SECTION DÉTAILS (ACCORDÉONS) === */
.services-details-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-group {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.accordion-group:last-child {
    margin-bottom: 0;
}

.accordion-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid var(--color-primary);
}

.accordion-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: border-color var(--transition-fast);
}

.accordion-item:hover {
    border-color: var(--color-primary);
}

.accordion-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--color-bg-light);
}

.accordion-icon {
    flex-shrink: 0;
    margin-left: auto;
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 28px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.7;
}

.accordion-content ul {
    padding: 0 28px 28px 28px;
    margin: 0;
    list-style: none;
}

.accordion-content ul li {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
    margin-bottom: 10px;
}

.accordion-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.15;
}

.accordion-content ul li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 5px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.8125rem;
}

/* === SECTION INCLUS === */
.included-section {
    background: var(--color-white);
    padding: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-normal);
}

.included-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.included-icon {
    margin-bottom: 16px;
}

.included-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.included-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* === SECTION OPTIONS (TABLEAU COMPARATIF) === */
.options-section {
    background: var(--color-bg-light);
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--color-primary);
}

.comparison-header .comparison-cell {
    color: var(--color-white);
    font-weight: 700;
}

.comparison-cell {
    padding: 20px 24px;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    border-right: 1px solid var(--color-border);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:not(.comparison-header) .comparison-cell:first-child {
    font-weight: 600;
}

.comparison-row:not(.comparison-header):hover {
    background: var(--color-bg-light);
}

/* === SECTION FRÉQUENCES === */
.frequencies-section {
    background: var(--color-white);
    padding: 80px 0;
}

.frequencies-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.frequency-pill {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    transition: all var(--transition-normal);
    cursor: default;
}

.frequency-pill:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* === SECTION CTA FINAL (BANDEAU SOBRE) === */
.cta-final-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.cta-final-banner {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-sm);
}

.cta-final-icon {
    flex-shrink: 0;
}

.cta-final-content {
    flex: 1;
}

.cta-final-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-final-text {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.cta-final-buttons {
    flex-shrink: 0;
    display: flex;
    gap: 16px;
}

/* === RESPONSIVE PAGE SERVICES === */

@media (max-width: 1024px) {
    .hero-services-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-final-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-final-buttons .btn-large {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-services {
        min-height: 50vh;
        padding: 140px 0 60px;
    }
    
    .hero-services-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-services-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .services-nav {
        margin-bottom: -40px;
        padding: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-nav-list {
        gap: 12px;
        min-width: max-content;
    }
    
    .services-nav-item {
        padding: 8px 16px;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .services-categories-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .category-card {
        padding: 32px 24px;
    }
    
    .category-title {
        font-size: 1.375rem;
    }
    
    .accordion-category-title {
        font-size: 1.5rem;
        padding-left: 16px;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .accordion-content p,
    .accordion-content ul {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 0.9375rem;
    }
    
    .included-item {
        padding: 24px 20px;
    }
    
    .included-item h4 {
        font-size: 1.0625rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 16px;
    }
    
    .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        background: var(--color-bg-light);
        font-weight: 700;
    }
    
    .frequencies-list {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .frequency-pill {
        padding: 10px 24px;
        font-size: 0.9375rem;
    }
    
    .cta-final-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-final-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-services {
        padding: 130px 0 50px;
    }
    
    .hero-services-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-services-subtitle {
        font-size: 0.9375rem;
    }
    
    .services-nav {
        padding: 12px;
    }
    
    .services-nav-item {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    .category-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .category-card {
        padding: 24px 20px;
    }
    
    .accordion-category-title {
        font-size: 1.25rem;
        padding-left: 12px;
    }
    
    .accordion-header {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }
    
    .accordion-content p,
    .accordion-content ul {
        padding: 16px;
        font-size: 0.875rem;
    }
    
    .included-item {
        padding: 20px 16px;
    }
    
    .included-item h4 {
        font-size: 1rem;
    }
    
    .comparison-cell {
        padding: 12px;
        font-size: 0.875rem;
    }
    
    .frequency-pill {
        padding: 8px 20px;
        font-size: 0.875rem;
    }
    
    .cta-final-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .cta-final-text {
        font-size: 0.9375rem;
    }
}

/* ====================================
   SERVICES PAGE - HERO & TABS
   ==================================== */

/* Hero Services */
.hero-services {
    min-height: 40vh;
    background: linear-gradient(135deg, #0066CC 0%, #0088FF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-services-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-services-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-services-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-services-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-services-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Navigation Sticky Tabs */
.services-nav-wrapper {
    position: relative;
    z-index: 50;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.services-nav {
    position: sticky;
    top: 80px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.services-nav-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.services-nav-list::-webkit-scrollbar {
    height: 4px;
}

.services-nav-list::-webkit-scrollbar-track {
    background: transparent;
}

.services-nav-list::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.services-nav-item {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-medium);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.services-nav-item:hover {
    color: var(--color-primary);
    background: rgba(0, 102, 204, 0.06);
}

.services-nav-item.active {
    color: var(--color-primary);
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--color-primary);
}

/* Main Services Content */
.services-main {
    background: var(--color-white);
    padding: 80px 0;
}

.tab-panels {
    display: block;
}

.tab-panel {
    display: none;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    text-align: center;
    margin-bottom: 64px;
}

.panel-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.panel-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Panel Intro */
.panel-intro {
    background: rgba(0, 102, 204, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 60px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.panel-intro p {
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* Service Details List */
.service-details {
    list-style: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

.service-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Panel Sections */
.panel-section {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 48px;
}

.section-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    display: block;
}

.inclusion-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.inclusion-list li {
    padding-left: 28px;
    position: relative;
    color: var(--color-text-medium);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Benefit Section */
.benefit-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 136, 255, 0.04)) !important;
    border: 2px solid rgba(0, 102, 204, 0.15) !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    padding-left: 60px;
}

.benefit-number {
    position: absolute;
    left: 20px;
    top: 24px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Frequencies Recommendation */
.frequencies-recommendation {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 136, 255, 0.04)) !important;
    border: 2px solid rgba(0, 102, 204, 0.15) !important;
}

.frequency-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.freq-rec-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.freq-rec-card .freq-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.freq-rec-card p {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Placeholder sections */
.placeholder-section {
    padding: 100px 40px;
    text-align: center;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    color: var(--color-text-medium);
    font-size: 1.25rem;
    font-weight: 600;
}

/* CTA Note */
.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-style: italic;
}

/* Frequencies Grid */
.frequencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.frequency-pill {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 136, 255, 0.05));
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-fast);
}

.frequency-pill:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(0, 136, 255, 0.12));
    transform: translateY(-2px);
}

.freq-label {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.freq-desc {
    font-size: 0.8125rem;
    color: var(--color-text-medium);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.option-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.option-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.option-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.option-desc {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.4;
}

/* Advice Grid */
/* Benefit Section */
.benefit-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 136, 255, 0.04)) !important;
    border: 2px solid rgba(0, 102, 204, 0.15) !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    padding-left: 60px;
}

.benefit-number {
    position: absolute;
    left: 20px;
    top: 24px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Frequencies Recommendation */
.frequencies-recommendation {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 136, 255, 0.04)) !important;
    border: 2px solid rgba(0, 102, 204, 0.15) !important;
}

.frequency-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.freq-rec-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.freq-rec-card .freq-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.freq-rec-card p {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Placeholder sections */
.placeholder-section {
    padding: 100px 40px;
    text-align: center;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    color: var(--color-text-medium);
    font-size: 1.25rem;
    font-weight: 600;
}

/* CTA Note */
.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-style: italic;
}

/* Advice Section */
.advice-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06), rgba(0, 136, 255, 0.03)) !important;
    border: 2px solid rgba(0, 102, 204, 0.2) !important;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.advice-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    border: 1px solid var(--color-border);
}

.advice-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.advice-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.advice-card p {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* Panel CTA */
.panel-cta {
    text-align: center;
    margin-top: 64px;
}

/* CTA Final Global */
.services-cta-final {
    background: linear-gradient(135deg, #0066CC 0%, #0088FF 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-final-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final-buttons .btn-primary {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
}

.cta-final-buttons .btn-primary:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
}

.cta-final-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-final-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-services {
        min-height: 35vh;
        padding: 60px 0 80px;
    }

    .hero-services-title {
        font-size: 2.25rem;
    }

    .hero-services-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .panel-section {
        padding: 24px;
    }

    .cta-final-content h2 {
        font-size: 1.75rem;
    }

    .services-nav {
        top: 70px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-services {
        min-height: 30vh;
        padding: 50px 0 70px;
    }

    .hero-services-title {
        font-size: 1.75rem;
    }

    .hero-services-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .badge {
        font-size: 0.875rem;
        padding: 6px 16px;
    }

    .services-nav {
        top: 70px;
        padding: 12px 0;
    }

    .services-nav-list {
        justify-content: flex-start;
        padding: 0 0 8px 0;
    }

    .services-nav-item {
        padding: 8px 16px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .services-main {
        padding: 40px 0;
    }

    .panel-header {
        margin-bottom: 32px;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .panel-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .panel-intro {
        padding: 16px;
        margin-bottom: 40px;
        font-size: 0.95rem;
    }

    .service-details {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 20px;
        padding-left: 50px;
    }

    .benefit-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .frequency-recommendations {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .freq-rec-card {
        padding: 20px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.875rem;
    }

    .panel-section {
        padding: 20px;
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .inclusion-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .inclusion-list li {
        font-size: 0.875rem;
    }

    .frequencies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .frequency-pill {
        padding: 16px 12px;
    }

    .freq-label {
        font-size: 0.875rem;
    }

    .freq-desc {
        font-size: 0.75rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .option-card {
        padding: 20px;
    }

    .advice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-final-content h2 {
        font-size: 1.5rem;
    }

    .cta-final-content p {
        font-size: 1rem;
    }

    .cta-final-buttons {
        gap: 12px;
    }

    .cta-final-buttons .btn-primary,
    .cta-final-buttons .btn-secondary {
        width: 100%;
    }

    .services-cta-final {
        padding: 60px 0;
    }
}

/* ====================================
   SERVICES PAGE - NARRATIVE IMMERSIVE
   ==================================== */

/* INTRO PAGE */
.services-intro {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF4FF 100%);
    overflow: hidden;
}

.services-intro-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.services-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

.intro-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    display: block;
}

/* MAIN SERVICES PAGE */
.services-page {
    position: relative;
    overflow-x: hidden;
}

/* SECTION STYLES */
.services-section {
    position: relative;
    padding: 120px 0;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: white;
}

.services-section .section-background {
    background: white;
}

.section-remise-bg {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F1FF 100%);
}

.services-section > .container,
.services-section > .section-top-curve,
.services-section > .section-bottom-curve {
    position: relative;
    z-index: 1;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 48px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: 48px;
}

.section-text p {
    margin-bottom: 24px;
}

.section-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F1FF 100%);
    border-left: 4px solid var(--color-primary);
    padding: 32px;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-style: italic;
}

.highlight-box p {
    margin: 0;
}

/* CURVES */
.section-top-curve,
.section-bottom-curve {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.section-top-curve svg,
.section-bottom-curve svg {
    display: block;
    width: 100%;
}

/* PARTICLE ANIMATIONS */
.particles {
    pointer-events: none;
}

.particle {
    opacity: 0.04;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-40px) translateX(20px);
    }
    50% {
        transform: translateY(-80px) translateX(-10px);
    }
    75% {
        transform: translateY(-40px) translateX(-20px);
    }
}

/* FADE IN UP ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease 0s forwards;
    opacity: 0;
}

/* PUNCTUAL CARDS SECTION */
.punctual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.punctual-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F8FC 100%);
    border: 2px solid #E8F1FF;
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.punctual-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    transform: translateY(-8px);
}

.punctual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.punctual-icon svg {
    width: 100%;
    height: 100%;
}

.punctual-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.punctual-card p {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* REMISE LIST */
.remise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.remise-item {
    padding: 32px;
    background: white;
    border-left: 5px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.remise-item:hover {
    box-shadow: var(--shadow-md);
}

.remise-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.remise-item p {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* SPÉCIFIQUES GRID */
.specifiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.specifiques-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    transition: all var(--transition-normal);
}

.specifiques-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.12);
}

.specifiques-card.hover-lift:hover {
    transform: translateY(-6px);
}

.specifiques-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.specifiques-card p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* OPTIONS CONTAINER */
.options-container {
    margin-top: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.option-item {
    padding: 40px 0;
    border-bottom: 1px solid #E8F1FF;
}

.option-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.option-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.option-item p {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: #E8F1FF;
    margin: 0;
}

/* CTA FINAL SECTION */
.services-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052A3 100%);
    color: white;
}

.services-cta-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-cta-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 16px 48px;
    font-size: 1.0625rem;
}

/* BUTTON OVERRIDES FOR CTA */
.services-cta-content .btn-primary {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
}

.services-cta-content .btn-primary:hover {
    background: #F0F7FF;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.services-cta-content .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.services-cta-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-intro h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .punctual-grid,
    .remise-list,
    .specifiques-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding: 60px 0 40px;
    }

    .services-intro h1 {
        font-size: 1.75rem;
    }

    .services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .highlight-box {
        padding: 24px;
        font-size: 1rem;
    }

    .punctual-grid,
    .remise-list,
    .specifiques-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .punctual-card {
        padding: 32px 24px;
    }

    .remise-item,
    .specifiques-card {
        padding: 28px 20px;
    }

    .options-container {
        padding: 0;
    }

    .option-item {
        padding: 28px 0;
    }

    .services-cta-content h2 {
        font-size: 1.75rem;
    }

    .services-cta-content p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        gap: 16px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 14px 32px;
        font-size: 1rem;
        flex: 1;
        min-width: 140px;
    }

    .services-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .services-intro h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .punctual-card,
    .remise-item,
    .specifiques-card {
        padding: 24px 16px;
    }

    .services-cta-content h2 {
        font-size: 1.5rem;
    }

    .services-cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* ====================================
   PAGE SERVICES - NARRATIVE & IMMERSIVE
   ==================================== */

/* === INTRO DE PAGE === */
.services-intro {
    position: relative;
    background: linear-gradient(135deg, #EBF5FF 0%, #F8FAFC 100%);
    padding: 180px 0 120px;
    overflow: hidden;
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.intro-curve svg {
    width: 100%;
    height: 100%;
}

/* === SECTIONS DE SERVICE === */
.service-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.2;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-medium);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-paragraph:nth-child(1) {
    animation-delay: 0.1s;
}

.service-paragraph:nth-child(2) {
    animation-delay: 0.2s;
}

.service-paragraph:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTION 1 - ENTRETIEN QUOTIDIEN === */
.quotidien-section {
    background: white;
    padding: 140px 0;
}

/* Bulles flottantes */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 136, 255, 0.12) 100%);
    border-radius: 50%;
    opacity: 0;
    animation: bubbleRise 8s ease-in-out infinite;
}

.bubble:nth-child(1) {
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bubble:nth-child(2) {
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bubble:nth-child(3) {
    left: 45%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
    animation-duration: 14s;
}

.bubble:nth-child(4) {
    left: 65%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
    animation-duration: 11s;
}

.bubble:nth-child(5) {
    left: 80%;
    width: 70px;
    height: 70px;
    animation-delay: 1.5s;
    animation-duration: 13s;
}

.bubble:nth-child(6) {
    left: 90%;
    width: 45px;
    height: 45px;
    animation-delay: 4s;
    animation-duration: 9s;
}

@keyframes bubbleRise {
    0% {
        bottom: -60px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px) scale(1.1);
    }
}

.quotidien-section[data-section="1"].active .bubble {
    animation-play-state: running;
}

/* === SECTION 2 - INTERVENTIONS PONCTUELLES === */
.ponctuel-section {
    background: linear-gradient(180deg, #FAFBFC 0%, #F8FAFC 100%);
    position: relative;
}

.section-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.reveal-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 50%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ponctuel-section.active .reveal-overlay {
    animation: revealWipe 2s ease-out forwards;
}

@keyframes revealWipe {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* === SECTION 3 - REMISE EN ÉTAT === */
.remise-section {
    background: white;
    position: relative;
}

.cleaning-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 102, 204, 0.08) 30%,
        rgba(0, 136, 255, 0.12) 50%,
        rgba(0, 102, 204, 0.08) 70%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0;
}

.remise-section.active .cleaning-wipe {
    animation: cleaningWipe 3s ease-in-out forwards;
}

@keyframes cleaningWipe {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 200px);
        opacity: 0;
    }
}

/* === SECTION 4 - PRESTATIONS SPÉCIFIQUES === */
.specific-section {
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
    padding: 140px 0;
}

.specific-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.specific-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateX(-30px);
}

.specific-item:nth-child(1) {
    animation: slideInLeft 0.6s ease forwards 0.1s;
}

.specific-item:nth-child(2) {
    animation: slideInLeft 0.6s ease forwards 0.2s;
}

.specific-item:nth-child(3) {
    animation: slideInLeft 0.6s ease forwards 0.3s;
}

.specific-item:nth-child(4) {
    animation: slideInLeft 0.6s ease forwards 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.specific-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.specific-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.specific-content {
    flex: 1;
}

.specific-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.specific-description {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* === SECTION 5 - OPTIONS === */
.options-section {
    background: white;
    padding: 140px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 48px 0;
}

.option-badge {
    padding: 24px 32px;
    background: linear-gradient(135deg, #EBF5FF 0%, #F0F7FF 100%);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: scale(0.9);
}

.option-badge:nth-child(1) { animation: popIn 0.5s ease forwards 0.1s; }
.option-badge:nth-child(2) { animation: popIn 0.5s ease forwards 0.15s; }
.option-badge:nth-child(3) { animation: popIn 0.5s ease forwards 0.2s; }
.option-badge:nth-child(4) { animation: popIn 0.5s ease forwards 0.25s; }
.option-badge:nth-child(5) { animation: popIn 0.5s ease forwards 0.3s; }
.option-badge:nth-child(6) { animation: popIn 0.5s ease forwards 0.35s; }
.option-badge:nth-child(7) { animation: popIn 0.5s ease forwards 0.4s; }
.option-badge:nth-child(8) { animation: popIn 0.5s ease forwards 0.45s; }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.option-badge:hover {
    border-color: var(--color-primary);
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.badge-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: center;
}

/* === CTA FINAL === */
.services-cta-final {
    position: relative;
    background: linear-gradient(135deg, #0066CC 0%, #0088FF 100%);
    padding: 120px 0 140px;
    overflow: hidden;
}

.services-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
}

.cta-curve svg {
    width: 100%;
    height: 100%;
}

/* === NAVIGATION FIXE === */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 2.25rem;
    }

    .service-paragraph {
        font-size: 1.125rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding: 140px 0 80px;
    }

    .intro-title {
        font-size: 2rem;
    }

    .service-section {
        padding: 80px 0;
    }

    .service-title {
        font-size: 1.875rem;
        margin-bottom: 32px;
    }

    .service-paragraph {
        font-size: 1.0625rem;
    }

    .specific-list {
        gap: 24px;
    }

    .specific-item {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .specific-item svg {
        margin-top: 0;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .option-badge {
        padding: 20px 24px;
    }

    .services-cta-final {
        padding: 80px 0 100px;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 1.625rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-paragraph {
        font-size: 1rem;
    }

    .service-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

/* ====================================
   SERVICES PAGE - MODERN GRID STYLES
   Cartes de services avec effets visuels avancés
   ==================================== */

/* === SERVICES GRID CONTAINER === */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 0 auto;
}

/* === SERVICE CARD MODERN (Base) === */
.service-card-modern {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    padding: 40px 28px;
    transition: all var(--transition-normal);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    transform: translateY(-8px);
}

/* Glow effect behind card */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card-modern:hover .card-glow {
    opacity: 1;
}

/* Card Content */
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge Variants */
.badge-populaire {
    background: rgba(0, 102, 204, 0.15);
    color: #004C99;
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.badge-express {
    background: rgba(251, 146, 60, 0.15);
    color: #B45309;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.badge-premium {
    background: rgba(168, 85, 247, 0.15);
    color: #7E22CE;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-hygiene {
    background: rgba(34, 197, 94, 0.15);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-special {
    background: rgba(239, 68, 68, 0.15);
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-remise {
    background: rgba(6, 182, 212, 0.15);
    color: #0891B2;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Card Title */
.card-title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Card Description */
.card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Card Features List */
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 102, 204, 0.15);
    position: relative;
    z-index: 1;
}

.card-features li {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    padding-left: 20px;
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Card Pattern (background decoration) */
.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.pattern-dots {
    background-image: radial-gradient(circle, rgba(0, 102, 204, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
}

.pattern-lines {
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 102, 204, 0.4),
        rgba(0, 102, 204, 0.4) 2px,
        transparent 2px,
        transparent 20px
    );
}

.pattern-diagonal {
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 102, 204, 0.4),
        rgba(0, 102, 204, 0.4) 2px,
        transparent 2px,
        transparent 20px
    );
}

.pattern-bubbles {
    background-image: radial-gradient(circle, rgba(0, 102, 204, 0.4) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.pattern-wavy {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 10 0, 20 10 T 40 10' stroke='rgba(0, 102, 204, 0.4)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: 40px 20px;
}

.pattern-grid {
    background-image: 
        linear-gradient(0deg, rgba(0, 102, 204, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* === CARD SPECIFIC VARIANTS === */
/* Card 1 - Populaire (dots pattern) */
.card-1 .card-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 136, 255, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* Card 2 - Express (lines pattern) */
.card-2 .card-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(251, 146, 60, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* Card 3 - Premium (diagonal pattern) */
.card-3 .card-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* Card 4 - Hygiène (bubbles pattern) */
.card-4 .card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* Card 5 - Spécial (wavy pattern) */
.card-5 .card-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* Card 6 - Remise (grid pattern) */
.card-6 .card-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-md);
    padding: 12px;
}

/* === HOW IT WORKS SECTION === */
.how-it-works-section {
    background: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Steps Container */
.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

/* Step Item */
.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* Step Connectors */
.step-connector {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
    transform: translateX(24%);
}

.steps-wrapper .step-connector:last-child {
    display: none;
}

/* Progress Bar */
.progress-bar-container {
    height: 2px;
    background: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 40px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(0, 102, 204, 0.4);
}

/* === WHY CARDS SECTION === */
.why-card-modern {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.why-card-modern:hover::before {
    left: 100%;
}

.why-card-modern:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.why-card-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === QUICK QUOTE FORM SECTION === */
.quick-quote-section {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F1FF 100%);
    padding: 100px 0;
    position: relative;
}

.quick-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.quote-form-wrapper {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.quote-form-subtitle {
    font-size: 1rem;
    color: var(--color-text-medium);
}

/* Form Elements */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-input {
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    background: var(--color-white);
    color: var(--color-text-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-input.input-error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.04);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-primary);
}

.form-error {
    min-height: 20px;
    font-size: 0.8125rem;
    color: #EF4444;
    margin-top: 4px;
}

.btn-submit {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 12px;
}

.quote-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.badge-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #15803D;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.footer-cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
}

.footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-item.revealed {
    animation: revealFadeInUp 0.8s ease forwards;
}

@keyframes revealFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cascade reveal for grid items */
.services-grid-container .reveal-item {
    animation-delay: 0s;
}

.services-grid-container .reveal-item:nth-child(1) {
    animation-delay: 0.1s;
}

.services-grid-container .reveal-item:nth-child(2) {
    animation-delay: 0.15s;
}

.services-grid-container .reveal-item:nth-child(3) {
    animation-delay: 0.2s;
}

.services-grid-container .reveal-item:nth-child(4) {
    animation-delay: 0.25s;
}

.services-grid-container .reveal-item:nth-child(5) {
    animation-delay: 0.3s;
}

.services-grid-container .reveal-item:nth-child(6) {
    animation-delay: 0.35s;
}

/* === RESPONSIVE SERVICES === */

@media (max-width: 1024px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps-wrapper {
        gap: 32px;
    }

    .quote-form-wrapper {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-modern {
        padding: 28px 20px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-desc {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .card-features {
        margin-bottom: 16px;
        padding-bottom: 16px;
        gap: 6px;
    }

    .card-feature-item {
        font-size: 0.8125rem;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .steps-wrapper .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-item h3 {
        font-size: 1.125rem;
    }

    .step-item p {
        font-size: 0.9375rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card-modern {
        padding: 32px 24px;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
    }

    .why-card-title {
        font-size: 1.125rem;
    }

    .why-card-text {
        font-size: 0.9375rem;
    }

    .quote-form-wrapper {
        padding: 32px 20px;
    }

    .quote-form-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .footer-cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .footer-cta-content p {
        font-size: 1rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .footer-cta-buttons .btn-primary,
    .footer-cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-services {
        padding: 70px 0 50px;
    }
    
    .hero-services-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-services-subtitle {
        font-size: 1rem;
    }

    .service-card-modern {
        padding: 24px 16px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .card-feature-item {
        font-size: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .step-item h3 {
        font-size: 1rem;
    }

    .step-item p {
        font-size: 0.875rem;
    }

    .why-card-modern {
        padding: 24px 16px;
    }

    .why-card-icon {
        width: 56px;
        height: 56px;
    }

    .why-card-title {
        font-size: 1rem;
    }

    .why-card-text {
        font-size: 0.875rem;
    }

    .quote-form-wrapper {
        padding: 24px 16px;
    }

    .quote-form-title {
        font-size: 1.375rem;
    }

    .form-label {
        font-size: 0.875rem;
    }

    .quote-badge {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8125rem;
    }

    .footer-cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .footer-cta-content p {
        font-size: 1rem;
    }
}
