/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #08090c;
    --bg-secondary: #0f1115;
    --bg-card: rgba(16, 18, 24, 0.75);
    --bg-card-hover: rgba(22, 26, 35, 0.9);
    
    --accent-blue: #2b7de9;    /* Bleu profond rassurant */
    --accent-cyan: #38bdf8;    /* Bleu principal (CTA, liens) - Remplacé par un vrai Cyan pour contraste élevé */
    --accent-purple: #818cf8;  /* Bleu/violet accent secondaire */
    --accent-green: #4ade80;
    --accent-important: #ff3377; /* Rouge pastèque important (prix total, alerte) */

    --selection-bg: rgba(147, 197, 253, 0.18);
    --selection-bg-soft: rgba(59, 130, 246, 0.12);
    --selection-bg-muted: rgba(59, 130, 246, 0.08);
    --selection-border: rgba(147, 197, 253, 0.55);
    --selection-border-soft: rgba(96, 165, 250, 0.35);
    --selection-glow: rgba(59, 130, 246, 0.22);
    --selection-accent: #93c5fd;
    --selection-accent-strong: #60a5fa;
    
    --text-primary: #f8fafc;
    --text-secondary: #b8c5d6;
    --text-muted: #8b9cb0;
    --text-success: #00ff66;   /* Vert éclatant */
    --text-warning: #ffa502;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(59, 130, 246, 0.35);
    
    /* Layout scale */
    --page-max: min(96vw, 1680px);
    --page-gutter: clamp(1.25rem, 2.5vw, 3rem);
    --sidebar-width: clamp(340px, 28vw, 420px);
    --hero-cta-gap: clamp(1.25rem, 2.5vw, 2rem);
    --zone-frame-gap: clamp(1.25rem, 2.5vw, 2rem);
    --header-offset: 5.5rem;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(16px, 0.72vw + 13px, 20px);
    scroll-padding-top: 5.5rem;
}

html[data-a11y-font="sm"] {
    font-size: clamp(14px, 0.62vw + 11px, 17px);
}

html[data-a11y-font="lg"] {
    font-size: clamp(19px, 0.9vw + 14px, 24px);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--header-offset);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

/* ==========================================================================
   ACCESSIBILITY TOOLBAR (fixed — follows scroll)
   ========================================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-140%);
    z-index: 300;
    padding: 0.65rem 1.1rem;
    border-radius: 8px;
    background: var(--accent-cyan);
    color: #0a0d14;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateX(-50%) translateY(0);
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.a11y-toolbar {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem 0.5rem;
    flex-shrink: 0;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
    background: rgba(10, 13, 20, 0.75);
    border: 1px solid rgba(96, 165, 250, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.a11y-toolbar-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.a11y-font-group {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.a11y-font-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
    padding: 0.15rem 0.45rem;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.a11y-font-btn:hover {
    border-color: rgba(96, 165, 250, 0.55);
    background: rgba(59, 130, 246, 0.12);
}

.a11y-font-btn:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.a11y-font-btn.is-active,
.a11y-font-btn[aria-pressed="true"] {
    border-color: var(--selection-border);
    background: var(--selection-bg-soft);
    color: #dbeafe;
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.35);
}

.a11y-font-glyph {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.a11y-font-btn--sm .a11y-font-glyph {
    font-size: 0.78rem;
}

.a11y-font-btn--md .a11y-font-glyph {
    font-size: 1rem;
}

.a11y-font-btn--lg .a11y-font-glyph {
    font-size: 1.28rem;
}

@media (max-width: 900px) {
    .a11y-toolbar-label {
        display: none;
    }

    .a11y-toolbar {
        padding: 0.3rem 0.4rem;
    }

    .a11y-font-btn {
        min-width: 1.75rem;
        min-height: 1.75rem;
        padding: 0.1rem 0.35rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* ==========================================================================
   BACKGROUND GLOW ACCENTS
   ========================================================================== */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.28;
}

.glow-1 {
    top: -10%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 80%);
}

.glow-2 {
    top: 40%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 80%);
}

.glow-3 {
    bottom: -10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 80%);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 13, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: clamp(1rem, 1.5vw, 1.5rem) var(--page-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    transition: var(--transition-fast);
    flex: 1;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-image: linear-gradient(135deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.logo span.brand-pro {
    font-weight: 900;
    background-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-mobile:not([hidden]) {
    display: flex;
}

.nav-mobile-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-mobile-phone {
    color: var(--accent-green);
    font-weight: 700;
    border-bottom: none;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: clamp(1.05rem, 1.15vw, 1.12rem);
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-phone {
    color: var(--accent-green);
    font-weight: 600;
    white-space: nowrap;
}

.nav-link-phone::after {
    background: var(--accent-green);
}

.nav-link-phone:hover {
    color: #86efac;
}

.header-phone-mobile {
    display: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-green);
    white-space: nowrap;
}

.header-phone-mobile:hover {
    color: #86efac;
}

.header-phone-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Rounded social popover popping out on left of call button on desktop */
.header-social-popover {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(12px) scale(0.92);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 18px rgba(59, 130, 246, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.25s;
    z-index: 999;
}

/* Bridge for hover continuity */
.header-social-popover::after {
    content: '';
    position: absolute;
    top: -12px;
    bottom: -12px;
    right: -20px;
    left: -10px;
    z-index: -1;
}

.header-phone-wrapper:hover .header-social-popover,
.header-phone-wrapper:focus-within .header-social-popover,
.header-phone-wrapper.popover-active .header-social-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0) scale(1);
}

.header-popover-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    flex-shrink: 0;
}

.header-popover-item svg {
    width: 17px;
    height: 17px;
    display: block;
}

.header-popover-item:hover {
    transform: translateY(-2px) scale(1.12);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
}

.header-popover-item--phone:hover {
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.6);
    border-color: #10B981;
}

.header-popover-item--sms:hover {
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.6);
    border-color: #3B82F6;
}

.header-popover-item--whatsapp:hover {
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
    border-color: #25D366;
}

.header-popover-item--discord:hover {
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.6);
    border-color: #5865F2;
}

.header-popover-item--facebook:hover {
    box-shadow: 0 0 14px rgba(24, 119, 242, 0.6);
    border-color: #1877F2;
}

.header-popover-item--gmail:hover {
    box-shadow: 0 0 14px rgba(234, 67, 53, 0.6);
    border-color: #EA4335;
}

.header-popover-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0f172a;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.header-popover-item:hover .header-popover-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-hours-container {
    text-align: center;
    line-height: 1;
}

@keyframes shinyWaveGreen {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.header-hours {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.header-hours.is-open {
    background: linear-gradient(
        110deg,
        #059669 0%,
        #10b981 30%,
        #a7f3d0 50%,
        #10b981 70%,
        #059669 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    animation: shinyWaveGreen 2.8s infinite linear;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.45));
}

.header-hours.is-closed {
    color: #f87171 !important;
    filter: drop-shadow(0 0 6px rgba(248, 113, 113, 0.35));
}

.header-hours:hover {
    transform: scale(1.08);
    opacity: 0.95;
}

.btn-cta-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.72rem 1.45rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta-nav:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
    filter: brightness(1.1);
}

.btn-primary:disabled {
    background: #1e293b;
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* ==========================================================================
   FRAMED CONTENT ZONES (hero + configurateur + engagements)
   ========================================================================== */
.zone-framed {
    box-sizing: border-box;
    width: min(var(--page-max), calc(100% - 2 * var(--page-gutter)));
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(12, 14, 20, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.18);
}

.hero.zone-framed {
    margin-top: var(--zone-frame-gap);
    margin-bottom: var(--zone-frame-gap);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
}

.configurator-section.zone-framed {
    max-width: none;
    margin-bottom: var(--zone-frame-gap);
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.25rem, 2.5vw, 2rem);
}

.values-section.zone-framed {
    max-width: none;
    margin-top: var(--zone-frame-gap);
    margin-bottom: var(--zone-frame-gap);
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.25rem, 2.5vw, 2rem);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 10vw, 8rem) var(--page-gutter) clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: min(960px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-new {
    background: rgba(0, 255, 102, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 255, 102, 0.25);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1.75rem, 3.4vw, 2.85rem);
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.hero-title-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.55rem, 1.5vw, 0.85rem);
    flex-wrap: wrap;
}

.hero-title-text {
    background: linear-gradient(to right, #ffffff 30%, #e2e8f0 70%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 4;
}

.hero-speed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.25rem, 4.5vw, 3rem);
    height: clamp(2.25rem, 4.5vw, 3rem);
    flex-shrink: 0;
    color: var(--accent-cyan);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s;
}

.hero-speed-icon.is-racing svg {
    animation: hero-icon-spin 1.6s linear infinite;
}

.hero-speed-icon.is-burst svg {
    animation: hero-icon-burst 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes hero-icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hero-icon-burst {
    0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 0 transparent); }
    35% { transform: rotate(180deg) scale(1.15); filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.65)); }
    100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 0 transparent); }
}

.hero-speed-icon svg {
    width: 100%;
    height: 100%;
}

.hero-title-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.4rem, 1vw, 0.65rem);
    font-size: 0.68em;
    font-weight: 600;
    margin-top: clamp(0.85rem, 1.8vw, 1.25rem);
    letter-spacing: -0.01em;
    max-width: 100%;
}

.hero-speed-icon--balance {
    visibility: hidden;
    pointer-events: none;
}

.hero-title-accent-text {
    background: linear-gradient(to right, #e2e8f0 20%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent .hero-speed-icon {
    width: clamp(1.45rem, 2.6vw, 1.95rem);
    height: clamp(1.45rem, 2.6vw, 1.95rem);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: clamp(0.85rem, 1.8vw, 1.25rem);
    margin-bottom: 0;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-top: var(--hero-cta-gap);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.hero-urgency-badge {
    background: rgba(255, 165, 2, 0.12);
    color: #ffb84d;
    border: 1px solid rgba(255, 165, 2, 0.35);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* How it works */
.how-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
}

.how-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #0a0d14;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.how-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.how-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Assistant / Profiles */
.assistant-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: inherit;
    font-family: inherit;
}

.profile-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.profile-card.active {
    border-color: var(--selection-border);
    background: var(--selection-bg-soft);
    box-shadow: 0 0 20px var(--selection-glow);
}

.profile-card-help {
    border-style: dashed;
}

.profile-emoji {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.profile-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.profile-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.recommendation-banner {
    background: var(--selection-bg-muted);
    border: 1px solid var(--selection-border-soft);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.recommendation-content p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-top: 0.35rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
}

.quiz-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
}

.quiz-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quiz-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    width: 20%;
    transition: width var(--transition-normal);
}

.quiz-question {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.quiz-intro,
.quiz-multi-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.quiz-multi-hint {
    margin-top: -0.35rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    text-align: left;
    color: var(--text-primary);
    font-size: 0.98rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}

.quiz-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.quiz-option.selected {
    border-color: var(--selection-border);
    background: var(--selection-bg);
}

.quiz-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.quiz-or-call {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.quiz-or-call a {
    color: var(--accent-green);
    font-weight: 600;
}

.assistant-or-call {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.assistant-or-call a {
    color: var(--accent-green);
    font-weight: 600;
}

/* Service questionnaire (prestations) */
.service-questionnaire {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 0.5rem;
}

.sq-progress-header {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.sq-progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.sq-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    overflow: hidden;
}

.sq-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 50px;
    transition: width var(--transition-normal);
    width: 0;
}

.sq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.sq-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.sq-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sq-selection-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--selection-accent);
    background: var(--selection-bg-soft);
    border: 1px solid var(--selection-border-soft);
    border-radius: 10px;
    line-height: 1.45;
}

.sq-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sq-option:hover {
    border-color: var(--border-glow);
    background: var(--selection-bg-muted);
}

.sq-option.selected {
    border-color: var(--selection-border);
    background: var(--selection-bg);
    box-shadow: 0 0 0 1px var(--selection-border-soft);
}

.sq-option-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}

.sq-option-label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.sq-option-detail {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.sq-option-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #10b981;
    display: inline-block;
    margin-top: 0.35rem;
}

.sq-option.selected .sq-option-detail {
    color: var(--text-primary);
    opacity: 0.92;
}

.sq-option.selected .sq-option-price {
    color: #34d399;
}

.sq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    align-items: center;
}

.sq-actions #sq-next {
    margin-left: auto;
}

.sq-tier-picker {
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px dashed var(--border-color);
}

.sq-tier-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.sq-complete {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.sq-complete-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--selection-bg-soft);
    border: 2px solid var(--selection-accent);
    color: var(--selection-accent);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-complete-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sq-complete-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.manual-mode-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.services-list-manual {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border-color);
}

/* Privacy trust section */
.privacy-trust-section {
    max-width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 1rem var(--page-gutter) clamp(2.5rem, 4vw, 3.5rem);
}

.privacy-trust-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 16px;
    padding: 2rem;
}

.privacy-trust-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.privacy-trust-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.privacy-trust-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-trust-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.privacy-trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Values / engagements section */
.values-section {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) var(--page-gutter) clamp(3rem, 5vw, 4.5rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 850px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                filter 0.35s ease,
                opacity 0.35s ease;
}

/* Floutage focalisé des autres cartes au survol */
.values-grid:has(.value-card:hover) .value-card:not(:hover) {
    filter: blur(3px) opacity(0.4);
    transform: scale(0.97);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px) scale(1.015);
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Color themes */
.value-card-emerald {
    border-color: rgba(16, 185, 129, 0.25);
}
.value-card-emerald::before { background: linear-gradient(90deg, #10b981, #34d399); }
.value-card-emerald:hover { border-color: rgba(16, 185, 129, 0.5); box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15); }
.highlight-text-emerald { color: #34d399; }
.pill-emerald { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-emerald { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25); }

.value-card-blue {
    border-color: rgba(59, 130, 246, 0.25);
}
.value-card-blue::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.value-card-blue:hover { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15); }
.highlight-text-blue { color: #60a5fa; }
.pill-blue { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.icon-blue { background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.25); }

.value-card-purple {
    border-color: rgba(168, 85, 247, 0.25);
}
.value-card-purple::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
.value-card-purple:hover { border-color: rgba(168, 85, 247, 0.5); box-shadow: 0 12px 30px rgba(168, 85, 247, 0.15); }
.highlight-text-purple { color: #c084fc; }
.pill-purple { background: rgba(168, 85, 247, 0.12); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.icon-purple { background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); }

.value-card-amber {
    border-color: rgba(245, 158, 11, 0.25);
}
.value-card-amber::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.value-card-amber:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15); }
.highlight-text-amber { color: #fbbf24; }
.pill-amber { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.icon-amber { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.25); }

.value-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.value-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.value-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
    padding: 0;
}

.value-list li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.45;
}

.value-list li span {
    font-weight: bold;
    flex-shrink: 0;
}

.list-emerald li span { color: #34d399; }
.list-blue li span { color: #60a5fa; }
.list-purple li span { color: #c084fc; }
.list-amber li span { color: #fbbf24; }

.value-highlight-box {
    margin-top: auto;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.box-purple {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #e9d5ff;
}

/* Comparison Card & Table Styles */
.value-card-comparison {
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(15, 23, 42, 0.85);
}
.value-card-comparison::before { background: linear-gradient(90deg, #38bdf8, #818cf8, #34d399); }
.value-card-comparison:hover { border-color: rgba(56, 189, 248, 0.6); box-shadow: 0 12px 35px rgba(56, 189, 248, 0.2); }
.pill-comparison { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.35); }
.icon-comparison { background: rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.3); }

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.comparison-table th, .comparison-table td {
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-table th {
    background: rgba(30, 41, 59, 0.85);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.col-classic {
    color: #f87171;
}

.col-pcpro {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.06);
}

.badge-cross {
    font-size: 0.9rem;
    margin-right: 0.35rem;
}

.badge-check {
    font-size: 0.9rem;
    margin-right: 0.35rem;
}

/* Values Footer Banner */
.values-footer-banner {
    margin-top: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.values-footer-banner p {
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.values-footer-banner strong {
    color: #38bdf8;
    font-weight: 800;
}

/* Price comparator */
.price-comparator-section {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
}

.price-comparator-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.price-comparator-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-comparator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.price-comparator-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.15rem;
}

.price-comparator-context {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.price-comparator-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.price-competitor,
.price-us {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-comparator-who {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.price-comparator-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.price-comparator-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-muted);
}

.price-comparator-amount.price-comparator-ours {
    color: var(--accent-green);
}

.price-comparator-note {
    font-size: 0.72rem;
    color: var(--accent-green);
    font-weight: 600;
}

.price-competitor .price-comparator-amount {
    text-decoration: line-through;
    opacity: 0.75;
}

.price-comparator-arrow {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.price-comparator-save {
    font-size: 0.85rem;
    color: var(--accent-green);
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.price-comparator-save strong {
    font-weight: 800;
}

.service-addon {
    margin-left: 1.25rem;
    border-style: dashed;
    opacity: 0.95;
}

.service-addon-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255, 165, 2, 0.12);
    color: #ffb84d;
}

.advanced-toggle-row {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.advanced-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.advanced-toggle input {
    position: absolute;
    opacity: 0;
}

.advanced-toggle-slider {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    transition: var(--transition-fast);
}

.advanced-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.advanced-toggle input:checked + .advanced-toggle-slider {
    background: var(--accent-cyan);
}

.advanced-toggle input:checked + .advanced-toggle-slider::after {
    transform: translateX(20px);
}

.badge-advised {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-left: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.35);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

.cart-system-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.service-mode-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.badge-atelier {
    background: rgba(255, 165, 2, 0.12);
    color: #ffb84d;
}

.badge-both {
    background: var(--selection-bg-soft);
    color: var(--selection-accent);
}

.badge-warning {
    animation: pulse-warn 1.5s infinite;
}

@keyframes pulse-warn {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.service-rec-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-cyan);
}

.info-tooltip {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
}

.info-tooltip:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.service-warning {
    font-size: 0.9rem;
    color: #ffb84d;
    background: rgba(255, 165, 2, 0.08);
    border-left: 3px solid #ffa502;
    padding: 0.6rem 0.85rem;
    border-radius: 0 6px 6px 0;
    margin-top: 0.5rem;
    line-height: 1.45;
}

.service-incompatible {
    border-color: rgba(255, 165, 2, 0.5) !important;
}

.service-included {
    opacity: 0.65;
    border-color: var(--selection-border-soft) !important;
}

.service-included-hint {
    font-size: 0.85rem;
    color: var(--selection-accent);
    font-weight: 600;
    margin-top: 0.35rem;
}

.service-description {
    font-size: 0.95rem;
}

.form-group-checkbox {
    margin-top: -0.25rem;
}

.checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.checkbox-inline input {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-cyan);
}

.success-card .btn-secondary {
    margin-bottom: 0.75rem;
    width: 100%;
}

.booking-form-error {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    font-size: 0.85rem;
    line-height: 1.45;
}

.booking-form-error[hidden] {
    display: none !important;
}

.btn-booking-confirm:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--accent-cyan);
}

.footer-contact a {
    color: var(--accent-green);
    font-weight: 600;
}

.feature-item svg {
    color: var(--accent-cyan);
}

/* ==========================================================================
   CONFIGURATOR SECTION
   ========================================================================== */
.configurator-section {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-gutter);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-header-questionnaire {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-title-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.85rem, 2vw, 1.75rem);
    width: 100%;
    max-width: min(820px, 92vw);
    margin: 0 auto;
}

.section-title--decorated {
    margin-bottom: 0;
    white-space: nowrap;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.interactive-title__label {
    background: linear-gradient(135deg, #ffffff 15%, #e2e8f0 55%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(37, 99, 235, 0.18));
    position: relative;
    z-index: 4;
}

/* ==========================================================================
   INTERACTIVE TITLE FRAMES
   ========================================================================== */
.interactive-title {
    --it-x: 50%;
    --it-y: 50%;
    --it-angle: 0deg;
    position: relative;
    display: inline-block;
    padding: 0.28em 0.75em;
    border-radius: 14px;
    isolation: isolate;
    cursor: default;
    user-select: none;
}

.interactive-title--hero {
    padding: 0.32em 0.85em;
    background: rgba(8, 9, 12, 0.42);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.interactive-title--section {
    background: rgba(8, 9, 12, 0.38);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.hero-title-text {
    animation: hero-title-micro-shake 5s ease-in-out infinite;
}

.interactive-title__aura {
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--it-x) var(--it-y),
        rgba(59, 130, 246, 0.28) 0%,
        rgba(37, 99, 235, 0.08) 35%,
        transparent 70%
    );
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.25s ease;
}

.interactive-title.is-hover .interactive-title__aura {
    opacity: 1;
}

.interactive-title__ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background:
        conic-gradient(
            from var(--it-angle) at var(--it-x) var(--it-y),
            rgba(59, 130, 246, 0.15) 0deg,
            var(--accent-cyan) 55deg,
            #93c5fd 110deg,
            rgba(59, 130, 246, 0.2) 180deg,
            var(--accent-purple) 250deg,
            rgba(59, 130, 246, 0.15) 360deg
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.72;
    pointer-events: none;
    z-index: 1;
    animation: interactive-ring-idle 9s linear infinite;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.interactive-title.is-hover .interactive-title__ring {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.35));
}

.interactive-title--section .interactive-title__ring {
    animation-duration: 12s;
}

.interactive-title__speed-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    opacity: 1;
    z-index: 3;
    mix-blend-mode: screen;
}

.interactive-title__speed-lines span {
    position: absolute;
    display: block;
    height: 2px;
    width: 42%;
    left: 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.35) 18%,
        rgba(191, 219, 254, 0.95) 50%,
        rgba(125, 211, 252, 0.35) 82%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.65);
    opacity: 0;
    transform: translateX(-110%);
    animation: speed-line-dash 1.6s linear infinite;
    will-change: transform, opacity;
}

.interactive-title__speed-lines span:nth-child(1) {
    top: 24%;
    animation-duration: 1.35s;
}

.interactive-title__speed-lines span:nth-child(2) {
    top: 40%;
    animation-duration: 1.05s;
    animation-delay: 0.25s;
}

.interactive-title__speed-lines span:nth-child(3) {
    top: 56%;
    animation-duration: 1.2s;
    animation-delay: 0.5s;
}

.interactive-title__speed-lines span:nth-child(4) {
    top: 70%;
    animation-duration: 1.45s;
    animation-delay: 0.7s;
}

.interactive-title__speed-lines span:nth-child(5) {
    top: 84%;
    animation-duration: 0.95s;
    animation-delay: 0.95s;
}

.interactive-title--hero.is-clicked .interactive-title__speed-lines span {
    animation-duration: 0.55s !important;
}

.interactive-title__ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.55) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    animation: interactive-title-ripple 0.55s ease-out forwards;
}

@keyframes hero-title-micro-shake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(0.35px, -0.25px) rotate(0.06deg); }
    40% { transform: translate(-0.3px, 0.4px) rotate(-0.05deg); }
    60% { transform: translate(0.25px, 0.2px) rotate(0.04deg); }
    80% { transform: translate(-0.2px, -0.15px) rotate(-0.03deg); }
}

.interactive-title--hero.is-clicked {
    animation: hero-title-speed-boost 0.48s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.interactive-title--hero.is-clicked .hero-title-text {
    animation: hero-title-speed-boost 0.48s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes hero-title-speed-boost {
    0% { transform: translate(0, 0) scale(1); }
    18% { transform: translate(-2px, 1px) scale(1.025); }
    36% { transform: translate(3px, -2px) scale(0.985); }
    54% { transform: translate(-2px, -1px) scale(1.015); }
    72% { transform: translate(2px, 2px) scale(1); }
    100% { transform: translate(0, 0) scale(1); }
}

.interactive-title--section.is-clicked {
    animation: section-title-pulse 0.42s ease-out;
}

@keyframes section-title-pulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes interactive-ring-idle {
    from { --it-angle: 0deg; }
    to { --it-angle: 360deg; }
}

@keyframes speed-line-dash {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }
    12% {
        opacity: 0.85;
    }
    55% {
        opacity: 1;
    }
    100% {
        transform: translateX(340%);
        opacity: 0;
    }
}

@keyframes interactive-title-ripple {
    0% { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(14); opacity: 0; }
}

@property --it-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-text,
    .interactive-title--hero.is-clicked,
    .interactive-title--hero.is-clicked .hero-title-text,
    .interactive-title--section.is-clicked {
        animation: none;
    }

    .interactive-title__ring {
        animation: none;
    }

    .hero-speed-icon.is-racing svg,
    .hero-speed-icon.is-burst svg {
        animation: none !important;
    }

    .interactive-title__speed-lines span {
        animation-duration: 2.8s !important;
        opacity: 0.55;
    }
}

.title-ornament {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    max-width: clamp(72px, 14vw, 160px);
}

.title-ornament--left {
    justify-content: flex-end;
}

.title-ornament--right {
    justify-content: flex-start;
}

.title-ornament-line {
    flex: 1;
    height: 2px;
    border-radius: 2px;
    opacity: 0.95;
}

.title-ornament--left .title-ornament-line {
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.15) 25%, var(--accent-cyan) 100%);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.title-ornament--right .title-ornament-line {
    background: linear-gradient(90deg, var(--accent-cyan) 0%, rgba(59, 130, 246, 0.15) 75%, transparent 100%);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.title-ornament-gem {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    margin: 0 0.65rem;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
    box-shadow:
        0 0 10px rgba(37, 99, 235, 0.55),
        0 0 20px rgba(0, 255, 102, 0.12);
}

.title-ornament-gem::after {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    margin: 3px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
}

.configurator-setup {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.configurator-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.configurator-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Step Card Base */
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    transition: border-color var(--transition-normal);
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.step-card-compact {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    background: rgba(255, 255, 255, 0.02);
    min-width: 0;
}

.step-card-compact .mode-grid {
    gap: 0.65rem;
}

.mode-grid--stacked {
    grid-template-columns: 1fr;
}

.step-card-compact .mode-card {
    align-items: stretch;
    gap: 0;
    padding: 0.9rem 1rem;
    min-width: 0;
}

.step-card-compact .mode-details {
    width: 100%;
    min-width: 0;
    text-align: left;
}

.step-card-compact .mode-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.step-card-compact .mode-name-row .mode-name {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.step-card-compact .mode-name-row .mode-badge {
    margin-top: 0;
    flex-shrink: 0;
}

.step-card-compact .mode-name {
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.step-card-compact .step-header {
    margin-bottom: 1.15rem;
}

.step-card-compact .step-title {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.step-card-compact .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
}

.step-card-compact .mode-name {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.configurator-setup > .step-card-compact {
    min-width: 0;
}

.step-card-featured {
    border: 2px solid rgba(37, 99, 235, 0.45);
    background: linear-gradient(165deg, rgba(37, 99, 235, 0.1) 0%, rgba(18, 23, 36, 0.95) 45%);
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.12),
        0 12px 40px rgba(59, 130, 246, 0.15);
    scroll-margin-top: 6rem;
    padding: clamp(2rem, 3.5vw, 3rem);
}

.step-card-featured:hover {
    border-color: rgba(37, 99, 235, 0.65);
}

.step-card-featured .step-title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.step-number-featured {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan)) !important;
    font-size: 1rem !important;
}

.step-instruction-featured {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.advanced-toggle-row-inline {
    margin-bottom: 1.25rem;
    justify-content: flex-start;
}

#prestations .service-questionnaire {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
}

.sq-step {
    min-height: 8rem;
}

#prestations .sq-question {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

#prestations .sq-option {
    padding: clamp(1rem, 1.5vw, 1.2rem) clamp(1rem, 1.8vw, 1.35rem);
}

#prestations .sq-option-label {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.services-list-manual.hidden {
    display: none !important;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #0a0d14;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 600;
}

.step-badge {
    background: rgba(38, 175, 99, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(38, 175, 99, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: auto;
}

.step-instruction {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: -0.75rem;
}

/* STEP 1: Intervention Mode Selection */
.mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.mode-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mode-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
}

.mode-card.active {
    background: var(--selection-bg);
    border-color: var(--selection-border);
    box-shadow: 0 0 20px var(--selection-glow);
}

.mode-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mode-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mode-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
    margin-top: auto;
}

.mode-card.active .mode-badge {
    background: var(--selection-bg-soft);
    border-color: var(--selection-border-soft);
    color: var(--selection-accent);
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* STEP 2: Packs / Bundles Selection */
.step-card-packs {
    padding: 2rem 2.25rem;
}

.pack-intro {
    margin-bottom: 1.25rem;
    line-height: 1.55;
    max-width: 42rem;
}

.pack-footnote {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pack-footnote a {
    color: var(--accent-cyan);
    font-weight: 600;
}

.pack-comparator-details {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.pack-comparator-details summary {
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent-cyan);
    list-style: none;
    user-select: none;
}

.pack-comparator-details summary::-webkit-details-marker {
    display: none;
}

.pack-comparator-details summary::before {
    content: "+ ";
    color: var(--text-muted);
}

.pack-comparator-details[open] summary::before {
    content: "− ";
}

.pack-comparator-details .price-comparator-grid {
    margin-top: 1rem;
}

.step-badge-discount {
    background: var(--selection-bg-soft);
    color: var(--selection-accent);
    border-color: var(--selection-border-soft);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pack-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 1.65rem 1.65rem;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    overflow: hidden;
    min-height: 0;
}

.pack-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.pack-card.active {
    background: var(--selection-bg-muted);
    border-color: var(--selection-border);
    box-shadow: 0 0 25px var(--selection-glow);
}

.pack-popular-tag {
    position: absolute;
    top: 12px;
    right: -32px;
    background: var(--accent-purple);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pack-popular-tag.tag-sante {
    background: var(--text-success);
}

.pack-popular-tag.tag-performance {
    background: var(--accent-purple);
}

.pack-popular-tag.tag-gamer {
    background: var(--accent-cyan);
    color: #000;
}

.pack-summary {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding-right: 0.5rem;
}

.pack-promise {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 2.75rem;
}

.pack-savings strong {
    font-weight: 800;
}

.pack-includes-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pack-bonuses {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 165, 2, 0.06);
    border: 1px dashed rgba(255, 165, 2, 0.35);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pack-bonuses li {
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.4;
}

.pack-bonuses li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffb84d;
    font-size: 0.75rem;
}

.pack-card-performance {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.08);
}

.pack-card-performance .pack-title {
    color: var(--accent-cyan);
}

.pack-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    padding-right: 2rem;
}

.pack-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0.15rem 0 0;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1.1;
}

.pack-savings {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.pack-features-compact {
    margin-bottom: 0.5rem !important;
    gap: 0.35rem !important;
}

.pack-features-compact li {
    font-size: 0.88rem;
    line-height: 1.4;
}

.pack-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-features li::before {
    content: "✓";
    color: var(--accent-cyan);
    font-weight: bold;
}

.pack-card.active .pack-features li::before {
    color: var(--accent-purple);
}

.pack-card .btn-select-pack {
    margin-top: auto;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    width: 100%;
}

.pack-card.active .btn-select-pack {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #fff;
}

/* STEP 3: Individual Services (Checkboxes) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.service-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.service-item.active {
    border-color: var(--selection-border);
    background: var(--selection-bg);
}

.service-label {
    display: flex;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1.25rem;
    align-items: flex-start;
}

.service-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    min-width: 22px;
    height: 22px;
    border: 2px solid var(--text-muted);
    border-radius: 6px;
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.service-checkbox:checked + .custom-checkbox {
    border-color: var(--selection-accent-strong);
    background: var(--selection-accent-strong);
}

.service-checkbox:checked + .custom-checkbox::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid #0a0d14;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.service-info {
    flex-grow: 1;
}

.service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-name {
    font-weight: 800;
    font-size: 1.1rem;
}

.service-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--accent-green);
}

.service-price-range {
    color: #ffb84d !important;
    font-size: 1rem !important;
    white-space: nowrap;
}

.service-variable {
    border-color: rgba(255, 165, 2, 0.35);
    background: rgba(255, 165, 2, 0.04);
}

.diagnostic-info-box {
    margin-top: 0.85rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.92rem;
}

.diagnostic-info-box p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.diagnostic-info-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.diagnostic-info-box li {
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
    line-height: 1.45;
}

.diagnostic-info-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.diagnostic-market-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

.service-price-discount {
    color: #6bcb77 !important;
}

.service-tier-box {
    margin-top: 0.85rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.92rem;
}

.service-tier-box p {
    color: var(--text-secondary);
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.service-tier-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.45;
    cursor: pointer;
}

.service-tier-option:last-child {
    margin-bottom: 0;
}

.service-tier-option input {
    margin-top: 0.2rem;
    accent-color: var(--accent-cyan);
}

.cart-diagnostic-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding: 0.5rem 0 0;
    border-top: 1px dashed var(--border-color);
    margin-top: 0.25rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   CONFIGURATOR SIDEBAR (STICKY CART)
   ========================================================================== */
.configurator-sidebar {
    position: sticky;
    top: 6rem;
}

.cart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.cart-mode-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin-bottom: 0.5rem;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    animation: fadeIn var(--transition-fast);
}

.cart-item-name {
    color: var(--text-secondary);
    flex: 1;
    min-width: 0;
}

.empty-cart-msg {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-item-price {
    font-weight: 700;
    white-space: nowrap;
}

.cart-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.cart-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.total-row {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 800;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.total-row span:last-child {
    color: var(--accent-green);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.65rem;
}

.cart-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.45;
}

/* Helper Utilities */
.text-success {
    color: var(--text-success) !important;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    font-size: 1.05rem;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   MODAL DIALOG (OVERLAY + CARDS)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-container-booking {
    max-width: min(720px, 96vw);
}

.modal-notice {
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-important);
    background: rgba(255, 0, 85, 0.06);
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-important);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.booking-form-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
}

.booking-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
    width: 100%;
}

.modal-summary-panel {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: min(640px, 100%);
    margin: 0 auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    background: #141820;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8c5d6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

select option {
    background-color: #141820;
    color: var(--text-primary);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

textarea {
    resize: vertical;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    width: 100%;
}

.modal-summary-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.modal-summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-height: none;
    overflow: visible;
}

.modal-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    line-height: 1.35;
}

.modal-summary-list li span:last-child {
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-primary);
}

.modal-total-display {
    border-top: 1px dashed var(--border-color);
    padding-top: 1rem;
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.modal-total-display span:last-child {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.modal-competitor-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.modal-competitor-display span:last-child {
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 700;
}

.modal-savings-display {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--accent-green);
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.btn-booking-confirm {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #041008;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
    width: 100%;
    max-width: min(640px, 100%);
    margin: 0 auto;
}

.btn-booking-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.45);
}

/* SUCCESS MODAL CARD */
.success-overlay {
    z-index: 1100;
}

.success-card {
    background: var(--bg-secondary);
    border: 1.5px fill rgba(0, 255, 102, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    position: relative;
}

.success-overlay.active .success-card {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 102, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1.5px solid rgba(0, 255, 102, 0.25);
    animation: iconPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes iconPop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.success-message strong {
    color: var(--text-primary);
}

.success-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   MOBILE FLOOR SUMMARY BAR
   ========================================================================== */
.mobile-summary-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 23, 36, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    animation: slideUp var(--transition-normal);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.mobile-summary-total {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1.2;
}

.mobile-summary-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mobile-summary-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-link-active {
    color: var(--accent-cyan) !important;
}

.faq-page-section {
    max-width: min(920px, 92vw);
    margin: 0 auto;
    padding: clamp(5.5rem, 8vw, 7rem) var(--page-gutter) clamp(4rem, 6vw, 5rem);
}

.faq-back-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-page-cta {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.faq-page-cta a {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 98;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.45);
    background: rgba(16, 18, 24, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: opacity var(--transition-normal), transform var(--transition-normal), border-color var(--transition-fast);
}

.scroll-to-top:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    color: #fff;
}

.scroll-to-top.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

body.has-mobile-bar .scroll-to-top {
    bottom: 5.5rem;
}

.form-options-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.form-options-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: rgba(5, 7, 12, 0.9);
    border-top: 1px solid var(--border-color);
    padding: clamp(3.5rem, 6vw, 5rem) var(--page-gutter) 2.5rem;
}

.footer-container {
    max-width: var(--page-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-social-bar {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    margin: 3rem auto 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--border-color);
    max-width: var(--page-max);
    flex-wrap: wrap;
}

.footer-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    cursor: pointer;
}

.footer-social-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-social-item:hover .footer-social-label {
    color: #ffffff;
}

.footer-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.footer-social-item:hover .footer-social-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.footer-social-item:hover .footer-social-text {
    color: var(--accent-cyan);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-bottom {
    max-width: var(--page-max);
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-copyright {
    margin: 0;
}

.footer-minimal {
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .configurator-container {
        grid-template-columns: 1fr;
    }
    
    .configurator-sidebar {
        display: none;
    }
    
    .mobile-summary-bar {
        display: flex !important;
    }

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

@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .privacy-trust-card {
        flex-direction: column;
    }

    .service-addon {
        margin-left: 0;
    }

    .header-container {
        padding: 1rem;
    }

    .nav {
        display: none;
    }

    .btn-cta-nav {
        display: none;
    }

    .header-phone-mobile {
        display: inline-flex;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Header Social Popover - positioned cleanly underneath phone button */
    .header-social-popover {
        right: 0;
        left: auto;
        top: calc(100% + 8px);
        transform: translateY(-8px) scale(0.95);
        padding: 6px 10px;
        gap: 6px;
        border-radius: 50px;
        background: rgba(10, 15, 29, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(59, 130, 246, 0.35);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75), 0 0 24px rgba(59, 130, 246, 0.3);
        max-width: calc(100vw - 20px);
        z-index: 1000;
    }

    .header-social-popover::after {
        top: -16px;
        bottom: -10px;
        right: -8px;
        left: -8px;
    }

    .header-phone-wrapper:hover .header-social-popover,
    .header-phone-wrapper:focus-within .header-social-popover,
    .header-phone-wrapper.popover-active .header-social-popover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .header-popover-item {
        width: 35px;
        height: 35px;
    }

    .header-popover-item svg {
        width: 17px;
        height: 17px;
    }

    .header-popover-tooltip {
        bottom: calc(100% + 6px);
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    /* Mobile Drawer Quick Social / Contact Bar */
    .nav-mobile-social {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 6px;
        padding: 0.85rem 0.25rem 0.25rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.35rem;
    }

    .nav-mobile-social-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.2s ease;
        text-decoration: none;
        flex-shrink: 0;
    }

    .nav-mobile-social-item svg {
        width: 19px;
        height: 19px;
        display: block;
    }

    .nav-mobile-social-item:active,
    .nav-mobile-social-item:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.16);
    }

    .nav-mobile-social-item--phone:hover,
    .nav-mobile-social-item--phone:active {
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
        border-color: #10B981;
    }

    .nav-mobile-social-item--sms:hover,
    .nav-mobile-social-item--sms:active {
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
        border-color: #3B82F6;
    }

    .nav-mobile-social-item--whatsapp:hover,
    .nav-mobile-social-item--whatsapp:active {
        box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
        border-color: #25D366;
    }

    .nav-mobile-social-item--facebook:hover,
    .nav-mobile-social-item--facebook:active {
        box-shadow: 0 0 12px rgba(24, 119, 242, 0.6);
        border-color: #1877F2;
    }

    .nav-mobile-social-item--discord:hover,
    .nav-mobile-social-item--discord:active {
        box-shadow: 0 0 12px rgba(88, 101, 242, 0.6);
        border-color: #5865F2;
    }

    .nav-mobile-social-item--gmail:hover,
    .nav-mobile-social-item--gmail:active {
        box-shadow: 0 0 12px rgba(234, 67, 53, 0.6);
        border-color: #EA4335;
    }
}

@media (max-width: 480px) {
    .header-social-popover {
        right: -8px;
        padding: 5px 8px;
        gap: 5px;
    }

    .header-popover-item {
        width: 34px;
        height: 34px;
    }

    .header-popover-item svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 360px) {
    .header-social-popover {
        right: -24px;
        padding: 4px 6px;
        gap: 4px;
    }

    .header-popover-item {
        width: 31px;
        height: 31px;
    }

    .header-popover-item svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        max-width: 320px;
        margin: 0 auto;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .recommendation-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .configurator-section,
    .configurator-section.zone-framed,
    .values-section.zone-framed {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .configurator-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .configurator-setup {
        grid-template-columns: 1fr;
    }

    .section-title--decorated {
        white-space: normal;
        text-align: center;
        font-size: clamp(1.35rem, 4.2vw, 1.75rem);
    }

    .title-ornament {
        max-width: clamp(40px, 12vw, 72px);
    }

    .title-ornament-gem {
        margin: 0 0.4rem;
    }

    .step-card-featured {
        padding: 1.75rem 1.25rem;
    }

    .step-card-featured .step-title {
        font-size: 1.25rem;
    }

    #prestations .service-questionnaire {
        padding: 1.25rem;
    }

    .cart-actions {
        grid-template-columns: 1fr 1fr;
    }

    .step-card {
        padding: 1.5rem;
    }

    .mode-grid {
        grid-template-columns: 1fr;
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }

    .price-comparator-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .price-comparator-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .price-comparator-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .service-label {
        padding: 1rem;
        gap: 0.75rem;
    }

    .service-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .service-price {
        font-size: 1rem;
    }

    .form-row.split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .booking-form-layout {
        align-items: center;
    }

    .modal-summary-panel {
        position: static;
        max-width: 100%;
    }

    .modal-container {
        padding: 1.5rem;
    }

    .modal-container-booking {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PROPOSAL PWA INSTALLATION BANNER & MODAL
   ========================================================================== */
.pwa-install-banner {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.45));
    border: 1px solid rgba(59, 130, 246, 0.35);
    box-shadow: 0 10px 32px rgba(59, 130, 246, 0.15);
    border-radius: 18px;
    padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.pwa-banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pwa-banner-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 400px;
}

.pwa-icon-box {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

.pwa-app-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.8);
    padding: 4px;
}

.pwa-badge-pill {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid #0f172a;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    line-height: 1;
    z-index: 2;
}

.pwa-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pwa-banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.pwa-banner-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.pwa-banner-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pwa-btn-main {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.pwa-guide-card {
    max-width: 520px;
    width: 90%;
    padding: 2rem;
}

.pwa-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pwa-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
}

.pwa-step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.pwa-step-content {
    flex: 1;
}

@media (max-width: 768px) {
    .pwa-banner-card {
        flex-direction: column;
        align-items: stretch;
    }
    .pwa-banner-right {
        width: 100%;
        justify-content: stretch;
    }
    .pwa-banner-right .btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   RESOURCES PAGE STYLES
   ========================================================================== */
.resources-hero {
    text-align: center;
    padding: 4rem 1.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.resource-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.resource-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.resource-header {
    margin-bottom: 1.25rem;
}

.resource-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resource-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.resource-img-frame {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-img-frame:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.resource-img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-img-frame:hover .resource-img {
    transform: scale(1.03);
}

.resource-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.resource-btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.resource-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff !important;
}

.resource-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-primary) !important;
}

.resource-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
}


/* ==========================================================================
   LANGUAGE DETECTION — ENGLISH BANNER & REMOTE-ONLY STYLES
   ========================================================================== */

/* ── Hide Google Translate default chrome ── */
.skiptranslate.goog-te-gadget,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body { top: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ── Language Banner ── */
#lepcpro-lang-banner {
    position: relative;
    z-index: 1050;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    border-bottom: 1px solid rgba(59, 130, 246, 0.35);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.42s cubic-bezier(.16,1,.3,1), opacity 0.42s ease;
}
#lepcpro-lang-banner.lbanner--hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.lbanner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lbanner-globe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lbanner-body {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lbanner-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #60a5fa;
    letter-spacing: 0.01em;
}

.lbanner-msg {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
}
.lbanner-msg em {
    color: #fbbf24;
    font-style: normal;
    font-weight: 600;
}

.lbanner-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.lbanner-btn {
    font-family: inherit;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    line-height: 1;
}

.lbanner-btn--fr {
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f8fafc;
}
.lbanner-btn--fr:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.lbanner-btn--x {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    border-radius: 8px;
}
.lbanner-btn--x:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    transform: scale(1.1);
}

/* ── Disabled Atelier Card (remote-only mode) ── */
.mode-card--remote-only {
    opacity: 0.38;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: grayscale(0.6);
    position: relative;
}
.mode-card--remote-only::after {
    content: '🚫 Unavailable';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #f59e0b;
    background: rgba(0, 0, 0, 0.25);
    border-radius: inherit;
    letter-spacing: 0.04em;
}

/* ── Remote only note ── */
.remote-only-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: #f59e0b;
    margin-top: 0.65rem;
    padding: 0.55rem 0.85rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 10px;
    line-height: 1.5;
}
.remote-only-note em { font-style: normal; }

/* ── Responsive banner ── */
@media (max-width: 640px) {
    .lbanner-inner { gap: 0.75rem; }
    .lbanner-actions { width: 100%; justify-content: flex-end; }
}

/* ── Tracking status badges on website ── */
.status-green {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}
.status-orange {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}
.status-gray {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #9ca3af !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

@keyframes blinker {
    50% {
        opacity: 0.38;
        border-color: #f59e0b;
        box-shadow: 0 0 6px rgba(245, 158, 11, 0.3);
    }
}

.status-waiting {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    animation: blinker 1.8s linear infinite !important;
}

/* ==========================================================================
   ADDED CLASSES FOR REMOVING INLINE CSS & GENERAL OPTIMIZATIONS
   ========================================================================== */

/* Logos styling */
.header-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.modal-logo-pwa {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hide Translate Element dynamically */
.hidden-translate {
    display: none !important;
}

/* Advanced mode inline toggle row class replacement */
.advanced-toggle-row-inline {
    margin-top: 1.25rem;
}

/* Value card comparison grid column class replacement */
.value-card-comparison {
    grid-column: 1 / -1;
}

/* RGPD Checkbox Inline Container */
.checkbox-inline-rgpd {
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-rgpd-input {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-rgpd-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.checkbox-rgpd-link {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Suivi Form Page Classes */
.suivi-form-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-card);
}

.suivi-form-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suivi-label {
    display: block;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.suivi-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    text-align: center;
    transition: border-color 0.2s;
}

.suivi-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 1.05rem;
}

/* ==========================================================================
   FICHE D'AUTISME / FONCTIONNEMENT CLASSES
   ========================================================================== */
.autism-page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.autism-page-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.autism-page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.autism-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

@media (max-width: 992px) {
    .autism-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem 3rem;
    }
}

.autism-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.25rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.autism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent-grad, linear-gradient(90deg, var(--blue), var(--purple)));
}

.autism-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* Accent Gradients for each card type */
.autism-card--expression {
    --card-accent-grad: linear-gradient(90deg, #f59e0b, #ec4899); /* Orange to Pink */
    border-color: rgba(245, 158, 11, 0.15);
}
.autism-card--energy {
    --card-accent-grad: linear-gradient(90deg, #3b82f6, #8b5cf6); /* Blue to Purple */
    border-color: rgba(59, 130, 246, 0.15);
}
.autism-card--time {
    --card-accent-grad: linear-gradient(90deg, #00f0ff, #10b981); /* Cyan to Emerald */
    border-color: rgba(0, 240, 255, 0.15);
}
.autism-card--sensory {
    --card-accent-grad: linear-gradient(90deg, #ef4444, #f59e0b); /* Red to Yellow */
    border-color: rgba(239, 68, 68, 0.15);
}

.autism-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.autism-card-icon {
    font-size: 1.75rem;
}

.autism-card-title {
    font-size: 1.5rem;
    font-weight: 750;
    color: var(--text-primary);
}

.autism-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.autism-item {
    padding-left: 1.25rem;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease;
}

.autism-item:hover {
    border-left-color: var(--item-hover-color, var(--accent-cyan));
}

.autism-card--expression .autism-item {
    --item-hover-color: #ec4899;
}
.autism-card--energy .autism-item {
    --item-hover-color: #8b5cf6;
}
.autism-card--time .autism-item {
    --item-hover-color: #10b981;
}
.autism-card--sensory .autism-item {
    --item-hover-color: #f59e0b;
}

.autism-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.autism-item-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.autism-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 2rem;
}

.autism-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
