/* ==========================================================================
   Stock'n'Rolle - Theme CSS
   ========================================================================== */

/* --- Variables --- */
:root {
    color-scheme: light;
    --snr-orange: #FF8E01;
    --snr-orange-hover: #FFC780;
    --snr-orange-dark: #f89d2d;
    --snr-dark: #3a3a3a;
    --snr-dark-bg: #2F2E2E;
    --snr-gray: #717070;
    --snr-gray-light: #F0F0F0;
    --snr-cream: #FBFCFA;
    --snr-white: #FFFFFF;
    --snr-text: #3d4f5f;
    --snr-text-dark: #2d3748;
    --snr-border: #E5E5E5;
    --snr-font: 'Raleway', sans-serif;
    --snr-max-width: 1200px;
}

/* --- Reset: browser default body margin (was handled by Bootstrap before) --- */
body {
    margin: 0;
}

/* --- Reset / Base --- */
.snr-main,
.snr-header,
.snr-footer {
    font-family: var(--snr-font);
    color: var(--snr-text);
    font-size: 18px;
    line-height: 1.7;
    box-sizing: border-box;
}

.snr-main *,
.snr-header *,
.snr-footer * {
    box-sizing: border-box;
}

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

/* Global link & button reset — remove all Astra/browser defaults */
.snr-header a,
.snr-header a:visited,
.snr-footer a,
.snr-footer a:visited,
.snr-main a,
.snr-main a:visited {
    text-decoration: none;
    transition: color 0.2s ease;
}

.snr-main a,
.snr-main a:visited {
    color: var(--snr-orange);
}

.snr-main a:hover,
.snr-main a:focus {
    color: var(--snr-orange-dark);
}

/* Buttons: override global link color — keep button's own colors */
.snr-main a.snr-btn,
.snr-main a.snr-btn:visited,
.snr-header a.snr-btn,
.snr-header a.snr-btn:visited,
.snr-footer a.snr-btn,
.snr-footer a.snr-btn:visited,
.snr-nav a.snr-btn,
.snr-nav a.snr-btn:visited {
    color: var(--snr-white);
}

.snr-main a.snr-btn:hover,
.snr-main a.snr-btn:focus,
.snr-header a.snr-btn:hover,
.snr-header a.snr-btn:focus,
.snr-footer a.snr-btn:hover,
.snr-footer a.snr-btn:focus,
.snr-nav a.snr-btn:hover,
.snr-nav a.snr-btn:focus {
    color: var(--snr-white);
}

/* Global button reset — no Astra blue anywhere */
.snr-header button,
.snr-footer button,
.snr-main button {
    background: transparent;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    color: inherit;
}

.snr-header button:focus,
.snr-header button:active,
.snr-footer button:focus,
.snr-footer button:active,
.snr-main button:focus,
.snr-main button:active {
    background: transparent;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.snr-header {
    width: 100%;
}

/* --- Utility Topbar --- */
.snr-topbar {
    background-color: #252525;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1;
}

.snr-topbar-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.snr-topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.snr-topbar-left svg {
    color: var(--snr-orange);
    flex-shrink: 0;
}

.snr-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.snr-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.snr-topbar-phone svg {
    color: var(--snr-orange);
    flex-shrink: 0;
}

.snr-topbar-phone:hover {
    color: var(--snr-orange);
}

.snr-topbar-sep {
    color: rgba(255, 255, 255, 0.3);
}

.snr-topbar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.snr-topbar-link:hover {
    color: var(--snr-orange);
}

/* --- Hero section --- */
.snr-header-hero {
    position: relative;
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snr-header-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.snr-header-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* --- Buttons (shared global) --- */
.snr-btn {
    display: inline-block;
    padding: 16px 34px;
    font-family: var(--snr-font);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.snr-btn-orange:hover {
    background-color: var(--snr-orange-dark);
    border-color: var(--snr-orange-dark);
    color: var(--snr-white);
}

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

.snr-btn-outline:hover,
.snr-main a.snr-btn-outline:hover,
.snr-header a.snr-btn-outline:hover {
    background-color: var(--snr-white);
    color: var(--snr-text-dark);
}

/* --- Hero CTA button (v2) --- */
.snr-header-cta-btn {
    margin-top: 8px;
}

/* --- Logo --- */
.snr-header-logo {
    margin: 0 0 16px;
}

.snr-logo-img {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Original header topbar (v1) --- */
.snr-header-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.snr-header-cta {
    display: flex;
    gap: 16px;
}

.snr-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--snr-white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.snr-header-phone:hover {
    opacity: 0.85;
}

.snr-phone-icon {
    width: 40px;
    height: 40px;
}

.snr-phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.snr-phone-label {
    font-size: 14px;
    opacity: 0.8;
}

.snr-phone-number {
    font-size: 18px;
    font-weight: 700;
}

/* --- Original tagline (v1) --- */
.snr-tagline {
    color: var(--snr-white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
}

.snr-tagline-price {
    color: var(--snr-orange);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* --- Tagline (v2) --- */
.snr-header-tagline {
    color: var(--snr-white);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

.snr-header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0 0 24px;
    letter-spacing: 0.03em;
}

/* --- Trust Bar --- */
.snr-trust-bar {
    background-color: var(--snr-cream);
    border-bottom: 1px solid var(--snr-border);
}

.snr-trust-bar-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 40px;
}

.snr-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.snr-trust-item svg {
    color: var(--snr-orange);
    flex-shrink: 0;
}

.snr-trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--snr-text-dark);
    white-space: nowrap;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.snr-nav {
    background-color: var(--snr-dark);
    position: relative;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

/* Sticky state */
.snr-nav.snr-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: snr-slide-down 0.3s ease-out;
}

@keyframes snr-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Spacer to prevent content jump when nav becomes fixed */
.snr-nav-spacer {
    display: none;
}

.snr-nav-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.snr-nav-border {
    height: 3px;
    background-color: var(--snr-orange);
}

/* Mini logo in nav — hidden by default, visible when sticky */
.snr-nav-logo {
    display: none;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.snr-nav-logo img {
    height: 44px;
    width: auto;
}

.snr-nav.snr-sticky .snr-nav-logo {
    display: flex;
    opacity: 1;
}

/* CTA in nav — hidden by default, visible when sticky */
.snr-nav-cta {
    display: none;
    margin-left: 20px;
    padding: 10px 22px;
    font-size: 15px;
    flex-shrink: 0;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.snr-nav.snr-sticky .snr-nav-cta {
    display: inline-block;
    opacity: 1;
}

.snr-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
}

.snr-menu .menu-item {
    display: flex;
}

.snr-menu .menu-item a {
    display: block;
    padding: 18px 35px;
    color: var(--snr-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--snr-font);
    transition: color 0.3s ease;
}

.snr-menu .menu-item a:hover {
    color: var(--snr-orange);
}

.snr-menu .menu-item.current-menu-item a,
.snr-menu .menu-item.current_page_item a {
    color: var(--snr-orange);
}

/* Hamburger */
.snr-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.snr-hamburger,
.snr-hamburger::before,
.snr-hamburger::after {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--snr-white);
    transition: all 0.3s ease;
}

.snr-hamburger {
    position: relative;
}

.snr-hamburger::before,
.snr-hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.snr-hamburger::before {
    top: -8px;
}

.snr-hamburger::after {
    top: 8px;
}

/* Phone in sticky nav — hidden by default, visible when sticky */
.snr-nav-phone {
    display: none;
    align-items: center;
    margin-left: 12px;
    color: var(--snr-white);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.snr-nav-phone:hover {
    color: var(--snr-orange);
}

.snr-nav.snr-sticky .snr-nav-phone {
    display: flex;
}

/* Phone item in menu — hidden on desktop, visible on mobile */
.snr-menu-phone-item {
    display: none;
}

.snr-menu-phone-item a {
    color: var(--snr-orange) !important;
    font-weight: 600 !important;
}

/* Mobile menu open state */
.snr-nav.snr-menu-open .snr-hamburger {
    background-color: transparent;
}

.snr-nav.snr-menu-open .snr-hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.snr-nav.snr-menu-open .snr-hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   FOOTER — 4 colonnes + copyright bar + liens legaux
   ========================================================================== */

.snr-footer {
    background-color: var(--snr-dark-bg);
    color: var(--snr-white);
}

/* Main footer area */
.snr-footer-main {
    padding: 50px 20px 40px;
}

.snr-footer-grid {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Column titles */
.snr-footer-col-title {
    color: var(--snr-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}

/* Col 1 : Brand */
.snr-footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.snr-footer-logo-img {
    max-width: 160px;
    height: auto;
}

.snr-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Col 2 : Navigation */
.snr-footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.snr-footer-menu-list li {
    margin-bottom: 8px;
}

.snr-footer-menu-list a {
    color: var(--snr-white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.snr-footer-menu-list a:hover {
    color: var(--snr-orange);
}

/* Col 3 : Contact */
.snr-footer-address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
}

.snr-footer-address p {
    margin: 0 0 6px;
}

.snr-footer-address a {
    color: var(--snr-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.snr-footer-address a:hover {
    color: var(--snr-orange);
}

.snr-footer-icon {
    vertical-align: -2px;
    margin-right: 6px;
    flex-shrink: 0;
}

.snr-footer-addr-line {
    color: rgba(255, 255, 255, 0.75);
}

.snr-footer-map-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6) !important;
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
}

.snr-footer-map-link:hover {
    color: var(--snr-orange) !important;
}

/* Col 4 : Trust signals */
.snr-footer-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.snr-footer-trust-list li {
    margin-bottom: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.snr-footer-check {
    color: var(--snr-orange);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Copyright bar */
.snr-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
}

.snr-footer-copyright-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snr-footer-copy-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.snr-footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.snr-footer-legal a:hover {
    color: var(--snr-orange);
}

.snr-footer-legal-sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 8px;
}

/* Footer border (orange bar) */
.snr-footer-border {
    height: 4px;
    background-color: var(--snr-orange);
}

/* Scroll to top */
.snr-scroll-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--snr-orange);
    color: var(--snr-white);
    text-decoration: none;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    border-radius: 4px;
    z-index: 99;
    transition: background-color 0.3s ease;
}

.snr-scroll-top.snr-visible {
    display: block;
}

.snr-scroll-top:hover {
    background-color: var(--snr-orange-dark);
    color: var(--snr-white);
}

/* ==========================================================================
   PAGE SECTIONS - Reusable components
   ========================================================================== */

.snr-section {
    padding: 60px 20px;
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-section-full {
    padding: 60px 20px;
    width: 100%;
}

.snr-section-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-page-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    text-align: center;
    margin: 0 0 40px;
}

.snr-page-title-italic {
    font-style: italic;
}

.snr-text-center {
    text-align: center;
}

.snr-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.snr-col-2 {
    flex: 1;
}

.snr-col-60 {
    flex: 0 0 60%;
}

.snr-col-40 {
    flex: 0 0 40%;
}

/* ==========================================================================
   HOMEPAGE — Refonte compl&egrave;te
   ========================================================================== */

/* --- Shared section titles --- */
.snr-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    text-align: center;
    margin: 0 0 8px;
}

.snr-section-title.snr-text-left {
    text-align: left;
}

.snr-section-subtitle {
    font-size: 18px;
    color: var(--snr-gray);
    text-align: center;
    margin: 0 0 50px;
    font-weight: 400;
}

/* --- Link arrow --- */
.snr-link-arrow {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--snr-orange);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.snr-link-arrow:hover {
    color: var(--snr-orange-dark);
    transform: translateX(4px);
}

.snr-link-arrow-light,
.snr-main a.snr-link-arrow-light {
    color: var(--snr-white);
}

.snr-link-arrow-light:hover,
.snr-main a.snr-link-arrow-light:hover {
    color: var(--snr-orange);
}

/* --- Button large --- */
.snr-btn-lg {
    padding: 18px 40px;
    font-size: 19px;
}

.snr-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* === SECTION 1 : Hero value proposition === */
.snr-hero-value {
    background-color: var(--snr-cream);
    padding: 60px 20px 50px;
    text-align: center;
}

.snr-hero-value-inner {
    max-width: 800px;
    margin: 0 auto;
}

.snr-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--snr-text-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}

.snr-hero-subtitle {
    font-size: 20px;
    color: var(--snr-text);
    margin: 0 0 32px;
    line-height: 1.5;
    font-weight: 400;
}

.snr-hero-price-inline {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--snr-orange);
    line-height: 1.2;
    margin-bottom: 4px;
}

.snr-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.snr-hero-reassurance {
    font-size: 14px;
    color: var(--snr-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* === Stats bar === */
.snr-stats-bar {
    background-color: var(--snr-dark-bg);
    padding: 0;
}

.snr-stats-bar-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.snr-stat {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.snr-stat:last-child {
    border-right: none;
}

.snr-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--snr-orange);
    line-height: 1.2;
    margin-bottom: 4px;
}

.snr-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === SECTION 2 : Comment ca marche === */
.snr-how-it-works {
    padding: 70px 20px;
    background-color: var(--snr-white);
}

.snr-how-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-steps-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.snr-step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 30px 24px;
    position: relative;
}

.snr-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 142, 1, 0.1);
    border-radius: 50%;
    color: var(--snr-orange);
}

.snr-step-icon svg {
    width: 32px;
    height: 32px;
}

.snr-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--snr-orange);
    color: var(--snr-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.snr-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 8px;
}

.snr-step-card p {
    font-size: 17px;
    color: var(--snr-text);
    line-height: 1.6;
    margin: 0;
}

.snr-step-connector {
    display: flex;
    align-items: center;
    padding-top: 52px;
    color: var(--snr-border);
    flex-shrink: 0;
}

.snr-step-connector svg {
    width: 40px;
    height: 24px;
}

/* === SECTION 3 : USPs grid === */
.snr-usps {
    padding: 70px 20px;
    background-color: var(--snr-cream);
}

.snr-usps-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.snr-usp {
    background: var(--snr-white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--snr-border);
}

.snr-usp:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.snr-usp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 142, 1, 0.1);
    border-radius: 12px;
}

.snr-usp-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.snr-usp-icon-svg {
    color: var(--snr-orange);
}

.snr-usp-icon-svg svg {
    width: 32px;
    height: 32px;
}

.snr-usp h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 8px;
}

.snr-usp p {
    font-size: 17px;
    color: var(--snr-text);
    line-height: 1.6;
    margin: 0;
}

/* === SECTION 4 : Size guide === */
.snr-size-guide {
    padding: 70px 20px;
    background-color: var(--snr-white);
}

.snr-size-guide-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.snr-size-guide-text {
    flex: 1;
}

.snr-size-guide-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

.snr-size-guide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.snr-size-dimensions {
    font-size: 17px;
    color: var(--snr-orange);
    font-weight: 600;
    margin: 0 0 24px;
}

.snr-size-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.snr-size-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 17px;
    color: var(--snr-text);
    border-bottom: 1px solid var(--snr-border);
}

.snr-size-list li:last-child {
    border-bottom: none;
}

.snr-size-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: var(--snr-orange);
    color: var(--snr-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

/* === SECTION 5 : For whom === */
.snr-for-whom {
    padding: 70px 20px;
    background-color: var(--snr-gray-light);
}

.snr-for-whom-inner {
    max-width: 900px;
    margin: 0 auto;
}

.snr-for-whom-cols {
    display: flex;
    gap: 30px;
}

.snr-for-whom-card {
    flex: 1;
    background: var(--snr-white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--snr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snr-for-whom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.snr-for-whom-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--snr-orange);
}

.snr-for-whom-header svg {
    color: var(--snr-orange);
    flex-shrink: 0;
}

.snr-for-whom-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0;
}

.snr-for-whom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.snr-for-whom-list li {
    padding: 8px 0 8px 28px;
    font-size: 17px;
    color: var(--snr-text);
    position: relative;
    line-height: 1.5;
}

.snr-for-whom-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--snr-orange);
    font-weight: 700;
    font-size: 15px;
}

/* === SECTION 6 : Photo section === */
.snr-photo-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.snr-photo-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.snr-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(47, 46, 46, 0.9) 0%, rgba(47, 46, 46, 0.7) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 40px;
}

.snr-photo-content {
    max-width: 550px;
    margin-left: 5%;
}

.snr-photo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--snr-white);
    margin: 0 0 16px;
}

.snr-photo-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px;
}

/* === SECTION 7 : Pricing summary === */
.snr-pricing-summary {
    padding: 70px 20px;
    background-color: var(--snr-white);
}

.snr-pricing-summary-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.snr-pricing-card {
    flex: 0 0 380px;
    background: var(--snr-white);
    border: 2px solid var(--snr-orange);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 142, 1, 0.12);
}

.snr-pricing-card-header {
    background: var(--snr-orange);
    padding: 24px;
    text-align: center;
    color: var(--snr-white);
}

.snr-pricing-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    opacity: 0.9;
}

.snr-pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.snr-pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.snr-pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.snr-pricing-period {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.snr-pricing-features {
    list-style: none;
    padding: 24px;
    margin: 0;
}

.snr-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 17px;
    color: var(--snr-text);
    border-bottom: 1px solid var(--snr-border);
}

.snr-pricing-features li:last-child {
    border-bottom: none;
}

.snr-check {
    color: var(--snr-orange);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.snr-pricing-card .snr-btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

.snr-pricing-side {
    flex: 1;
    padding-top: 20px;
}

.snr-pricing-side h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 16px;
}

.snr-pricing-side p {
    font-size: 17px;
    color: var(--snr-text);
    line-height: 1.7;
    margin: 0 0 16px;
}

.snr-pricing-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--snr-border);
}

.snr-pricing-contact p {
    margin: 0 0 8px;
}

.snr-pricing-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--snr-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

.snr-pricing-phone:hover {
    color: var(--snr-orange-dark);
}

.snr-pricing-phone svg {
    flex-shrink: 0;
}

/* CTA centered (kept for backward compat) */
.snr-cta-center {
    text-align: center;
    margin: 30px 0;
}

/* ==========================================================================
   TARIFS
   ========================================================================== */

.snr-tarifs-h1 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--snr-text-muted, #888);
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.snr-tarifs-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    text-align: center;
    margin: 0 0 40px;
}

.snr-tarifs-cols {
    display: flex;
    max-width: var(--snr-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.snr-tarifs-col {
    flex: 1;
    padding: 0 40px;
    text-align: center;
}

.snr-tarifs-col:first-child {
    border-right: 1px solid var(--snr-border);
}

.snr-tarifs-col h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--snr-gray);
    margin: 0 0 10px;
}

.snr-tarifs-col .snr-orange-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--snr-orange);
    margin: 0 0 20px;
}

.snr-tarifs-col p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--snr-text);
    margin: 0 0 15px;
}

/* Reservation 3 clics section */
.snr-reservation-section {
    position: relative;
    margin-top: 60px;
    background-color: var(--snr-gray-light);
}

.snr-reservation-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: 30px 20px;
    color: var(--snr-text-dark);
    margin: 0;
}

.snr-reservation-content {
    display: flex;
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-reservation-image {
    flex: 0 0 55%;
}

.snr-reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.snr-reservation-steps {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.snr-reservation-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.snr-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--snr-orange);
    color: var(--snr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.snr-step-label {
    font-size: 22px;
    font-weight: 400;
    color: var(--snr-text-dark);
}

.snr-reservation-text {
    background-color: var(--snr-dark);
    color: var(--snr-white);
    padding: 30px 40px;
}

.snr-reservation-text p {
    margin: 0 0 15px;
    font-size: 17px;
    line-height: 1.7;
}

/* ==========================================================================
   NOTRE PARC
   ========================================================================== */

.snr-parc-bg {
    background-color: var(--snr-gray-light);
}

.snr-parc-block {
    display: flex;
    width: 100%;
    max-width: var(--snr-max-width);
    margin: 0 auto 2px;
    min-height: 300px;
}

.snr-parc-image {
    flex: 0 0 55%;
    overflow: hidden;
}

.snr-parc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.snr-parc-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--snr-gray-light);
}

.snr-parc-text-dark {
    background-color: var(--snr-dark-bg);
    color: var(--snr-white);
}

.snr-parc-text-dark h2,
.snr-parc-text-dark p {
    color: var(--snr-white);
}

.snr-parc-text-dark p {
    opacity: 0.9;
}

.snr-parc-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.snr-parc-text p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 12px;
}

/* ==========================================================================
   SECURITE
   ========================================================================== */

/* Anciens styles conservés pour compatibilité */
.snr-securite-bg {
    background-color: var(--snr-gray-light);
}

/* ---- NOUVEAUX STYLES SECURITE ---- */

/* Hero sécurité */
.snr-sec-hero {
    background-color: var(--snr-dark);
}

.snr-sec-hero .snr-hero-title {
    color: #fff;
}

.snr-sec-hero .snr-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Blocs alternés image/texte */
.snr-sec-bloc {
    padding: 80px 20px;
    background: #fff;
}

.snr-sec-bloc-alt {
    background: var(--snr-gray-light);
}

.snr-sec-bloc-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.snr-sec-bloc-reverse .snr-sec-bloc-inner {
    flex-direction: row-reverse;
}

.snr-sec-bloc-image {
    flex: 0 0 340px;
}

.snr-sec-bloc-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.snr-sec-bloc-text {
    flex: 1;
}

.snr-sec-bloc-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 142, 1, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--snr-orange);
}

.snr-sec-bloc-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 16px;
}

.snr-sec-bloc-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--snr-text);
    margin: 0 0 20px;
}

.snr-sec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.snr-sec-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--snr-text);
    padding: 6px 0;
}

.snr-sec-list .snr-check {
    color: var(--snr-orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* Bloc récapitulatif sombre */
.snr-sec-recap {
    background: var(--snr-dark);
    padding: 80px 20px;
}

.snr-sec-recap-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
    text-align: center;
}

.snr-text-white {
    color: #fff !important;
}

.snr-text-white-muted {
    color: rgba(255,255,255,0.7) !important;
}

.snr-sec-recap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.snr-sec-recap-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.snr-sec-recap-item:hover {
    background: rgba(255,255,255,0.08);
}

.snr-sec-recap-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 142, 1, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--snr-orange);
}

.snr-sec-recap-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.snr-sec-recap-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.snr-faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 70px;
}

.snr-faq-section .snr-page-title {
    margin-bottom: 30px;
}

/* Tabs */
.snr-faq-tabs {
    display: flex;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    border-bottom: 2px solid var(--snr-border);
    gap: 4px;
}

.snr-faq-tab {
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 500;
    color: var(--snr-gray);
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: var(--snr-font);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.snr-faq-tab:hover {
    color: var(--snr-text-dark);
}

.snr-faq-tab.snr-active {
    background-color: transparent;
    color: var(--snr-orange);
    border-bottom-color: var(--snr-orange);
    font-weight: 600;
}

.snr-faq-tab.snr-active::after {
    display: none;
}

/* Toggle items */
.snr-faq-panel {
    display: none;
}

.snr-faq-panel.snr-active {
    display: block;
}

.snr-faq-item {
    border-bottom: 1px solid var(--snr-border);
}

.snr-faq-item:first-child {
    border-top: 1px solid var(--snr-border);
}

.snr-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-family: var(--snr-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--snr-text-dark);
    text-align: left;
    cursor: pointer;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.snr-faq-question:hover {
    color: var(--snr-orange);
}

.snr-faq-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
    color: var(--snr-orange);
}

.snr-faq-item.snr-open .snr-faq-chevron {
    transform: rotate(180deg);
}

.snr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.snr-faq-item.snr-open .snr-faq-answer {
    max-height: 500px;
}

.snr-faq-answer-inner {
    padding: 0 16px 24px;
    font-family: var(--snr-font);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--snr-text);
}

.snr-faq-answer-inner p {
    margin: 0 0 12px;
}

.snr-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.snr-faq-answer-inner a {
    color: var(--snr-orange);
    text-decoration: underline;
}

.snr-faq-answer-inner a:hover {
    color: var(--snr-orange-dark);
}

/* ==========================================================================
   PAGE CTA BLOCK (reusable bottom CTA on all pages)
   ========================================================================== */

.snr-page-cta {
    background-color: var(--snr-dark-bg);
    padding: 60px 20px;
    text-align: center;
}

.snr-page-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.snr-page-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--snr-white);
    margin: 0 0 12px;
}

.snr-page-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px;
    line-height: 1.6;
}

.snr-page-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.snr-page-cta-buttons .snr-btn {
    min-width: 200px;
}

.snr-btn-icon {
    margin-right: 6px;
    font-size: 16px;
}

.snr-btn-phone-icon {
    vertical-align: -2px;
    margin-right: 4px;
    flex-shrink: 0;
}

/* ==========================================================================
   TARIFS — Benefits section (with icons)
   ========================================================================== */

.snr-tarifs-benefits {
    display: flex;
    gap: 0;
    max-width: var(--snr-max-width);
    margin: 0 auto;
    padding: 0;
}

.snr-tarifs-benefit {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background-color: var(--snr-cream);
    border-right: 1px solid var(--snr-border);
    transition: background-color 0.3s ease;
}

.snr-tarifs-benefit:last-child {
    border-right: none;
}

.snr-tarifs-benefit:hover {
    background-color: var(--snr-white);
}

.snr-tarifs-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--snr-orange);
    border-radius: 50%;
    color: var(--snr-white);
}

.snr-tarifs-benefit-icon svg {
    width: 32px;
    height: 32px;
}

.snr-tarifs-benefit h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 10px;
}

.snr-tarifs-benefit p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--snr-text);
    margin: 0;
}

/* ==========================================================================
   TARIFS V2 — Redesigned page
   ========================================================================== */

/* --- Tarifs Hero (photo background + price) --- */
.snr-tarifs-hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.snr-tarifs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.snr-tarifs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snr-tarifs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 50px 20px;
}

.snr-tarifs-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--snr-white);
    margin: 0 0 8px;
    line-height: 1.1;
}

.snr-tarifs-hero-period {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.85;
}

.snr-tarifs-hero-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    font-weight: 400;
}

/* --- Tarifs Value proposition (2 cards) --- */
.snr-tarifs-value {
    padding: 70px 20px;
}

.snr-tarifs-value:not(.snr-bg-cream) {
    background-color: var(--snr-white);
}

.snr-tarifs-value-inner {
    max-width: var(--snr-max-width);
    margin: 0 auto;
}

.snr-tarifs-value-cols {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.snr-tarifs-value-card {
    flex: 1;
    background-color: var(--snr-white);
    border: 1px solid var(--snr-border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snr-tarifs-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.snr-tarifs-value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 142, 1, 0.1);
    border-radius: 50%;
    color: var(--snr-orange);
}

.snr-tarifs-value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--snr-text-dark);
    margin: 0 0 12px;
}

.snr-tarifs-value-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--snr-orange);
    margin: 0 0 16px;
}

.snr-tarifs-value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--snr-text);
    margin: 0 0 8px;
}

/* --- Utility modifiers --- */
.snr-bg-cream {
    background-color: var(--snr-cream);
}

.snr-bg-light {
    background-color: #F0F0F0;
}

/* --- USP grid 2x2 variant --- */
.snr-usps-grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

/* ==========================================================================
   CONDITIONS GENERALES / PAGE DEFAULT
   ========================================================================== */

.snr-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--snr-text);
}

.snr-page-content h1,
.snr-page-content h2,
.snr-page-content h3 {
    color: var(--snr-text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.snr-page-content p {
    margin-bottom: 15px;
}

/* PDF viewer */
.snr-cg-pdf {
    margin: 30px 0;
    border: 1px solid var(--snr-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--snr-gray-light);
}

.snr-cg-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.snr-cg-download {
    margin-top: 20px;
    text-align: center;
}

.snr-cg-mobile-msg {
    background: var(--snr-gray-light);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    color: var(--snr-gray);
    margin: 20px 0;
}

/* Desktop : iframe visible, message mobile caché */
.snr-cg-mobile-only { display: none; }
.snr-cg-desktop-only { display: block; }

/* Mobile : iframe cachée, message + bouton téléchargement uniquement */
@media (max-width: 767px) {
    .snr-cg-mobile-only { display: block; }
    .snr-cg-desktop-only { display: none; }
}

@media (max-width: 767px) {
    .snr-cg-iframe {
        height: 500px;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */

/* Initial hidden state */
.snr-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state (added by IntersectionObserver) */
.snr-animate.snr-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements */
.snr-animate-delay-1 { transition-delay: 0.1s; }
.snr-animate-delay-2 { transition-delay: 0.2s; }
.snr-animate-delay-3 { transition-delay: 0.3s; }
.snr-animate-delay-4 { transition-delay: 0.4s; }
.snr-animate-delay-5 { transition-delay: 0.5s; }

/* Body scroll lock — when mobile menu is open */
body.snr-no-scroll {
    overflow: hidden;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .snr-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

@media (max-width: 1024px) {
    /* Topbar (v2) */
    .snr-topbar-inner {
        padding: 8px 15px;
        font-size: 13px;
    }

    /* Header (v1) */
    .snr-header-topbar {
        flex-direction: column;
        gap: 15px;
    }

    .snr-header-cta {
        justify-content: center;
    }

    .snr-header-phone {
        justify-content: center;
    }

    .snr-tagline {
        font-size: 20px;
    }

    .snr-tagline-price {
        font-size: 18px;
    }

    /* Header (shared) */
    .snr-header-hero {
        min-height: 280px;
    }

    .snr-logo-img {
        max-width: 200px;
    }

    /* Header (v2) */
    .snr-header-tagline {
        font-size: 20px;
    }

    .snr-header-subtitle {
        font-size: 15px;
    }

    /* Trust bar */
    .snr-trust-bar-inner {
        gap: 24px;
        padding: 12px 15px;
    }

    .snr-trust-item span {
        font-size: 14px;
    }

    /* Nav mobile */
    .snr-menu-toggle {
        display: block;
    }

    .snr-nav-inner {
        justify-content: space-between;
        padding: 0 15px;
        min-height: 50px;
    }

    /* Mini logo + CTA: hidden by default, visible only when sticky */
    .snr-nav-logo {
        display: none;
        margin-right: auto;
    }

    .snr-nav-logo img {
        height: 38px;
    }

    .snr-nav-cta {
        display: none;
        margin-left: auto;
        margin-right: 60px;
        padding: 12px 22px;
        font-size: 15px;
    }

    .snr-nav.snr-sticky .snr-nav-logo {
        display: flex;
    }

    .snr-nav.snr-sticky .snr-nav-cta {
        display: inline-block;
    }

    /* Hide phone icon in nav on tablet/mobile */
    .snr-nav-phone {
        display: none !important;
    }

    /* Mobile menu — slide animation */
    .snr-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--snr-dark);
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
    }

    .snr-nav.snr-menu-open .snr-menu {
        max-height: 500px;
    }

    .snr-menu .menu-item a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Phone item visible only in mobile menu */
    .snr-menu-phone-item {
        display: flex;
    }

    /* Footer — 2x2 grid on tablet */
    .snr-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Tarifs */
    .snr-tarifs-cols {
        flex-direction: column;
    }

    .snr-tarifs-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--snr-border);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    /* Notre parc */
    .snr-parc-block {
        flex-direction: column;
    }

    .snr-parc-image {
        flex: none;
    }

    /* Securite */
    .snr-securite-cards {
        flex-direction: column;
    }

    /* Securite nouvelle version */
    .snr-sec-bloc {
        padding: 50px 20px;
    }

    .snr-sec-bloc-inner,
    .snr-sec-bloc-reverse .snr-sec-bloc-inner {
        flex-direction: column;
        gap: 30px;
    }

    .snr-sec-bloc-image {
        flex: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .snr-sec-bloc-text h2 {
        font-size: 1.5rem;
    }

    .snr-sec-recap {
        padding: 50px 20px;
    }

    .snr-sec-recap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* FAQ */
    .snr-faq-tabs {
        flex-wrap: wrap;
        gap: 0;
    }

    .snr-faq-tab {
        padding: 12px 20px;
        font-size: 16px;
    }

    .snr-faq-question {
        font-size: 18px;
        padding: 18px 12px;
    }

    .snr-faq-answer-inner {
        font-size: 17px;
        padding: 0 12px 20px;
    }

    /* Reservation */
    .snr-reservation-content {
        flex-direction: column;
    }

    .snr-reservation-image {
        flex: none;
    }

    /* Tarifs benefits — 2x2 grid on tablet */
    .snr-tarifs-benefits {
        flex-wrap: wrap;
    }

    .snr-tarifs-benefit {
        flex: 1 1 48%;
        border-right: none;
        border-bottom: 1px solid var(--snr-border);
        padding: 30px 20px;
    }

    .snr-tarifs-benefit:nth-child(odd) {
        border-right: 1px solid var(--snr-border);
    }

    .snr-tarifs-benefit:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Page CTA */
    .snr-page-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .snr-page-cta-buttons .snr-btn {
        width: 100%;
        max-width: 320px;
    }

    /* Homepage — How it works */
    .snr-step-connector {
        display: none;
    }

    .snr-steps-visual {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .snr-step-card {
        max-width: 100%;
    }

    /* Homepage — USPs grid */
    .snr-usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Homepage — Size guide */
    .snr-size-guide-inner {
        flex-direction: column;
        gap: 30px;
    }

    .snr-size-guide-image {
        flex: none;
        width: 100%;
    }

    .snr-section-title.snr-text-left {
        text-align: center;
    }

    /* Homepage — For whom */
    .snr-for-whom-cols {
        flex-direction: column;
    }

    /* Homepage — Photo section */
    .snr-photo-content {
        margin-left: 0;
    }

    /* Homepage — Pricing */
    .snr-pricing-summary-inner {
        flex-direction: column;
        align-items: center;
    }

    .snr-pricing-card {
        flex: none;
        width: 100%;
        max-width: 420px;
    }

    .snr-pricing-side {
        text-align: center;
    }

    /* Tarifs V2 — tablet */
    .snr-tarifs-hero {
        min-height: 300px;
    }

    .snr-tarifs-hero-title {
        font-size: 3rem;
    }

    .snr-tarifs-hero-period {
        font-size: 1.6rem;
    }

    .snr-tarifs-hero-sub {
        font-size: 1.1rem;
    }

    .snr-tarifs-value-cols {
        flex-direction: column;
    }

    .snr-usps-grid--4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    /* Topbar v2 — hidden on mobile */
    .snr-topbar {
        display: none;
    }

    /* Header v1 — mobile */
    .snr-header-topbar {
        gap: 10px;
    }

    .snr-header-cta .snr-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .snr-phone-icon {
        width: 30px;
        height: 30px;
    }

    .snr-phone-number {
        font-size: 16px;
    }

    .snr-tagline {
        font-size: 17px;
    }

    .snr-tagline-price {
        font-size: 16px;
    }

    /* Header hero (shared) */
    .snr-header-hero {
        min-height: 260px;
    }

    .snr-header-hero-content {
        padding: 30px 20px;
    }

    .snr-logo-img {
        max-width: 160px;
    }

    /* Header v2 — mobile */
    .snr-header-tagline {
        font-size: 18px;
    }

    .snr-header-subtitle {
        font-size: 14px;
    }

    .snr-header-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }

    /* Trust bar — 2x2 grid */
    .snr-trust-bar-inner {
        flex-wrap: wrap;
        gap: 10px 20px;
        padding: 12px 15px;
        justify-content: center;
    }

    .snr-trust-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
    }

    .snr-trust-item span {
        font-size: 14px;
    }

    .snr-trust-item svg {
        width: 16px;
        height: 16px;
    }

    /* Footer — single column on mobile */
    .snr-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .snr-footer-trust-list li {
        justify-content: center;
    }

    .snr-footer-copyright-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .snr-footer-main {
        padding: 35px 15px 30px;
    }

    /* General */
    .snr-page-title {
        font-size: 1.8rem;
    }

    .snr-section {
        padding: 40px 15px;
    }

    /* Homepage — Hero */
    .snr-hero-title {
        font-size: 1.8rem;
    }

    .snr-hero-subtitle {
        font-size: 17px;
    }

    .snr-hero-price-inline {
        font-size: 2.2rem;
    }

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

    /* Homepage — Stats bar */
    .snr-stats-bar-inner {
        flex-wrap: wrap;
    }

    .snr-stat {
        flex: 1 1 48%;
        padding: 20px 12px;
    }

    .snr-stat:nth-child(2) {
        border-right: none;
    }

    .snr-stat-number {
        font-size: 1.6rem;
    }

    .snr-stat-label {
        font-size: 14px;
    }

    /* Homepage — How it works */
    .snr-how-it-works,
    .snr-usps,
    .snr-size-guide,
    .snr-for-whom,
    .snr-pricing-summary {
        padding: 50px 15px;
    }

    .snr-section-title {
        font-size: 1.7rem;
    }

    /* Homepage — USPs grid */
    .snr-usps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .snr-usp {
        padding: 24px 20px;
    }

    /* Homepage — Photo section */
    .snr-photo-bg {
        height: 300px;
    }

    .snr-photo-overlay {
        padding: 24px 20px;
    }

    .snr-photo-content h2 {
        font-size: 1.5rem;
    }

    .snr-photo-content p {
        font-size: 15px;
    }

    /* Homepage — Pricing */
    .snr-pricing-card {
        max-width: 100%;
    }

    .snr-pricing-value {
        font-size: 2.8rem;
    }

    .snr-pricing-side h2 {
        font-size: 1.5rem;
    }

    /* Homepage — For whom */
    .snr-for-whom-card {
        padding: 24px;
    }

    .snr-for-whom-header h3 {
        font-size: 1.1rem;
    }

    /* FAQ */
    .snr-faq-tabs {
        gap: 0;
        margin-bottom: 20px;
    }

    .snr-faq-tab {
        padding: 10px 16px;
        font-size: 15px;
    }

    .snr-faq-section {
        padding: 40px 15px 50px;
    }

    .snr-faq-question {
        font-size: 17px;
        padding: 16px 10px;
    }

    .snr-faq-answer-inner {
        font-size: 16px;
        padding: 0 10px 18px;
    }

    /* Tarifs */
    .snr-tarifs-price {
        font-size: 1.8rem;
    }

    /* Page CTA */
    .snr-page-cta {
        padding: 40px 15px;
    }

    .snr-page-cta h2 {
        font-size: 1.6rem;
    }

    .snr-page-cta p {
        font-size: 16px;
    }

    /* Tarifs benefits mobile */
    .snr-tarifs-benefits {
        flex-wrap: wrap;
    }

    .snr-tarifs-benefit {
        flex: 1 1 100%;
    }

    .snr-tarifs-benefit-icon {
        width: 60px;
        height: 60px;
    }

    .snr-tarifs-benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Tarifs V2 — mobile */
    .snr-tarifs-hero {
        min-height: 260px;
    }

    .snr-tarifs-hero-content {
        padding: 35px 20px;
    }

    .snr-tarifs-hero-title {
        font-size: 2.4rem;
    }

    .snr-tarifs-hero-period {
        font-size: 1.2rem;
    }

    .snr-tarifs-hero-sub {
        font-size: 1rem;
    }

    .snr-tarifs-hero .snr-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }

    .snr-tarifs-value {
        padding: 40px 15px;
    }

    .snr-tarifs-value-card {
        padding: 30px 20px;
    }

    .snr-tarifs-value-card h3 {
        font-size: 1.2rem;
    }

    .snr-tarifs-value-highlight {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.snr-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--snr-cream);
}

.snr-404-inner {
    max-width: 480px;
}

.snr-404-code {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    color: var(--snr-orange);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.25;
}

.snr-404-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--snr-dark);
    margin-bottom: 12px;
}

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

.snr-404 .snr-btn {
    display: inline-flex;
    margin-bottom: 20px;
}

.snr-404-countdown {
    font-size: 14px;
    color: var(--snr-gray);
}

.snr-404-countdown span {
    font-weight: 700;
    color: var(--snr-orange);
}

@media (max-width: 767px) {
    .snr-404-code {
        font-size: 4.5rem;
    }

    .snr-404-title {
        font-size: 1.4rem;
    }

    .snr-404 {
        min-height: 50vh;
        padding: 40px 20px;
    }
}
