:root {
    --bg: #f3f0e8;
    --surface: #fffdfa;
    --text: #1d1b18;
    --muted: #685f57;
    --line: rgba(17, 17, 17, 0.08);
    --accent: #cf3f24;
    --accent-dark: #982716;
    --accent-soft: rgba(207, 63, 36, 0.12);
    --gold: #d1a35c;
    --shadow: 0 24px 60px rgba(34, 26, 18, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
* { min-width: 0; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at top left, rgba(209, 163, 92, 0.14), transparent 28%), linear-gradient(180deg, #f7f3ec 0%, #f0ebe2 100%);
    color: var(--text);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; overflow-wrap: anywhere; }
img { max-width: 100%; display: block; }
.site-shell { overflow: clip; }
h1, h2, h3, h4, p, li, span, a { overflow-wrap: anywhere; word-break: normal; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(18, 16, 14, 0.88);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar, .nav-wrap, .nav-links, .brand, .hero-actions, .hero-stats, .stats-grid, .section-head, .service-list, .feature-grid, .footer-grid, .contact-cards, .social-links {
    display: flex;
    gap: 16px;
}

.topbar { justify-content: space-between; padding: 10px 0; font-size: 0.9rem; color: rgba(255,255,255,0.78); flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 10px; }
.nav-wrap { align-items: center; justify-content: space-between; padding: 18px 0; position: relative; gap: 16px; }
.brand { align-items: center; gap: 14px; flex: 1 1 260px; }
.brand strong, .hero-copy h1, .section-title, .page-hero h1, .cta-panel h2 { font-family: 'Sora', sans-serif; }
.brand strong { display: block; font-size: 1.02rem; }
.brand small { color: rgba(255,255,255,0.65); }
.brand > span:last-child { min-width: 0; }

.brand-mark {
    width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    box-shadow: 0 12px 26px rgba(207, 63, 36, 0.35);
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.4rem;
}

.nav-links { align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: rgba(255,255,255,0.82); font-weight: 700; padding: 8px 0; position: relative; }
.nav-links a.active, .nav-links a:hover { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--gold);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px;
    border-radius: 999px; font-weight: 800; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    max-width: 100%;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(145deg, var(--accent), var(--accent-dark)); box-shadow: 0 12px 30px rgba(207, 63, 36, 0.28); }
.btn-secondary { color: #fff; background: #26211c; }
.btn-outline { border: 1px solid var(--line); background: rgba(255,255,255,0.7); }
.btn-whatsapp { color: #fff; background: linear-gradient(145deg, #1ebc5a, #11853d); box-shadow: 0 12px 30px rgba(17, 133, 61, 0.28); }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 1.4rem; }

.hero { padding: 72px 0 40px; }
.hero-panel, .page-hero, .cta-panel, .info-card, .contact-panel, .service-card, .region-card, .about-story, .about-strip { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.hero-panel {
    position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr; min-height: 560px;
    background: linear-gradient(115deg, rgba(15,14,14,0.92) 0%, rgba(15,14,14,0.72) 48%, rgba(15,14,14,0.3) 100%), url('https://commons.wikimedia.org/wiki/Special:Redirect/file/Tow%20Truck%20-%20Depannage.jpg') center/cover no-repeat;
}
.hero-panel::after {
    content: ''; position: absolute; inset: auto auto -80px -60px; width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 163, 92, 0.3), transparent 70%);
}

.hero-copy, .hero-aside { position: relative; z-index: 1; }
.hero-copy { padding: 88px 72px; color: #fff; max-width: 760px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: #ffe2c6; font-size: 0.92rem; margin-bottom: 22px;
}
.hero-copy h1, .page-hero h1 { margin: 0 0 18px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.02; }
.hero-copy p, .page-hero p, .section-lead, .service-card p, .region-card p, .about-story p, .info-card p, .contact-panel p, .cta-panel p { font-size: 1.05rem; line-height: 1.8; }
.hero-copy p { max-width: 520px; color: rgba(255,255,255,0.84); }
.hero-actions { margin-top: 28px; flex-wrap: wrap; }
.hero-cta-stack { gap: 18px; }
.hero-cta-stack .btn { min-width: min(240px, 100%); font-size: 1.02rem; padding: 16px 28px; }
.hero-proof { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-proof-item {
    min-width: 220px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}
.hero-proof-item strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.hero-proof-item span { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.hero-stats { margin-top: 34px; flex-wrap: wrap; }
.stat-chip {
    padding: 14px 18px; border-radius: 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}
.stat-chip strong { display: block; font-size: 1.2rem; }
.hero-aside { padding: 34px; align-self: end; }
.info-card { margin-left: auto; max-width: 340px; background: rgba(255,249,243,0.94); padding: 28px; }
.info-card .info-label { color: var(--accent); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.hero-glow {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

.hero-glow::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -45%;
    width: 38%;
    height: 160%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.34), rgba(255,255,255,0));
    transform: rotate(18deg);
    animation: shineSweep 2.6s infinite linear;
}

.hero-glow-call {
    box-shadow: 0 0 0 0 rgba(207, 63, 36, 0.46), 0 12px 30px rgba(207, 63, 36, 0.28);
}

.hero-glow-whatsapp {
    box-shadow: 0 0 0 0 rgba(17, 133, 61, 0.42), 0 12px 30px rgba(17, 133, 61, 0.28);
}

@keyframes pulseGlow {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

@keyframes shineSweep {
    0% { left: -45%; }
    100% { left: 120%; }
}

.section { padding: 36px 0 88px; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(244,238,227,0.9)); }
.section-head { justify-content: space-between; align-items: end; margin-bottom: 28px; }
.section-title { font-size: clamp(2rem, 3vw, 3rem); margin: 0; }
.section-lead { max-width: 620px; color: var(--muted); }
.stats-grid, .service-list, .feature-grid, .contact-cards { flex-wrap: wrap; }
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
}
.home-intro { display: grid; gap: 28px; }
.executive-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(247,242,234,0.92));
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: var(--shadow);
}
.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(207, 63, 36, 0.1);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}
.executive-copy h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
}
.executive-copy p { margin: 0; color: var(--muted); line-height: 1.8; }
.executive-list { display: grid; gap: 14px; align-content: center; }
.executive-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(17,17,17,0.06);
}
.executive-item i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
}

.highlight-card, .service-card, .feature-card, .region-card, .contact-panel { background: var(--surface); border: 1px solid var(--line); }
.highlight-card {
    flex: 1 1 220px; padding: 26px; border-radius: var(--radius-md); background: rgba(255,255,255,0.7); border: 1px solid rgba(17,17,17,0.06);
}
.highlight-card strong { display: block; font-size: 2rem; color: var(--accent); margin-bottom: 8px; }

.service-card, .feature-card, .region-card, .contact-panel { flex: 1 1 280px; padding: 28px; border-radius: var(--radius-md); }
.region-link { display: block; }
.service-card i, .feature-card i, .region-card i, .contact-panel i {
    width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--accent-soft); color: var(--accent); font-size: 1.35rem; margin-bottom: 18px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.process-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: var(--shadow);
}
.process-no {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}
.process-card h3 { margin: 0 0 10px; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.seo-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: var(--shadow);
}
.seo-card h2, .seo-card h3 {
    margin-top: 0;
    font-family: 'Sora', sans-serif;
}
.seo-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.seo-list li {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(247,242,234,0.92);
    border: 1px solid rgba(17,17,17,0.06);
}
.faq-grid {
    display: grid;
    gap: 16px;
}
.faq-item {
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: var(--shadow);
}
.faq-item h3 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
}
.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}
.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.inline-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(17,17,17,0.06);
    font-weight: 700;
}
.service-card:hover, .feature-card:hover, .region-card:hover, .highlight-card:hover, .contact-panel:hover {
    transform: translateY(-6px); transition: transform 180ms ease, box-shadow 180ms ease; box-shadow: 0 18px 36px rgba(34, 26, 18, 0.1);
}

.feature-band {
    padding: 88px 0; background: linear-gradient(135deg, rgba(17,17,17,0.94), rgba(37,27,18,0.92)), radial-gradient(circle at top right, rgba(209,163,92,0.2), transparent 28%); color: #fff;
}
.feature-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.feature-card p { color: rgba(255,255,255,0.76); }

.page-hero {
    margin: 36px auto 0; padding: 64px;
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(17,17,17,0.66)), url('https://commons.wikimedia.org/wiki/Special:Redirect/file/Tow%20Truck%20-%20Depannage.jpg') center/cover no-repeat;
    color: #fff;
}
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.about-story { padding: 42px; background: var(--surface); border: 1px solid var(--line); }
.about-strip { margin-top: 24px; padding: 28px; background: linear-gradient(145deg, #1a1714, #30261d); color: #fff5eb; }

.cta-panel {
    padding: 36px; background: linear-gradient(145deg, rgba(207,63,36,0.92), rgba(152,39,22,0.96)), radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 22%); color: #fff;
}
.contact-cards { margin-bottom: 24px; }
.contact-panel p, .contact-panel a { color: var(--muted); }
.contact-map { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); min-height: 360px; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

.site-footer { margin-top: 64px; background: #151311; color: rgba(255,255,255,0.82); }
.footer-grid { padding: 54px 0 75px; flex-wrap: wrap; }
.footer-grid > div { flex: 1 1 220px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 12px; }
.footer-links a, .footer-links li { color: rgba(255,255,255,0.72); }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); }
.footer-bottom { padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.56); }
.site-credit {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.site-credit::-webkit-scrollbar { display: none; }
.site-credit-label {
    color: rgba(255,255,255,0.68);
    font-weight: 700;
    flex: 0 0 auto;
}
.site-credit strong {
    color: #fff;
    flex: 0 0 auto;
}
.site-credit a {
    color: #ffd9a8;
    font-weight: 700;
    flex: 0 0 auto;
}

.floating-call {
    position: fixed; right: 18px; bottom: 18px; z-index: 40; background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: #fff; padding: 14px 18px; border-radius: 999px; box-shadow: 0 16px 30px rgba(152,39,22,0.28); display: inline-flex; align-items: center; gap: 10px;
}

@media (max-width: 980px) {
    .topbar { display: none; }
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: calc(100% + 12px); right: 16px; left: 16px; padding: 18px; border-radius: 22px;
        background: rgba(18,16,14,0.98); flex-direction: column; align-items: stretch; display: none; box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .hero-panel { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy, .hero-aside, .page-hero { padding: 34px 24px; }
    .hero-aside { display: none; }
    .section-head { flex-direction: column; align-items: start; }
    .executive-panel,
    .content-grid,
    .process-grid { grid-template-columns: 1fr; }
    .floating-call span { display: none; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 20px, 1180px); }
    .hero-copy h1, .page-hero h1 { font-size: 2.3rem; }
    .btn { width: 100%; }
    .hero-actions { flex-direction: column; }
    .site-footer {
        padding-bottom: 92px;
    }
    .footer-bottom {
        padding-bottom: 24px;
    }
    .site-credit {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        font-size: 0.83rem;
        line-height: 1.2;
    }
    .floating-call {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: auto;
        justify-content: center;
        padding: 14px 16px;
        border-radius: 18px;
        font-size: 0.98rem;
    }
    .floating-call span {
        display: inline;
    }
}
