/* ==========================================================================
   SECURICLE.CSS — Thème principal Serrurerie SécuriClé Paris
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --sc-navy: #0D1B2A;
    --sc-navy-light: #1B2838;
    --sc-navy-dark: #060F18;
    --sc-orange: #F77F00;
    --sc-orange-dark: #D96B00;
    --sc-orange-light: #FFA040;
    --sc-white: #FFFFFF;
    --sc-gray-50: #F8F9FA;
    --sc-gray-100: #F1F3F5;
    --sc-gray-200: #E9ECEF;
    --sc-gray-300: #DEE2E6;
    --sc-gray-400: #ADB5BD;
    --sc-gray-600: #6C757D;
    --sc-gray-700: #495057;
    --sc-gray-800: #343A40;
    --sc-red: #DC3545;
    --sc-red-dark: #B52A37;
    --sc-green: #28A745;

    --sc-font-heading: 'Montserrat', sans-serif;
    --sc-font-body: 'Open Sans', sans-serif;

    --sc-radius: 8px;
    --sc-radius-lg: 12px;
    --sc-radius-xl: 16px;
    --sc-shadow: 0 2px 8px rgba(13, 27, 42, 0.08);
    --sc-shadow-md: 0 4px 16px rgba(13, 27, 42, 0.12);
    --sc-shadow-lg: 0 8px 32px rgba(13, 27, 42, 0.16);

    --sc-container: 1200px;
    --sc-gap: 24px;
    --sc-section-py: 80px;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.sc-body {
    font-family: var(--sc-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--sc-gray-700);
    background: var(--sc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sc-font-heading);
    color: var(--sc-navy);
    line-height: 1.2;
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--sc-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--sc-orange-dark);
}

/* ---------- Container ---------- */
.sc-container {
    max-width: var(--sc-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Utility classes ---------- */
.sc-text-accent {
    color: var(--sc-orange);
}

.sc-required {
    color: var(--sc-red);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--sc-font-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--sc-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sc-btn svg {
    flex-shrink: 0;
}

.sc-btn-phone {
    background: var(--sc-orange);
    color: var(--sc-white);
    border-color: var(--sc-orange);
}

.sc-btn-phone:hover,
.sc-btn-phone:focus-visible {
    background: var(--sc-orange-dark);
    border-color: var(--sc-orange-dark);
    color: var(--sc-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(247, 127, 0, 0.35);
}

.sc-btn-outline {
    background: transparent;
    color: var(--sc-white);
    border-color: var(--sc-white);
}

.sc-btn-outline:hover,
.sc-btn-outline:focus-visible {
    background: var(--sc-white);
    color: var(--sc-navy);
}

.sc-btn-secondary {
    background: var(--sc-navy);
    color: var(--sc-white);
    border-color: var(--sc-navy);
}

.sc-btn-secondary:hover,
.sc-btn-secondary:focus-visible {
    background: var(--sc-navy-light);
    transform: translateY(-2px);
    color: var(--sc-white);
}

.sc-btn-danger {
    background: var(--sc-red);
    border-color: var(--sc-red);
}

.sc-btn-danger:hover,
.sc-btn-danger:focus-visible {
    background: var(--sc-red-dark);
    border-color: var(--sc-red-dark);
}

.sc-btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.sc-btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Pulse animation pour urgence */
.sc-btn-pulse {
    animation: sc-pulse 2s infinite;
}

@keyframes sc-pulse {
    0% { box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(247, 127, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 127, 0, 0); }
}

/* ==========================================================================
   DEMO BAR (bandeau présentation commerciale)
   ========================================================================== */
.sc-demo-bar {
    background: linear-gradient(135deg, #F77F00 0%, #FFA040 100%);
    color: var(--sc-white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.sc-demo-bar .sc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sc-demo-bar__icon {
    font-size: 16px;
    line-height: 1;
}

.sc-demo-bar__text {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.sc-demo-bar__text strong {
    font-weight: 800;
}

@media (max-width: 768px) {
    .sc-demo-bar__text {
        font-size: 12px;
    }
}

/* ==========================================================================
   URGENCY BAR
   ========================================================================== */
.sc-urgency-bar {
    background: var(--sc-red);
    color: var(--sc-white);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1000;
}

.sc-urgency-bar .sc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-urgency-bar__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sc-white);
}

.sc-urgency-bar__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sc-white);
    font-weight: 800;
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    transition: background 0.2s;
}

.sc-urgency-bar__phone:hover {
    background: rgba(255,255,255,0.25);
    color: var(--sc-white);
}

.sc-urgency-bar__phone svg {
    width: 16px;
    height: 16px;
    stroke: var(--sc-white);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.sc-header {
    background: var(--sc-white);
    box-shadow: var(--sc-shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s;
}

.sc-header--scrolled {
    box-shadow: var(--sc-shadow-md);
}

.sc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
}

/* Logo */
.sc-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sc-navy);
    text-decoration: none;
    flex-shrink: 0;
}

.sc-header__logo:hover {
    color: var(--sc-navy);
}

.sc-header__logo-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--sc-orange);
}

.sc-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sc-header__logo-text strong {
    font-family: var(--sc-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--sc-navy);
}

.sc-header__logo-text small {
    font-size: 12px;
    color: var(--sc-orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.sc-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-nav__list li a {
    display: block;
    padding: 8px 14px;
    color: var(--sc-gray-700);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--sc-radius);
    transition: all 0.2s;
}

.sc-nav__list li a:hover,
.sc-nav__list li a:focus-visible,
.sc-nav__list li.current-menu-item a {
    color: var(--sc-orange);
    background: rgba(247, 127, 0, 0.06);
}

/* Hamburger */
.sc-nav__toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.sc-nav__hamburger,
.sc-nav__hamburger::before,
.sc-nav__hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sc-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sc-nav__hamburger {
    position: relative;
}

.sc-nav__hamburger::before,
.sc-nav__hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.sc-nav__hamburger::before { top: -7px; }
.sc-nav__hamburger::after { top: 7px; }

/* Hamburger active state */
.sc-nav__toggle[aria-expanded="true"] .sc-nav__hamburger {
    background: transparent;
}

.sc-nav__toggle[aria-expanded="true"] .sc-nav__hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.sc-nav__toggle[aria-expanded="true"] .sc-nav__hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Header CTA */
.sc-header__cta .sc-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.sc-hero {
    position: relative;
    background: var(--sc-navy) url('../images/serrurier-hero.jpg') center/cover no-repeat;
    color: var(--sc-white);
    padding: 100px 0 80px;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.sc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 100%);
}

.sc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.sc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 127, 0, 0.15);
    border: 1px solid rgba(247, 127, 0, 0.3);
    color: var(--sc-orange-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sc-hero__badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--sc-orange);
}

.sc-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--sc-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.sc-hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-top: 8px;
}

.sc-hero__desc {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
}

.sc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.sc-hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.sc-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.sc-hero__trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--sc-green);
}

/* ==========================================================================
   BADGES SECTION
   ========================================================================== */
.sc-badges {
    padding: 40px 0;
    background: var(--sc-gray-50);
    border-bottom: 1px solid var(--sc-gray-200);
}

.sc-badges__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
}

.sc-badges__item {
    text-align: center;
    padding: 24px 16px;
}

.sc-badges__icon {
    margin-bottom: 12px;
}

.sc-badges__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--sc-orange);
}

.sc-badges__title {
    font-family: var(--sc-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--sc-navy);
    margin-bottom: 4px;
}

.sc-badges__text {
    font-size: 14px;
    color: var(--sc-gray-600);
    margin: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.sc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.sc-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.sc-section-subtitle {
    font-size: 18px;
    color: var(--sc-gray-600);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.sc-services {
    padding: var(--sc-section-py) 0;
}

.sc-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
}

.sc-service-card {
    background: var(--sc-white);
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sc-shadow-lg);
}

.sc-service-card__img {
    height: 200px;
    overflow: hidden;
}

.sc-service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sc-service-card:hover .sc-service-card__img img {
    transform: scale(1.05);
}

.sc-service-card__body {
    padding: 24px;
}

.sc-service-card__icon {
    margin-bottom: 12px;
}

.sc-service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--sc-orange);
}

.sc-service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sc-service-card__body p {
    font-size: 15px;
    color: var(--sc-gray-600);
    margin-bottom: 16px;
}

.sc-service-card__price {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(247, 127, 0, 0.08);
    color: var(--sc-orange-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.sc-services__cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.sc-why {
    padding: var(--sc-section-py) 0;
    background: var(--sc-gray-50);
}

.sc-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
}

.sc-why__item {
    text-align: center;
    padding: 32px 24px;
    background: var(--sc-white);
    border-radius: var(--sc-radius-lg);
    box-shadow: var(--sc-shadow);
    transition: transform 0.3s;
}

.sc-why__item:hover {
    transform: translateY(-4px);
}

.sc-why__icon {
    margin-bottom: 16px;
}

.sc-why__icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--sc-orange);
}

.sc-why__item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sc-why__item p {
    font-size: 15px;
    color: var(--sc-gray-600);
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.sc-testimonials {
    padding: var(--sc-section-py) 0;
}

.sc-testimonials__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.sc-stars {
    display: flex;
    gap: 2px;
}

.sc-stars svg {
    width: 20px;
    height: 20px;
}

.sc-testimonials__score {
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-gray-700);
}

/* Score lisible sur fond navy (page avis hero) */
.sc-page-hero .sc-testimonials__score {
    color: rgba(255, 255, 255, 0.9);
}

.sc-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
}

.sc-testimonial {
    background: var(--sc-white);
    padding: 32px;
    border-radius: var(--sc-radius-lg);
    box-shadow: var(--sc-shadow);
    border-left: 4px solid var(--sc-orange);
    margin: 0;
}

.sc-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.sc-testimonial__stars svg {
    width: 18px;
    height: 18px;
}

.sc-testimonial__text {
    font-size: 15px;
    font-style: italic;
    color: var(--sc-gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.sc-testimonial__author {
    font-size: 14px;
    color: var(--sc-gray-600);
}

.sc-testimonial__author strong {
    color: var(--sc-navy);
    display: block;
    margin-bottom: 2px;
}

.sc-testimonials__cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   ZONE D'INTERVENTION
   ========================================================================== */
.sc-zone {
    padding: var(--sc-section-py) 0;
    background: var(--sc-navy);
    color: var(--sc-white);
}

.sc-zone .sc-section-title {
    color: var(--sc-white);
}

.sc-zone .sc-section-subtitle {
    color: rgba(255,255,255,0.7);
}

.sc-zone__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
    margin-bottom: 24px;
}

.sc-zone__col h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-zone__col h3 svg {
    width: 18px;
    height: 18px;
    stroke: var(--sc-orange);
}

.sc-zone__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-zone__col ul li {
    padding: 4px 0;
    font-size: 15px;
    opacity: 0.85;
}

.sc-zone__note {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */
.sc-cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--sc-orange) 0%, var(--sc-orange-dark) 100%);
    color: var(--sc-white);
    text-align: center;
}

.sc-cta-final h2 {
    color: var(--sc-white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.sc-cta-final p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* Accent text visible sur fond orange */
.sc-cta-final .sc-text-accent {
    color: var(--sc-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

.sc-cta-final .sc-btn-phone {
    background: var(--sc-white);
    color: var(--sc-orange-dark);
    border-color: var(--sc-white);
}

.sc-cta-final .sc-btn-phone:hover {
    background: var(--sc-navy);
    color: var(--sc-white);
    border-color: var(--sc-navy);
}

/* ==========================================================================
   PRE-FOOTER CTA
   ========================================================================== */
.sc-prefooter {
    padding: 60px 0;
    background: var(--sc-gray-50);
    text-align: center;
    border-top: 1px solid var(--sc-gray-200);
}

.sc-prefooter__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.sc-prefooter__text {
    font-size: 17px;
    color: var(--sc-gray-600);
    margin-bottom: 24px;
}

.sc-prefooter__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-prefooter .sc-btn-outline {
    color: var(--sc-navy);
    border-color: var(--sc-navy);
}

.sc-prefooter .sc-btn-outline:hover {
    background: var(--sc-navy);
    color: var(--sc-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.sc-footer {
    background: var(--sc-navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.sc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Brand */
.sc-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sc-footer__logo-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--sc-orange);
}

.sc-footer__brand-name {
    font-family: var(--sc-font-heading);
    font-size: 20px;
    color: var(--sc-white);
}

.sc-footer__about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sc-footer__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.sc-badge svg {
    width: 16px;
    height: 16px;
}

/* Footer headings */
.sc-footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer links */
.sc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-footer__links li {
    margin-bottom: 8px;
}

.sc-footer__links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.sc-footer__links a:hover {
    color: var(--sc-orange);
}

.sc-footer__zones li {
    font-size: 14px;
    opacity: 0.7;
}

/* Footer contact */
.sc-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.sc-footer__contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--sc-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.sc-footer__contact a {
    color: rgba(255,255,255,0.8);
}

.sc-footer__contact a:hover {
    color: var(--sc-orange);
}

/* Footer bottom */
.sc-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

.sc-footer__bottom p {
    margin: 0;
    opacity: 0.6;
}

.sc-footer__legal {
    display: flex;
    gap: 20px;
}

.sc-footer__legal a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.sc-footer__legal a:hover {
    color: var(--sc-orange);
}

/* ==========================================================================
   STICKY PHONE BUTTON (Mobile)
   ========================================================================== */
.sc-sticky-phone {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    background: var(--sc-orange);
    color: var(--sc-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(247, 127, 0, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: sc-pulse 2s infinite;
}

.sc-sticky-phone:hover {
    transform: scale(1.1);
    color: var(--sc-white);
}

.sc-sticky-phone svg {
    width: 26px;
    height: 26px;
    stroke: var(--sc-white);
}

.sc-sticky-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.sc-page-hero {
    background: var(--sc-navy);
    color: var(--sc-white);
    padding: 60px 0 50px;
    text-align: center;
}

.sc-page-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--sc-white);
    margin-bottom: 12px;
}

.sc-page-hero__subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================================================
   DETAIL BLOCKS (Services page)
   ========================================================================== */
.sc-services-detail {
    padding: var(--sc-section-py) 0;
}

.sc-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.sc-detail-block:last-child {
    margin-bottom: 0;
}

.sc-detail-block--reverse .sc-detail-block__content {
    order: -1;
}

.sc-detail-block__img {
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow-md);
}

.sc-detail-block__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.sc-detail-block__content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-detail-block__content h2 svg {
    width: 24px;
    height: 24px;
    stroke: var(--sc-orange);
    flex-shrink: 0;
}

.sc-detail-block__content p {
    margin-bottom: 16px;
    color: var(--sc-gray-700);
}

.sc-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.sc-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
}

.sc-check-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--sc-green);
    flex-shrink: 0;
}

.sc-price-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(247, 127, 0, 0.08);
    border: 1px solid rgba(247, 127, 0, 0.2);
    border-radius: var(--sc-radius);
    color: var(--sc-orange-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ==========================================================================
   TARIFS
   ========================================================================== */
.sc-tarifs {
    padding: var(--sc-section-py) 0;
}

.sc-tarifs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
    margin-bottom: 48px;
}

.sc-tarif-card {
    background: var(--sc-white);
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    border: 2px solid var(--sc-gray-200);
    position: relative;
}

.sc-tarif-card--featured {
    border-color: var(--sc-orange);
    transform: scale(1.03);
}

.sc-tarif-card__badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--sc-orange);
    color: var(--sc-white);
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 0 var(--sc-radius) var(--sc-radius);
}

.sc-tarif-card__header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--sc-gray-200);
}

.sc-tarif-card__icon {
    margin-bottom: 8px;
}

.sc-tarif-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--sc-orange);
}

.sc-tarif-card__header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.sc-tarif-card__body {
    padding: 16px 24px;
}

.sc-tarif-card__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-tarif-card__body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--sc-gray-100);
    font-size: 15px;
}

.sc-tarif-card__body li:last-child {
    border-bottom: none;
}

.sc-tarif-card__body li strong {
    color: var(--sc-orange-dark);
    font-weight: 700;
    white-space: nowrap;
}

.sc-tarif-card__footer {
    padding: 16px 24px;
    background: var(--sc-gray-50);
    text-align: center;
}

.sc-tarif-card__note {
    font-size: 13px;
    color: var(--sc-gray-600);
}

/* Supplements */
.sc-tarifs__supplements {
    background: var(--sc-gray-50);
    padding: 32px;
    border-radius: var(--sc-radius-lg);
}

.sc-tarifs__supplements h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sc-tarifs__supplement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sc-tarifs__supplement {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sc-tarifs__supplement svg {
    width: 24px;
    height: 24px;
    stroke: var(--sc-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.sc-tarifs__supplement strong {
    display: block;
    margin-bottom: 4px;
    color: var(--sc-navy);
}

.sc-tarifs__supplement p {
    font-size: 14px;
    color: var(--sc-gray-600);
    margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.sc-faq {
    padding: var(--sc-section-py) 0;
    background: var(--sc-gray-50);
}

.sc-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.sc-faq__item {
    background: var(--sc-white);
    border-radius: var(--sc-radius);
    margin-bottom: 12px;
    box-shadow: var(--sc-shadow);
    overflow: hidden;
}

.sc-faq__question {
    padding: 20px 24px;
    font-family: var(--sc-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--sc-navy);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.sc-faq__question::-webkit-details-marker {
    display: none;
}

.sc-faq__question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--sc-orange);
    transition: transform 0.3s;
}

.sc-faq__item[open] .sc-faq__question::after {
    content: '−';
}

.sc-faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--sc-gray-700);
    line-height: 1.7;
}

.sc-faq__answer p {
    margin: 0;
}

/* ==========================================================================
   REVIEWS PAGE
   ========================================================================== */
.sc-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
    padding: var(--sc-section-py) 0;
}

.sc-review {
    background: var(--sc-white);
    padding: 28px;
    border-radius: var(--sc-radius-lg);
    box-shadow: var(--sc-shadow);
    border-left: 4px solid var(--sc-orange);
    margin: 0;
}

.sc-review__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.sc-review__stars svg {
    width: 18px;
    height: 18px;
}

.sc-review p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: var(--sc-gray-700);
    margin-bottom: 12px;
}

.sc-review footer {
    font-size: 14px;
    color: var(--sc-gray-600);
}

.sc-review footer strong {
    color: var(--sc-navy);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.sc-about {
    padding: var(--sc-section-py) 0;
}

.sc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sc-about__content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.sc-about__content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.sc-about__image {
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow-md);
}

.sc-about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stats */
.sc-stats {
    padding: 50px 0;
    background: var(--sc-orange);
    color: var(--sc-white);
}

.sc-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
    text-align: center;
}

.sc-stats__number {
    display: block;
    font-family: var(--sc-font-heading);
    font-size: 36px;
    font-weight: 900;
}

.sc-stats__label {
    font-size: 15px;
    opacity: 0.9;
}

/* Values */
.sc-values {
    padding: var(--sc-section-py) 0;
    background: var(--sc-gray-50);
}

.sc-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
}

.sc-values__item {
    text-align: center;
    padding: 28px 20px;
    background: var(--sc-white);
    border-radius: var(--sc-radius-lg);
    box-shadow: var(--sc-shadow);
}

.sc-values__icon {
    margin-bottom: 12px;
}

.sc-values__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--sc-orange);
}

.sc-values__item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.sc-values__item p {
    font-size: 14px;
    color: var(--sc-gray-600);
    margin: 0;
}

/* Certifications */
.sc-certifications {
    padding: 50px 0;
}

.sc-certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
    text-align: center;
}

.sc-certifications__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.sc-certifications__item svg {
    width: 32px;
    height: 32px;
    stroke: var(--sc-orange);
}

.sc-certifications__item span {
    font-weight: 700;
    font-size: 14px;
    color: var(--sc-navy);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.sc-contact {
    padding: var(--sc-section-py) 0;
}

.sc-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.sc-contact__form-wrap h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Form */
.sc-form {
    margin-top: 24px;
}

.sc-form__honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.sc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sc-form__group {
    margin-bottom: 20px;
}

.sc-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sc-navy);
    margin-bottom: 6px;
}

.sc-form__input,
.sc-form__textarea {
    width: 100%;
    font-family: var(--sc-font-body);
    font-size: 15px;
    border: 2px solid var(--sc-gray-300);
    border-radius: var(--sc-radius);
    transition: border-color 0.2s;
    background: var(--sc-white);
    color: var(--sc-gray-800);
}

.sc-form__input,
.sc-form__textarea {
    padding: 12px 16px;
}

/* Custom dropdown — 100% <div>, aucun <button>/<ul>/<li> = Astra ne peut rien casser */
.sc-dropdown {
    position: relative;
}

.sc-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sc-font-body);
    font-size: 15px;
    line-height: 1.4;
    color: var(--sc-gray-800);
    background: var(--sc-white);
    border: 2px solid var(--sc-gray-300);
    border-radius: var(--sc-radius);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s;
    white-space: normal;
    min-height: 48px;
}

.sc-dropdown__toggle:hover {
    border-color: var(--sc-gray-400);
}

.sc-dropdown__toggle:focus {
    outline: none;
    border-color: var(--sc-orange);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.sc-dropdown__text {
    flex: 1;
    min-width: 0;
}

.sc-dropdown__arrow {
    flex-shrink: 0;
    color: var(--sc-gray-600);
    transition: transform 0.2s;
}

.sc-dropdown.open .sc-dropdown__arrow {
    transform: rotate(180deg);
}

.sc-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--sc-white);
    border: 2px solid var(--sc-gray-300);
    border-radius: var(--sc-radius);
    box-shadow: var(--sc-shadow-md);
    margin: 0;
    padding: 4px 0;
    z-index: 50;
    max-height: 260px;
    overflow-y: auto;
}

.sc-dropdown.open .sc-dropdown__menu {
    display: block;
}

.sc-dropdown__item {
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--sc-gray-800);
    cursor: pointer;
    transition: background 0.15s;
}

.sc-dropdown__item:hover {
    background: var(--sc-gray-50);
}

.sc-dropdown__item--active {
    background: rgba(247, 127, 0, 0.08);
    color: var(--sc-orange-dark);
    font-weight: 600;
}

.sc-form__input:focus,
.sc-form__textarea:focus {
    outline: none;
    border-color: var(--sc-orange);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.sc-form__radio-group {
    display: flex;
    gap: 20px;
}

.sc-form__radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
}

.sc-form__radio input[type="radio"] {
    accent-color: var(--sc-orange);
    width: 18px;
    height: 18px;
}

.sc-form__submit {
    width: 100%;
    border: none;
    font-size: 17px;
}

.sc-form__message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--sc-radius);
    font-size: 15px;
    display: none;
}

.sc-form__message--success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--sc-green);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.sc-form__message--error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: var(--sc-red);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.sc-form__privacy {
    font-size: 13px;
    color: var(--sc-gray-600);
    margin-top: 12px;
}

/* Contact info sidebar */
.sc-contact__card {
    background: var(--sc-orange);
    color: var(--sc-white);
    padding: 28px;
    border-radius: var(--sc-radius-lg);
    text-align: center;
    margin-bottom: 24px;
}

.sc-contact__card h3 {
    font-size: 16px;
    color: var(--sc-white);
    margin-bottom: 12px;
}

.sc-contact__phone-big {
    margin: 0;
}

.sc-contact__phone-big a {
    font-family: var(--sc-font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--sc-white);
}

.sc-contact__phone-big a:hover {
    color: var(--sc-white);
    opacity: 0.9;
}

.sc-contact__details {
    background: var(--sc-gray-50);
    padding: 24px;
    border-radius: var(--sc-radius-lg);
    margin-bottom: 24px;
}

.sc-contact__details h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.sc-contact__details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-contact__details li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.sc-contact__details li:last-child {
    margin-bottom: 0;
}

.sc-contact__details svg {
    width: 20px;
    height: 20px;
    stroke: var(--sc-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.sc-contact__map h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

/* ==========================================================================
   LEGAL PAGE
   ========================================================================== */
.sc-legal__content {
    padding: var(--sc-section-py) 0;
    max-width: 800px;
}

.sc-legal__content h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sc-orange);
}

.sc-legal__content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.sc-legal__content p,
.sc-legal__content ul {
    margin-bottom: 12px;
    line-height: 1.8;
}

.sc-legal__content ul {
    padding-left: 24px;
}

.sc-legal__content li {
    margin-bottom: 4px;
}

/* ==========================================================================
   PAGE CTA (reusable)
   ========================================================================== */
.sc-page-cta {
    padding: 60px 0;
    background: var(--sc-navy);
    color: var(--sc-white);
    text-align: center;
}

.sc-page-cta h2 {
    color: var(--sc-white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.sc-page-cta p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.sc-page-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-page-cta .sc-btn-outline {
    border-color: var(--sc-white);
    color: var(--sc-white);
}

.sc-page-cta .sc-btn-outline:hover {
    background: var(--sc-white);
    color: var(--sc-navy);
}

/* ==========================================================================
   SECURISATION PAGE - Checklist
   ========================================================================== */
.sc-checklist {
    padding: var(--sc-section-py) 0;
    background: var(--sc-gray-50);
    text-align: center;
}

.sc-checklist__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 32px auto;
    text-align: left;
}

.sc-checklist__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--sc-white);
    border-radius: var(--sc-radius);
    box-shadow: var(--sc-shadow);
}

.sc-checklist__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--sc-orange);
}

.sc-checklist__footer {
    margin-top: 24px;
    font-size: 16px;
    color: var(--sc-gray-700);
    margin-bottom: 20px;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.sc-process {
    padding: var(--sc-section-py) 0;
    background: var(--sc-gray-50);
}

.sc-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sc-gap);
    margin-top: 40px;
}

.sc-process__step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.sc-process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--sc-orange);
    color: var(--sc-white);
    font-family: var(--sc-font-heading);
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.sc-process__step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.sc-process__step p {
    font-size: 14px;
    color: var(--sc-gray-600);
    margin: 0;
}

/* ==========================================================================
   URGENCE CARDS
   ========================================================================== */
.sc-urgence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sc-gap);
    margin-top: 40px;
}

.sc-urgence-card {
    padding: 28px;
    background: var(--sc-white);
    border-radius: var(--sc-radius-lg);
    box-shadow: var(--sc-shadow);
    border-top: 3px solid var(--sc-orange);
    transition: transform 0.3s;
}

.sc-urgence-card:hover {
    transform: translateY(-4px);
}

.sc-urgence-card__icon {
    margin-bottom: 12px;
}

.sc-urgence-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--sc-orange);
}

.sc-urgence-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.sc-urgence-card p {
    font-size: 15px;
    color: var(--sc-gray-600);
    margin-bottom: 12px;
}

.sc-urgence-card__time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sc-orange);
    font-weight: 600;
}

.sc-urgence-card__time svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablette */
@media (max-width: 1024px) {
    :root {
        --sc-section-py: 60px;
    }

    .sc-badges__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-services__grid,
    .sc-why__grid,
    .sc-testimonials__grid,
    .sc-reviews__grid,
    .sc-urgence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-zone__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-tarifs__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-tarif-card--featured {
        transform: none;
    }

    .sc-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-stats__grid,
    .sc-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-about__grid,
    .sc-contact__grid {
        grid-template-columns: 1fr;
    }

    .sc-detail-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sc-detail-block--reverse .sc-detail-block__content {
        order: 0;
    }

    .sc-tarifs__supplement-grid {
        grid-template-columns: 1fr;
    }

    .sc-checklist__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-certifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --sc-section-py: 48px;
        --sc-gap: 16px;
    }

    /* Header mobile */
    .sc-nav__toggle {
        display: block;
    }

    .sc-nav__list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--sc-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
        padding: 80px 20px 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .sc-nav__list.sc-nav--open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sc-nav__list li a {
        font-size: 20px;
        padding: 16px;
    }

    .sc-header__cta {
        display: none;
    }

    /* Urgency bar */
    .sc-urgency-bar__text {
        font-size: 12px;
    }

    /* Hero */
    .sc-hero {
        padding: 60px 0;
        min-height: auto;
    }

    .sc-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sc-btn {
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }

    .sc-btn-lg {
        padding: 16px 24px;
        font-size: 15px;
    }

    .sc-hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    /* Grids mobile */
    .sc-badges__grid,
    .sc-services__grid,
    .sc-why__grid,
    .sc-testimonials__grid,
    .sc-reviews__grid,
    .sc-urgence-grid,
    .sc-checklist__grid {
        grid-template-columns: 1fr;
    }

    .sc-zone__list {
        grid-template-columns: 1fr 1fr;
    }

    .sc-process__steps {
        grid-template-columns: 1fr;
    }

    .sc-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-values__grid,
    .sc-certifications__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer mobile */
    .sc-footer__grid {
        grid-template-columns: 1fr;
    }

    .sc-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Sticky phone visible on mobile */
    .sc-sticky-phone {
        display: flex;
    }

    /* Form */
    .sc-form__row {
        grid-template-columns: 1fr;
    }

    .sc-dropdown__toggle {
        font-size: 14px;
    }

    /* Page CTA actions */
    .sc-prefooter__actions,
    .sc-page-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .sc-urgency-bar__text strong:first-child {
        display: none;
    }

    .sc-zone__list {
        grid-template-columns: 1fr;
    }

    .sc-stats__grid,
    .sc-values__grid,
    .sc-certifications__grid {
        grid-template-columns: 1fr;
    }
}
