/* ============================================================
   BOUSTACOM â€” Styles v6 â€” SVG Icons Edition
   ============================================================ */

:root {
    --bg: #000;
    --bg-alt: #020f27;
    --surface: #0a1628;
    --text: #fff;
    --text-light: #b8c5d6;
    --text-muted: #6b7a8f;
    --accent: #00d4ff;
    --accent-start: #00f4ff;
    --accent-end: #1e7eff;
    --border: rgba(255,255,255,0.1);
    --border-accent: rgba(0,244,255,0.3);
    --glow: rgba(0,244,255,0.25);
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 110px;
    --marquee-h: 38px;
    --radius: 12px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent-start); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === SVG ICONS === */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* === UTILITIES === */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.skip-link {
    position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; padding: 8px 16px; border-radius: 6px; z-index: 9999;
}
.skip-link:focus { top: 10px; }

/* === MARQUEE BANNER === */
.marquee-banner {
    position: fixed; top: 0; left: 0; right: 0; height: var(--marquee-h);
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    overflow: hidden; z-index: 1001;
    display: flex; align-items: center;
}
.marquee-track {
    display: flex; gap: 60px;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--font-heading); font-size: 13px; color: #fff;
    text-transform: uppercase; letter-spacing: 0.08em;
    flex-shrink: 0;
    display: flex; align-items: center; gap: 8px;
}
.marquee-track .icon { width: 16px; height: 16px; stroke: #fff; }
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SCROLL & TO-TOP === */
.scroll-indicator { position: fixed; top: var(--marquee-h); left: 0; right: 0; height: 3px; background: var(--border); z-index: 999; }
.scroll-progress { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-start), var(--accent-end)); }
.to-top {
    position: fixed; bottom: 25px; right: 25px; width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: 0.3s; z-index: 100; box-shadow: 0 0 15px var(--glow);
}
.to-top .icon { stroke: #000; }
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* === FLOATING MENU BUTTON === */
.floating-menu-btn {
    display: none;
    position: fixed; bottom: 25px; left: 25px; width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-radius: 50%; z-index: 1002;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    box-shadow: 0 4px 20px var(--glow);
}
.floating-menu-btn span {
    display: block; width: 22px; height: 2px; background: #000;
    transition: 0.3s;
}
.floating-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.floating-menu-btn.active span:nth-child(2) { opacity: 0; }
.floating-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === MOBILE NAV OVERLAY === */
.mobile-nav-overlay {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97); z-index: 1001;
    align-items: center; justify-content: center;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-content ul { text-align: center; }
.mobile-nav-content li { margin-bottom: 20px; }
.mobile-nav-link {
    font-family: var(--font-heading); font-size: 24px; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-link.highlight {
    color: var(--accent); border: 2px solid var(--accent);
    padding: 12px 25px; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; margin-top: 15px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-size: 14px; font-weight: 600;
    border-radius: 8px; transition: 0.3s;
}
.btn .icon { width: 18px; height: 18px; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000;
}
.btn-primary:hover { box-shadow: 0 0 25px var(--glow); transform: translateY(-2px); color: #000; }
.btn-primary .icon { stroke: #000; }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-secondary:hover { background: var(--text); color: #000; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-family: var(--font-heading); font-size: clamp(26px, 5vw, 38px); text-transform: uppercase; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto; }

/* === HEADER === */
.site-header {
    position: fixed; top: var(--marquee-h); left: 0; right: 0; height: var(--header-h);
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); z-index: 1000;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }
.nav-list { display: flex; gap: 25px; align-items: center; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.header-cta { padding: 10px 20px; font-size: 13px; }

/* === HERO === */
.hero { padding: calc(var(--marquee-h) + var(--header-h) + 50px) 0 50px; text-align: center; }
.hero-content { max-width: 650px; margin: 0 auto; }
.hero-image {
    width: 180px; height: 180px; margin: 0 auto 25px; border-radius: 50%;
    border: 3px solid var(--border-accent); overflow: hidden; box-shadow: 0 0 35px var(--glow);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000; font-size: 11px; font-weight: 700; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-title { font-family: var(--font-heading); font-size: clamp(30px, 6vw, 50px); text-transform: uppercase; margin-bottom: 18px; }
.hero-subtitle { font-size: 17px; color: var(--text-light); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 25px; }

/* === PAGE HERO === */																																													  
.page-hero {
    padding: calc(var(--marquee-h) + var(--header-h) + 60px) 0 40px;
    text-align: center; background: var(--surface);
}
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.page-title { font-family: var(--font-heading); font-size: clamp(28px, 5vw, 42px); text-transform: uppercase; margin-bottom: 15px; }
.page-subtitle { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* === LOCALO === */
.localo-box { max-width: 700px; margin: 0 auto; }
.localo-steps { margin-bottom: 30px; counter-reset: step; padding-left: 0; }
.localo-steps li {
    position: relative; padding-left: 45px; margin-bottom: 15px; color: var(--text-light); font-size: 15px;
    list-style: none;
}
.localo-steps li::before {
    content: counter(step); counter-increment: step;
    position: absolute; left: 0; top: 0; width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000; font-size: 13px; font-weight: 700; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.localo-steps .example { font-size: 13px; color: var(--text-muted); }
.localo-widget { min-height: 350px; background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; }
.localo-widget:focus { outline: none; }

/* === SERVICES PREVIEW === */
.services-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) {
    .services-preview { grid-template-columns: 1fr; }
}
.service-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 25px; text-decoration: none; color: var(--text); transition: 0.3s; display: block;
}
.service-card:hover { border-color: var(--border-accent); box-shadow: 0 0 25px var(--glow); transform: translateY(-5px); color: var(--text); }
.service-card .icon-box {
    width: 50px; height: 50px; background: var(--bg-alt); border: 1px solid var(--border-accent);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-card .icon-box .icon { stroke: var(--accent); }
.service-card h3 { font-family: var(--font-heading); font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 15px; }
.service-card .link { font-size: 13px; color: var(--accent); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.service-card .link .icon { width: 16px; height: 16px; }

/* === WHY GRID === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.why-item { padding: 25px; }
.why-number {
    font-family: var(--font-heading); font-size: clamp(36px, 6vw, 50px);
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 10px;
}
.why-item p { font-size: 14px; color: var(--text-light); }

/* === RESULTS SLIDER === */
.big-stat { margin-top: 25px; }
.stat-number {
    font-family: var(--font-heading); font-size: clamp(42px, 8vw, 64px);
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { display: block; font-size: 15px; color: var(--text-light); margin-top: 5px; }

.results-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    /* Masquer la scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.results-slider::-webkit-scrollbar { display: none; }

.result-item {
    flex: 0 0 85%;
    max-width: 380px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    background: var(--surface);
}
.result-item:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 30px var(--glow);
    transform: scale(1.02);
}
.result-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

/* Desktop : images cÃ´te Ã  cÃ´te avec dÃ©filement possible */
@media (min-width: 769px) {
    .results-slider {
        justify-content: flex-start;
        padding-left: calc(50% - 370px);
        padding-right: calc(50% - 370px);
    }
    .result-item {
        flex: 0 0 350px;
        max-width: 350px;
    }
}

/* === CERTIFICATIONS === */
.about-content { max-width: 700px; margin: 0 auto; text-align: center; }
.certifications { display: flex; justify-content: center; gap: 35px; margin-bottom: 35px; flex-wrap: wrap; }
.cert-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: 0.3s; }
.cert-badge:hover { transform: scale(1.05); }
.cert-badge img { width: 75px; height: 75px; object-fit: contain; }
.cert-badge span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.about-text { text-align: left; }
.about-text p { color: var(--text-light); margin-bottom: 14px; font-size: 16px; line-height: 1.7; }

/* === BENEFITS GRID === */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card {
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 25px; text-align: center; transition: 0.3s;
}
.benefit-card:hover { border-color: var(--border-accent); box-shadow: 0 0 20px var(--glow); }
.benefit-card .icon-box {
    width: 60px; height: 60px; margin: 0 auto 18px;
    background: var(--surface); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.benefit-card .icon-box .icon { stroke: var(--accent); width: 28px; height: 28px; }
.benefit-card h3 { font-family: var(--font-heading); font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); }

/* === STRENGTHS === */
.strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; text-align: center; }
.strength .icon-box {
    width: 65px; height: 65px; margin: 0 auto 18px;
    background: var(--bg-alt); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px var(--glow);
}
.strength .icon-box .icon { stroke: var(--accent); width: 26px; height: 26px; }
.strength h3 { font-family: var(--font-heading); font-size: 15px; text-transform: uppercase; margin-bottom: 8px; }
.strength p { font-size: 14px; color: var(--text-muted); }

/* === OFFERS === */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.offer-card {
    background: var(--surface); border-radius: var(--radius); padding: 30px 25px;
    border: 1px solid var(--border); display: flex; flex-direction: column;
    position: relative; transition: 0.3s;
}
.offer-card:hover { border-color: var(--border-accent); }
.offer-featured { border-color: var(--border-accent); box-shadow: 0 0 30px var(--glow); }
.offer-badge {
    position: absolute; top: -12px; left: 20px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000; font-size: 11px; font-weight: 700; text-transform: uppercase;
    padding: 6px 14px; border-radius: 15px;
}
.offer-card h3 { font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin-bottom: 12px; margin-top: 8px; }
.offer-card > p { font-size: 14px; color: var(--text-light); flex-grow: 1; margin-bottom: 20px; }
.offer-prices { margin-bottom: 20px; }
.price-highlight {
    background: linear-gradient(135deg, rgba(0,244,255,0.15), rgba(30,126,255,0.15));
    border: 1px solid var(--border-accent); border-radius: 8px;
    padding: 15px; margin-bottom: 15px; text-align: center;
}
.price-highlight strong { font-size: 28px; display: block; margin-bottom: 5px; }
.price-highlight span { font-size: 13px; color: var(--text-light); display: block; }
.price-highlight em { font-size: 12px; color: var(--accent); display: block; margin-top: 8px; font-style: normal; }
.price-divider { text-align: center; color: var(--text-muted); font-size: 12px; margin: 12px 0; }
.price-item { margin-bottom: 8px; }
.price-item strong { font-size: 20px; }
.price-item span { font-size: 12px; color: var(--text-muted); display: block; }
.offer-card .btn { margin-top: auto; }

/* === REFERRAL === */
.referral-box {
    background: linear-gradient(135deg, rgba(0,244,255,0.1), rgba(30,126,255,0.1));
    border: 1px solid var(--border-accent); border-radius: var(--radius);
    padding: 30px; display: flex; align-items: center; gap: 25px;
    max-width: 700px; margin: 0 auto;
}
.referral-box .icon-box {
    width: 70px; height: 70px; flex-shrink: 0;
    background: var(--surface); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.referral-box .icon-box .icon { stroke: var(--accent); width: 32px; height: 32px; }
.referral-content h3 { font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.referral-content p { font-size: 16px; margin-bottom: 5px; }
.referral-content p strong { color: var(--accent); }
.referral-details { font-size: 13px !important; color: var(--text-muted) !important; }

/* === REVIEWS === */
.reviews-widget { min-height: 250px; margin-bottom: 30px; }

/* === LOGOS GRID === */
.logos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; align-items: center; justify-items: center; }
.logos-small { grid-template-columns: repeat(2, 150px); justify-content: center; }
.logo-item { padding: 15px; transition: 0.3s; filter: grayscale(1) brightness(1.3); opacity: 0.6; }
.logo-item:hover { filter: none; opacity: 1; transform: scale(1.08); }
.logo-item img { max-height: 50px; width: auto; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-section-title {
    font-family: var(--font-heading); font-size: 22px; text-transform: uppercase;
    margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
}
.faq-section-title .icon { stroke: var(--accent); }
.faq-item {
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
    padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15px;
    display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 22px; }
.faq-item[open] summary::after { content: 'âˆ’'; }
.faq-item p { padding: 0 22px 18px; color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.contact-form-wrapper h2 { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; margin-bottom: 25px; }
.contact-form { background: var(--surface); border-radius: var(--radius); padding: 35px 30px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text); transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { margin-top: 10px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 25px; }
.contact-card h3 {
    font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.contact-card h3 .icon { stroke: var(--accent); width: 20px; height: 20px; }
.contact-method { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-method:last-child { border-bottom: none; }
.contact-method .icon-box {
    width: 40px; height: 40px; background: var(--bg-alt); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.contact-method .icon-box .icon { stroke: var(--accent); width: 20px; height: 20px; }
.contact-method strong { font-size: 11px; color: var(--text-muted); text-transform: uppercase; display: block; }
.contact-method a { font-size: 14px; color: var(--text); }
.contact-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.social-links { display: flex; gap: 10px; }
.social-link {
    padding: 10px 18px; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 6px; font-size: 13px; color: var(--text);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* === CTA SECTION === */
.cta-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.cta-box {
    background: var(--surface); border: 1px solid var(--border-accent); border-radius: var(--radius);
    padding: 50px 40px; text-align: center; max-width: 700px; margin: 0 auto;
    box-shadow: 0 0 40px var(--glow);
}
.cta-box h2 { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 32px); text-transform: uppercase; margin-bottom: 15px; }
.cta-box p { color: var(--text-light); margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; align-items: start; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 35px 30px; position: relative; }
.pricing-featured { border-color: var(--border-accent); box-shadow: 0 0 30px var(--glow); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: #000; font-size: 11px; font-weight: 700; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px;
}
.pricing-header { text-align: center; margin-bottom: 25px; }
.pricing-header h2 { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; margin-bottom: 5px; }
.pricing-header p { font-size: 13px; color: var(--text-muted); }
.pricing-price { text-align: center; margin-bottom: 25px; }
.price-amount { font-family: var(--font-heading); font-size: 36px; display: block; }
.price-period { font-size: 13px; color: var(--text-muted); }
.price-highlight-box {
    background: linear-gradient(135deg, rgba(0,244,255,0.15), rgba(30,126,255,0.15));
    border: 1px solid var(--border-accent); border-radius: 8px; padding: 20px;
}
.price-savings { font-size: 12px; color: var(--accent); display: block; margin-top: 8px; }
.pricing-alternatives { text-align: center; margin-bottom: 25px; padding-top: 15px; border-top: 1px solid var(--border); }
.pricing-alternatives p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.alt-price { font-size: 14px; margin-bottom: 5px; }
.alt-price span { font-size: 11px; color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 25px; }
.pricing-features li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.pricing-features li .icon { width: 18px; height: 18px; stroke: var(--accent); }
.pricing-note { font-size: 11px; color: var(--text-muted); text-align: center; margin: 20px 0; }

/* === REFERRAL BANNER === */
.referral-banner {
    background: linear-gradient(135deg, rgba(0,244,255,0.1), rgba(30,126,255,0.1));
    border: 1px solid var(--border-accent); border-radius: var(--radius);
    padding: 40px; display: flex; align-items: flex-start; gap: 30px;
    max-width: 800px; margin: 0 auto;
}
.referral-banner .icon-box {
    width: 70px; height: 70px; flex-shrink: 0;
    background: var(--surface); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.referral-banner .icon-box .icon { stroke: var(--accent); width: 32px; height: 32px; }
.referral-banner h2 { font-family: var(--font-heading); font-size: 24px; text-transform: uppercase; margin-bottom: 10px; }
.referral-highlight { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 15px; }
.referral-banner ul { list-style: none; padding: 0; margin: 0 0 15px; }
.referral-banner li { font-size: 14px; color: var(--text-light); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.referral-banner li .icon { width: 18px; height: 18px; stroke: var(--accent); }
.referral-example { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* === INCLUDED GRID === */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.included-grid-5 { grid-template-columns: repeat(3, 1fr); }
.included-grid-5 .included-item:nth-child(4),
.included-grid-5 .included-item:nth-child(5) {
    grid-column: span 1;
}
/* Centrer les 2 derniers éléments de la grille à 5 */
.included-grid-5 {
    justify-items: center;
}
.included-grid-5 .included-item:nth-child(4) {
    justify-self: end;
    padding-right: 40px;
}
.included-grid-5 .included-item:nth-child(5) {
    justify-self: start;
    padding-left: 40px;
}
@media (max-width: 900px) {
    .included-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .included-grid-5 .included-item:nth-child(4),
    .included-grid-5 .included-item:nth-child(5) {
        justify-self: center;
        padding-left: 0;
        padding-right: 0;
    }
    .included-grid-5 .included-item:nth-child(5) {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .included-grid { grid-template-columns: 1fr; }
    .included-grid-5 { grid-template-columns: 1fr; }
    .included-grid-5 .included-item:nth-child(4),
    .included-grid-5 .included-item:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        padding: 25px;
    }
}
.included-item { text-align: center; padding: 25px; }
.included-item .icon-box {
    width: 60px; height: 60px; margin: 0 auto 15px;
    background: var(--surface); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.included-item .icon-box .icon { stroke: var(--accent); width: 28px; height: 28px; }
.included-item h3 { font-family: var(--font-heading); font-size: 15px; text-transform: uppercase; margin-bottom: 8px; }
.included-item p { font-size: 13px; color: var(--text-muted); }

/* === BLOG COMING SOON === */
.blog-coming-soon { text-align: center; max-width: 700px; margin: 0 auto; padding: 50px 30px; }
.blog-coming-soon .icon-box {
    width: 80px; height: 80px; margin: 0 auto 25px;
    background: var(--surface); border: 1px solid var(--border-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.blog-coming-soon .icon-box .icon { stroke: var(--accent); width: 40px; height: 40px; }
.blog-coming-soon h2 { font-family: var(--font-heading); font-size: 24px; text-transform: uppercase; margin-bottom: 15px; }
.blog-coming-soon > p { color: var(--text-light); margin-bottom: 30px; }
.upcoming-topics { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: left; margin-bottom: 30px; }
.upcoming-topics h3 { font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; margin-bottom: 20px; }
.upcoming-topics ul { list-style: none; padding: 0; }
.upcoming-topics li { font-size: 14px; color: var(--text-light); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.upcoming-topics li:last-child { border-bottom: none; }
.upcoming-topics li .icon { width: 18px; height: 18px; stroke: var(--accent); }

/* === SERVICE DETAIL === */
.service-detail { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-detail-header { display: flex; align-items: center; gap: 20px; padding: 30px; border-bottom: 1px solid var(--border); }
.service-detail-header .icon-box {
    width: 60px; height: 60px; flex-shrink: 0;
    background: var(--bg-alt); border: 1px solid var(--border-accent);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.service-detail-header .icon-box .icon { stroke: var(--accent); width: 28px; height: 28px; }
.service-badge { display: inline-block; background: linear-gradient(135deg, var(--accent-start), var(--accent-end)); color: #000; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 12px; margin-bottom: 8px; }
.service-detail-header h2 { font-family: var(--font-heading); font-size: clamp(20px, 4vw, 26px); text-transform: uppercase; margin-bottom: 5px; }
.service-tagline { font-size: 14px; color: var(--text-muted); }
.service-detail-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; }
.service-detail-desc { padding: 30px; }
.service-detail-desc h3 { font-family: var(--font-heading); font-size: 16px; text-transform: uppercase; margin: 25px 0 20px; }
.service-detail-desc h3:first-child { margin-top: 0; }
.service-detail-desc p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 15px; }
.service-feature { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--border); }
.service-feature:last-child { border-bottom: none; padding-bottom: 0; }
.service-feature h4 { font-size: 15px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.service-feature h4 .icon { width: 20px; height: 20px; stroke: var(--accent); }
.service-feature p { margin-bottom: 0; }
.service-list { list-style: none; padding: 0; }
.service-list li { font-size: 14px; color: var(--text-light); padding: 8px 0; padding-left: 28px; position: relative; display: flex; align-items: center; gap: 10px; }
.service-list li .icon { width: 18px; height: 18px; stroke: var(--accent); position: absolute; left: 0; }
.service-guarantee { background: linear-gradient(135deg, rgba(0,244,255,0.1), rgba(30,126,255,0.1)); border: 1px solid var(--border-accent); border-radius: 8px; padding: 20px; display: flex; gap: 15px; align-items: flex-start; margin-top: 25px; }
.service-guarantee .icon { width: 24px; height: 24px; stroke: var(--accent); flex-shrink: 0; }
.service-guarantee p { margin: 0; font-size: 13px; }
.service-detail-pricing { background: var(--bg-alt); padding: 30px; border-left: 1px solid var(--border); }
.service-detail-pricing h3 { font-family: var(--font-heading); font-size: 16px; text-transform: uppercase; margin-bottom: 25px; }
.pricing-option { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; text-align: center; margin-bottom: 15px; }
.pricing-option-highlight { background: linear-gradient(135deg, rgba(0,244,255,0.15), rgba(30,126,255,0.15)); border-color: var(--border-accent); }
.pricing-label { font-size: 11px; color: var(--accent); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 8px; }

/* === FOOTER === */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 50px 0 25px; }
.footer-main { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-logo { height: 90px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); }
.footer-nav { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; text-transform: uppercase; margin-bottom: 15px; color: var(--text); }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .offers-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .service-detail-content { grid-template-columns: 1fr; }
    .service-detail-pricing { border-left: none; border-top: 1px solid var(--border); }
    .footer-main { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand { max-width: none; }
    .footer-logo { margin: 0 auto 12px; }
    .footer-nav { justify-content: center; }
    .footer-bottom { flex-direction: column; }
    .referral-banner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 768px) {
    :root { --header-h: 85px; --marquee-h: 32px; }
    .container { padding: 0 20px; }
    .section { padding: 60px 0; }
    .marquee-track span { font-size: 11px; }
    .main-nav, .header-cta { display: none; }
    .logo-img { height: 32px; }
    .floating-menu-btn { display: flex; }
    .hero { padding: calc(var(--marquee-h) + var(--header-h) + 35px) 0 40px; }
    .hero-image { width: 100px; height: 100px; }
    .hero-title { font-size: 28px; }
    .page-hero { padding: calc(var(--marquee-h) + var(--header-h) + 30px) 0 30px; }
    .strengths { grid-template-columns: 1fr; gap: 25px; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 35px 25px; }
    .service-detail-header { flex-direction: column; text-align: center; }
    .footer-logo { height: 70px; }
    .to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
    
    /* Centrage textes sur mobile */
    .about-text { text-align: center; }
    .about-text p { text-align: center; }
    .section-subtitle { text-align: center; }
    .benefit-card p { text-align: center; }
    .why-item p { text-align: center; }
    .included-item p { text-align: center; }
    .strength p { text-align: center; }
}

@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .btn { padding: 12px 22px; font-size: 13px; }
    .floating-menu-btn { width: 50px; height: 50px; bottom: 20px; left: 16px; }
}

/* === LEGAL PAGES === */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; margin: 40px 0 20px; color: var(--text); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; font-weight: 600; margin: 25px 0 15px; color: var(--text); }
.legal-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 15px; }
.legal-content ul { margin: 15px 0; padding-left: 25px; }
.legal-content ul li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-update { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-muted) !important; }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border-accent);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.5);
}
.cookie-banner.active { display: block; }
.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    min-width: 250px;
}
.cookie-content p a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.cookie-settings-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}
.cookie-settings-btn:hover { color: var(--accent); }

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   BLOG STYLES - À AJOUTER À LA FIN DE styles.css
   ============================================================ */

/* === BLOG GRID === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 25px var(--glow);
    transform: translateY(-5px);
    color: var(--text);
}

.blog-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-alt);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.blog-card-icon .icon {
    stroke: var(--accent);
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link .icon {
    width: 16px;
    height: 16px;
}

/* === ARTICLE PAGE === */
.article-page {
    padding: calc(var(--marquee-h) + var(--header-h) + 40px) 0 60px;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.article-date {
    display: inline-block;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(0, 244, 255, 0.1);
    border-radius: 20px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 26px);
    text-transform: uppercase;
    margin: 50px 0 20px;
    color: var(--text);
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--text);
}

.article-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 244, 255, 0.3);
    text-underline-offset: 3px;
}

.article-content a:hover {
    text-decoration-color: var(--accent);
}

.article-content strong {
    color: var(--text);
    font-weight: 600;
}

/* === ARTICLE CTA === */
.article-cta {
    max-width: 600px;
    margin: 60px auto 40px;
    background: linear-gradient(135deg, rgba(0, 244, 255, 0.1), rgba(30, 126, 255, 0.1));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* === ARTICLE NAV === */
.article-nav {
    max-width: 750px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* === RESPONSIVE BLOG === */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-page {
        padding: calc(var(--marquee-h) + var(--header-h) + 30px) 0 50px;
    }
    
    .article-header {
        margin-bottom: 40px;
    }
    
    .article-intro {
        font-size: 16px;
    }
    
    .article-content h2 {
        margin: 40px 0 18px;
    }
    
    .article-content p {
        font-size: 15px;
    }
    
    .article-cta {
        padding: 30px 25px;
    }
}

/* === HERO TARGETS === */
.hero-targets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.hero-targets span {
    background: rgba(0, 244, 255, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--text-light);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
}

/* === CSS À AJOUTER À styles.css === */

/* Bloc d'explication section "Pourquoi optimiser" */
.why-explanation {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.why-explanation p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ================================================================
   CSS À AJOUTER À LA FIN DE TON FICHIER styles.css
   ================================================================ */

/* === BLOC EXPLICATION (Section Pourquoi optimiser) === */
.why-explanation {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.why-explanation p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* === USP BLOCK (Page Accueil - Section Expert) === */
.usp-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0,244,255,0.1), rgba(30,126,255,0.1));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 25px 30px;
    margin-top: 30px;
}

.usp-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon .icon {
    stroke: var(--accent);
    width: 24px;
    height: 24px;
}

.usp-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usp-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* === USP BANNER (Page Services) === */
.usp-banner-section {
    padding: 40px 0;
}

.usp-banner {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--surface);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 35px 40px;
    box-shadow: 0 0 30px var(--glow);
}

.usp-banner-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-banner-icon .icon {
    stroke: #000;
    width: 28px;
    height: 28px;
}

.usp-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.usp-banner-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* === REASSURANCE BAR (Page Tarifs) === */
.reassurance-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reassurance-item .icon {
    stroke: var(--accent);
    width: 24px;
    height: 24px;
}

.reassurance-item span {
    font-size: 14px;
    color: var(--text-light);
}

.reassurance-item strong {
    color: var(--text);
}

/* === USP CARD (Page Contact) === */
.usp-card {
    background: linear-gradient(135deg, rgba(0,244,255,0.08), rgba(30,126,255,0.08));
    border-color: var(--border-accent);
}

.usp-contact-methods {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.usp-contact-methods span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.usp-contact-methods .icon {
    stroke: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .usp-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .usp-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px 25px;
    }
    
    .reassurance-bar {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .usp-contact-methods {
        justify-content: center;
    }
}

.footer-logo { max-height: 32px; width: auto; }
@media (max-width: 900px) { .footer-logo { max-height: 36px; } }