/* ========================================
   ANTI-GUÊPES 95 - STYLE COMPLET
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d2d2d;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- COULEURS --- */
:root {
    --primary: #e8a000;
    --primary-dark: #c88800;
    --secondary: #1a1a2e;
    --accent: #e63946;
    --dark: #16213e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    padding: 12px 0;
}

.header.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--primary);
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover {
    background: rgba(232, 160, 0, 0.15);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--dark) !important;
    font-weight: 700;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- URGENCE BAR --- */
.urgence-bar {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 64px;
}

.urgence-bar a {
    color: var(--white);
    font-size: 1.1rem;
}

.urgence-bar a:hover {
    text-decoration: underline;
}

.urgence-sep {
    margin: 0 12px;
    opacity: 0.5;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 0, 0.15) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(232, 160, 0, 0.2);
    border: 1px solid rgba(232, 160, 0, 0.4);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 160, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* --- STATS --- */
.stats-section {
    background: var(--primary);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    color: var(--dark);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.85;
}

/* --- SECTIONS --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* --- SERVICES --- */
.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--dark);
}

.service-card li::before {
    content: '\2713 ';
    color: var(--primary);
    font-weight: 700;
}

/* --- NUISIBLES --- */
.nuisibles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.nuisible-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.nuisible-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.nuisible-header {
    height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.nuisible-header.frelon-asiatique {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.nuisible-header.frelon-europeen {
    background: linear-gradient(135deg, #8b6914, #6b4f0a);
}

.nuisible-header.guepe {
    background: linear-gradient(135deg, #c8a000, #a08000);
}

.nuisible-danger {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.nuisible-danger.moderate {
    background: #e67e22;
}

.nuisible-body {
    padding: 24px;
}

.nuisible-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.nuisible-latin {
    font-style: italic;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.nuisible-specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.nuisible-specs td {
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.nuisible-specs td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 35%;
}

.nuisible-warning {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.nuisible-info {
    background: rgba(232, 160, 0, 0.1);
    color: var(--primary-dark);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.nuisible-alert {
    background: linear-gradient(135deg, #e63946, #c0392b);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    text-align: center;
}

.nuisible-alert h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.nuisible-alert p {
    font-size: 1rem;
    line-height: 1.6;
}

/* --- MÉTHODE --- */
.methode-section {
    background: var(--light);
}

.methode-timeline {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.methode-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.methode-step {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.3);
}

.step-content {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* --- AVANTAGES --- */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.avantage-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-bottom: 4px solid transparent;
}

.avantage-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.avantage-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.avantage-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.avantage-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* --- ZONE --- */
.zone-section {
    background: var(--light);
}

.zone-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.zone-description p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.zone-description h3 {
    color: var(--dark);
    margin-bottom: 16px;
}

.zone-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zone-cities ul li {
    padding: 4px 0;
    font-size: 0.92rem;
    color: var(--dark);
}

.zone-cities ul li::before {
    content: '\1F4CD ';
}

.map-box {
    background: var(--dark);
    color: var(--white);
    padding: 60px 30px;
    border-radius: var(--radius);
    text-align: center;
}

.map-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.map-box p {
    font-size: 1.1rem;
    font-weight: 600;
}

.map-sub {
    font-size: 0.9rem !important;
    opacity: 0.7;
    font-weight: 400 !important;
    margin-top: 8px;
}

/* --- TARIFS --- */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.tarif-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.tarif-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.tarif-popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.tarif-popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.tarif-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.tarif-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.tarif-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tarif-price {
    margin-bottom: 24px;
}

.tarif-from {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

.tarif-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
}

.tarif-amount sup {
    font-size: 1.5rem;
}

.tarif-features {
    text-align: left;
    margin-bottom: 24px;
}

.tarif-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark);
}

.tarif-note {
    background: var(--light);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

/* --- FAQ --- */
.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: all var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform var(--transition);
    color: var(--primary);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- AVIS --- */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.avis-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.avis-stars {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.avis-text {
    color: var(--gray);
    font-size: 0.98rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.avis-author {
    font-size: 0.9rem;
    color: var(--dark);
}

/* --- CONTACT --- */
.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-item a {
    color: var(--white);
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.contact-socials {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--white);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
}

/* --- FORM --- */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.6) !important;
}

.checkbox-label input {
    width: auto !important;
    margin-top: 3px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

/* --- CTA FINAL --- */
.cta-final {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    text-align: center;
    padding: 60px 20px;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-final .btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-final .btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-final .btn-secondary {
    color: var(--dark);
    border-color: var(--dark);
}

.cta-final .btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

/* --- FOOTER --- */
.footer {
    background: #0d1117;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--primary);
}

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-phone 2s infinite;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(230, 57, 70, 0.6);
}

@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .services-grid,
    .nuisibles-grid,
    .avantages-grid,
    .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zone-content {
        grid-template-columns: 1fr;
    }

    .zone-cities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid,
    .nuisibles-grid,
    .avantages-grid,
    .tarifs-grid,
    .avis-grid {
        grid-template-columns: 1fr;
    }

    .tarif-popular {
        transform: none;
    }

    .tarif-popular:hover {
        transform: translateY(-6px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section {
        padding: 50px 0;
    }

    .zone-cities {
        grid-template-columns: 1fr;
    }

    .methode-timeline::before {
        left: 25px;
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .urgence-sep {
        display: none;
    }

    .urgence-bar {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .step-content {
        padding: 18px 20px;
    }
}