/* ===== VARIABLES OKLCH - JAUNE ===== */
:root {
    --yellow: oklch(85% 0.18 90);
    --yellow-dark: oklch(75% 0.19 85);
    --yellow-light: oklch(92% 0.14 95);
    --cream: oklch(97% 0.02 90);
    --dark: oklch(18% 0.01 250);
    --dark-soft: oklch(22% 0.01 250);
    --white: oklch(100% 0 0);
    --gray-light: oklch(96% 0 0);
    --gray: oklch(55% 0 0);
    --success: oklch(65% 0.2 155);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

/* ===== HEADER ===== */
.header-top { background: var(--dark); padding: 12px 0; }
.header-top-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.quick-contact { display: flex; gap: 30px; flex-wrap: wrap; }
.quick-contact a { color: oklch(90% 0 0); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.quick-contact a:hover { color: var(--yellow); }
.quick-contact i { color: var(--yellow); }
.social-top { display: flex; gap: 12px; }
.social-top a { color: oklch(70% 0 0); font-size: 16px; transition: color 0.3s; }
.social-top a:hover { color: var(--yellow); }

header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px oklch(0% 0 0 / 0.08); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 80px; width: auto; }
.nav-menu { display: flex; gap: 35px; list-style: none; align-items: center; }
.nav-menu a { color: var(--dark); text-decoration: none; font-weight: 500; font-size: 15px; position: relative; padding: 8px 0; transition: color 0.3s; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--yellow-dark); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 15px; align-items: center; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--yellow); color: var(--dark); box-shadow: 0 4px 20px oklch(85% 0.18 90 / 0.4); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 30px oklch(85% 0.18 90 / 0.5); }
.btn-call { background: var(--success); color: var(--white); animation: pulse-call 2s infinite; }
@keyframes pulse-call { 0%, 100% { box-shadow: 0 0 0 0 oklch(65% 0.2 155 / 0.4); } 50% { box-shadow: 0 0 0 15px oklch(65% 0.2 155 / 0); } }
.btn-call:hover { background: oklch(55% 0.2 155); transform: scale(1.05); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--dark); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 28px; color: var(--dark); cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, oklch(18% 0.01 250 / 0.88) 0%, oklch(22% 0.01 250 / 0.75) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-grid > div:first-child { display: flex; flex-direction: column; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: oklch(85% 0.18 90 / 0.2); color: var(--yellow); padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; margin-bottom: 25px; backdrop-filter: blur(10px); border: 1px solid oklch(85% 0.18 90 / 0.3); width: fit-content; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 54px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; color: var(--white); letter-spacing: -1px; }
.hero-title .highlight { color: var(--yellow); }
.hero-description { font-size: 18px; color: oklch(85% 0 0); margin-bottom: 35px; line-height: 1.8; }
.hero-description strong { color: var(--white); }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 20px; }
.stat-card { text-align: center; padding: 28px 25px; background: oklch(100% 0 0 / 0.1); backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid oklch(100% 0 0 / 0.15); }
.stat-number { font-size: 42px; font-weight: 800; color: var(--yellow); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: oklch(80% 0 0); font-weight: 500; }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    fill: none;
    stroke: var(--yellow);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-dot {
    fill: var(--yellow);
    animation: scroll-down 1.5s infinite;
}

.scroll-text {
    font-size: 12px;
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ===== PAGE HEADER ===== */
.page-header { 
    padding: 140px 0 100px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}
.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, oklch(18% 0.01 250 / 0.9) 0%, oklch(22% 0.01 250 / 0.8) 100%);
    z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -1px; }
.page-header h1 .highlight { color: var(--yellow); }
.page-header p { font-size: 18px; color: oklch(80% 0 0); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 25px; font-size: 14px; }
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb span { color: oklch(60% 0 0); }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 50px 0; background: var(--dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.trust-item { display: flex; align-items: center; gap: 18px; }
.trust-icon { width: 60px; height: 60px; background: oklch(85% 0.18 90 / 0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon i { font-size: 26px; color: var(--yellow); }
.trust-text h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.trust-text p { color: oklch(70% 0 0); font-size: 13px; }

/* ===== COCON SECTION ===== */
.cocon-section { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.cocon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cocon-content { position: relative; z-index: 2; }
.cocon-tag { display: inline-block; background: oklch(85% 0.18 90 / 0.2); color: var(--yellow-dark); padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.cocon-title { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: var(--dark); margin-bottom: 25px; line-height: 1.15; letter-spacing: -1px; }
.cocon-title .highlight { color: var(--yellow-dark); }
.cocon-description { font-size: 18px; color: var(--gray); line-height: 1.9; margin-bottom: 30px; }
.cocon-description strong { color: var(--dark); }
.cocon-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 35px; }
.cocon-feature { display: flex; align-items: center; gap: 15px; font-size: 16px; color: var(--dark); font-weight: 500; }
.cocon-feature i { width: 30px; height: 30px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 14px; }
.cocon-image { position: relative; }
.cocon-image img { width: 100%; border-radius: 24px; box-shadow: 0 30px 80px oklch(0% 0 0 / 0.15); }
.cocon-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 20px 30px; border-radius: 16px; box-shadow: 0 15px 50px oklch(0% 0 0 / 0.12); }
.cocon-badge-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--yellow), var(--yellow-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 22px; margin-bottom: 10px; }
.cocon-badge h4 { font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.cocon-badge p { font-size: 13px; color: var(--gray); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag { display: inline-block; background: oklch(85% 0.18 90 / 0.15); color: var(--yellow-dark); padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.section-title { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800; color: var(--dark); margin-bottom: 20px; letter-spacing: -1px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-dark .section-subtitle { color: oklch(70% 0 0); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card { background: var(--cream); border-radius: 24px; padding: 50px 40px; position: relative; overflow: hidden; transition: all 0.4s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--yellow), var(--yellow-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px oklch(85% 0.18 90 / 0.2); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--yellow), var(--yellow-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--dark); margin-bottom: 30px; box-shadow: 0 10px 30px oklch(85% 0.18 90 / 0.3); }
.service-card h3 { font-size: 26px; color: var(--dark); margin-bottom: 15px; font-weight: 700; }
.service-card p { color: var(--gray); margin-bottom: 25px; line-height: 1.8; }
.service-list { list-style: none; }
.service-list li { padding: 12px 0; display: flex; align-items: center; gap: 12px; color: var(--dark); font-weight: 500; border-bottom: 1px solid oklch(0% 0 0 / 0.05); }
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--yellow-dark); font-size: 18px; }
.service-price { margin-top: 25px; padding-top: 25px; border-top: 2px dashed oklch(85% 0.18 90 / 0.4); display: flex; justify-content: space-between; align-items: center; }
.price-tag { font-size: 28px; font-weight: 800; color: var(--yellow-dark); }
.price-tag span { font-size: 16px; font-weight: 500; color: var(--gray); }

/* ===== TARIFS ===== */
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tarif-card { background: var(--white); border-radius: 24px; padding: 45px 35px; text-align: center; border: 2px solid transparent; transition: all 0.4s; position: relative; }
.tarif-card.featured { border-color: var(--yellow); transform: scale(1.05); box-shadow: 0 25px 60px oklch(85% 0.18 90 / 0.25); }
.tarif-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--dark); padding: 8px 25px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.tarif-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px oklch(0% 0 0 / 0.1); }
.tarif-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.tarif-icon { width: 70px; height: 70px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 30px; color: var(--yellow-dark); }
.tarif-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.tarif-card .description { color: var(--gray); font-size: 14px; margin-bottom: 25px; }
.tarif-price { font-size: 48px; font-weight: 800; color: var(--yellow-dark); margin-bottom: 25px; }
.tarif-price span { font-size: 18px; color: var(--gray); font-weight: 500; }
.tarif-features { list-style: none; text-align: left; margin-bottom: 30px; }
.tarif-features li { padding: 12px 0; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 12px; font-size: 15px; }
.tarif-features li i { color: var(--success); font-size: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { background: var(--dark); border-radius: 24px; padding: 50px; color: var(--white); position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, oklch(85% 0.18 90 / 0.2), transparent); border-radius: 50%; }
.contact-info h3 { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 15px; color: var(--yellow); }
.contact-info > p { color: oklch(70% 0 0); margin-bottom: 40px; font-size: 16px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 30px; }
.contact-icon { width: 55px; height: 55px; background: oklch(85% 0.18 90 / 0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { font-size: 22px; color: var(--yellow); }
.contact-details h4 { color: var(--yellow); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.contact-details p, .contact-details a { color: var(--white); font-size: 17px; text-decoration: none; transition: color 0.3s; }
.contact-details a:hover { color: var(--yellow); }
.call-box { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); border-radius: 16px; padding: 30px; margin-top: 40px; text-align: center; }
.call-box h4 { color: var(--dark); font-size: 18px; margin-bottom: 15px; }
.call-box a { display: inline-flex; align-items: center; gap: 10px; color: var(--dark); font-size: 28px; font-weight: 800; text-decoration: none; }

/* ===== FORM ===== */
.form-container { background: var(--cream); border-radius: 24px; padding: 50px; }
.form-container h3 { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-container > p { color: var(--gray); margin-bottom: 35px; }
.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: var(--dark); margin-bottom: 10px; font-size: 14px; }
.form-group label .required { color: var(--yellow-dark); }
.form-group input, .form-group select, .form-group textarea { padding: 16px 20px; border: 2px solid oklch(90% 0 0); border-radius: 12px; font-size: 15px; font-family: inherit; transition: all 0.3s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px oklch(85% 0.18 90 / 0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; background: var(--yellow); color: var(--dark); padding: 18px; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
.submit-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 30px oklch(85% 0.18 90 / 0.4); }
.form-footer { text-align: center; margin-top: 20px; color: var(--gray); font-size: 13px; }
.form-footer i { color: var(--yellow-dark); }
.success-message { display: none; background: linear-gradient(135deg, var(--success), oklch(55% 0.2 155)); color: var(--white); padding: 20px; border-radius: 12px; margin-bottom: 25px; text-align: center; font-weight: 600; }

/* ===== MAP ===== */
.map-container { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px oklch(0% 0 0 / 0.1); }
.map-container iframe { width: 100%; height: 450px; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: var(--white); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-about h3 { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--yellow); margin-bottom: 20px; }
.footer-about p { color: oklch(70% 0 0); line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 45px; height: 45px; background: oklch(85% 0.18 90 / 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 18px; transition: all 0.3s; }
.footer-social a:hover { background: var(--yellow); color: var(--dark); transform: translateY(-3px); }
.footer-section h4 { color: var(--yellow); font-size: 18px; margin-bottom: 25px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a, .footer-links span { color: oklch(70% 0 0); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.footer-bottom { border-top: 1px solid oklch(100% 0 0 / 0.1); padding-top: 30px; text-align: center; }
.footer-bottom p { color: oklch(50% 0 0); font-size: 14px; }
.footer-seo { margin-top: 15px; font-size: 12px; color: oklch(40% 0 0); }

/* ===== FLOATING CTA - PHONE ONLY ===== */
.floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.floating-btn { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 26px; text-decoration: none; box-shadow: 0 8px 30px oklch(0% 0 0 / 0.3); transition: all 0.3s; }
.floating-btn.phone { background: var(--success); animation: pulse-phone 2s infinite; }
@keyframes pulse-phone { 0%, 100% { box-shadow: 0 0 0 0 oklch(65% 0.2 155 / 0.5); } 50% { box-shadow: 0 0 0 20px oklch(65% 0.2 155 / 0); } }
.floating-btn:hover { transform: scale(1.1); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); text-align: center; }
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.cta-section p { color: var(--dark-soft); font-size: 18px; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.85; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-buttons .btn-white { background: var(--dark); color: var(--yellow); }
.cta-buttons .btn-white:hover { background: var(--dark-soft); }
.cta-buttons .btn-outline { border-color: var(--dark); color: var(--dark); }
.cta-buttons .btn-outline:hover { background: var(--dark); color: var(--yellow); }

/* ===== PROMO POPUP ===== */
.promo-popup {
    position: fixed;
    inset: 0;
    background: oklch(0% 0 0 / 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 60px oklch(0% 0 0 / 0.3);
    border: 3px solid var(--yellow);
}

.promo-popup.active .promo-popup-content {
    transform: scale(1) translateY(0);
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.promo-close:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.promo-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

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

.promo-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-discount {
    font-size: 72px;
    font-weight: 900;
    color: var(--yellow-dark);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 oklch(85% 0.18 90 / 0.3);
}

.promo-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.promo-text strong {
    color: var(--dark);
}

.promo-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.promo-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
    margin-bottom: 15px;
}

.promo-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.promo-phone:hover {
    color: var(--yellow-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid, .cocon-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-title { font-size: 42px; }
    .cocon-title { font-size: 38px; }
    .services-grid, .tarifs-grid { grid-template-columns: 1fr; }
    .tarif-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .header-top-content { justify-content: center; }
    .quick-contact { gap: 15px; font-size: 13px; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 30px; gap: 20px; box-shadow: 0 20px 40px oklch(0% 0 0 / 0.1); }
    .nav-menu.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .nav-cta { display: none; }
    .logo img { height: 65px; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-content { padding: 40px 0; }
    .hero-title { font-size: 32px; }
    .page-header { padding: 100px 0 60px; }
    .page-header h1 { font-size: 32px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-buttons { margin-bottom: 30px; }
    .stat-card { padding: 15px 10px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 12px; }
    .trust-grid { grid-template-columns: 1fr; gap: 20px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .cocon-section { padding: 60px 0; }
    .cocon-title { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .cocon-badge { position: relative; bottom: auto; left: auto; margin-top: 20px; }
    .service-card { padding: 30px 25px; }
    .contact-info, .form-container { padding: 30px; }
    .floating-cta { bottom: 20px; right: 20px; }
    .floating-btn { width: 55px; height: 55px; font-size: 22px; }
    .scroll-indicator { display: none; }
    .promo-popup-content { padding: 40px 25px; max-width: 350px; }
    .promo-icon { font-size: 50px; }
    .promo-title { font-size: 24px; }
    .promo-discount { font-size: 56px; }
    .promo-text { font-size: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .hero-stats { grid-template-columns: 1fr; gap: 10px; }
    .stat-card { padding: 12px; display: flex; align-items: center; justify-content: center; gap: 15px; }
    .stat-number { font-size: 24px; margin-bottom: 0; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
    .btn { padding: 14px 20px; font-size: 14px; }
    .page-header h1 { font-size: 26px; }
    .section-title { font-size: 24px; }
    .cocon-title { font-size: 26px; }
    .service-card h3 { font-size: 22px; }
    .price-tag { font-size: 24px; }
}

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

.partner-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px oklch(0% 0 0 / 0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px oklch(0% 0 0 / 0.15);
}

.partner-header {
    background: var(--gray-light);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.partner-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.partner-logo a {
    display: block;
    transition: transform 0.3s;
}

.partner-logo a:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
}

.partner-badge i {
    color: var(--yellow-dark);
}

.partner-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.partner-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.partner-content h3 a:hover {
    color: var(--yellow-dark);
}

.partner-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-category i {
    color: var(--yellow-dark);
    font-size: 16px;
}

.partner-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.partner-description strong {
    color: var(--dark);
    font-weight: 600;
}

.partner-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.partner-feature i {
    color: var(--success);
    font-size: 16px;
    flex-shrink: 0;
}

.partner-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 25px;
    border-top: 2px dashed oklch(0% 0 0 / 0.08);
}

.partner-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.partner-info-item i {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.partner-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.partner-info-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.partner-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.partner-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Placeholder card */
.partner-placeholder {
    background: linear-gradient(135deg, var(--cream), var(--gray-light));
    border: 2px dashed var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-placeholder-content {
    text-align: center;
    padding: 40px;
}

.partner-placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--dark);
}

.partner-placeholder-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.partner-placeholder-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Responsive Partners */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-header {
        padding: 30px;
    }
    
    .partner-content {
        padding: 30px;
    }
    
    .partner-content h3 {
        font-size: 24px;
    }
    
    .partner-features {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .partner-header {
        padding: 20px;
    }
    
    .partner-content {
        padding: 20px;
    }
    
    .partner-content h3 {
        font-size: 22px;
    }
    
    .partner-logo {
        min-height: 80px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
}
