.desktop-nav {
    display: flex;
}

.mobile-menu-button,
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
    }
}
/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background-color: #fafbff;
    background-image:
            radial-gradient(circle at 15% 10%, rgba(79, 70, 229, 0.16) 0%, transparent 45%),
            radial-gradient(circle at 85% 0%, rgba(6, 182, 212, 0.14) 0%, transparent 40%),
            radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
    --color-primary: #4f46e5;
    --color-primary-light: #6366f1;
    --color-primary-dark: #3730a3;
    --color-accent: #06b6d4;
    --color-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-border: #e2e8f0;
    --color-white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(79, 70, 229, 0.15);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

header nav {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
}

.logo {
    background-image: url('/images/icekom_new_logo.png');
    background-size: 160px;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color var(--transition);
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

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

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* ==========================================================================
   MAIN / TITRES GENERIQUES
   ========================================================================== */

main {
    min-height: calc(100vh - 200px);
}

section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

.section-eyebrow {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0.75rem auto 3.5rem;
}

/* ==========================================================================
   BOUTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(79, 70, 229, 0.25);
}

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

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

/* variante claire du bouton outline sur fond sombre (hero, cta) */
.hero .btn-outline,
.cta-final .btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}

.hero .btn-outline:hover,
.cta-final .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HERO — version enrichie
   ========================================================================== */

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: left;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 560px;
    margin: 0;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-buttons .btn-primary svg {
    transition: transform var(--transition);
}

.hero-buttons .btn-primary:hover svg {
    transform: translateX(3px);
}

/* Indicateurs de confiance */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item svg {
    color: #34d399;
    flex-shrink: 0;
}

/* Visuel */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-main {
    width: 100%;
    max-width: 420px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Badges flottants */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    animation: float 5s ease-in-out infinite;
}

.hero-float svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero-float div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-float strong {
    font-size: 0.85rem;
    color: var(--color-text);
}

.hero-float span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.hero-float-1 {
    top: 8%;
    right: -5%;
    animation-delay: 0.5s;
}

.hero-float-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 1.2s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--spacing-lg);
    }
    .hero-content { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 1rem; }
    .hero-float { display: none; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
}

/* ==========================================================================
   NOS AVANTAGES
   ========================================================================== */

.launch-offer {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #eef2ff 100%);
    border-radius: var(--radius);
    max-width: calc(var(--max-width) - 4rem);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: 0 1px 2px rgba(79, 70, 229, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.launch-offer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.launch-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

.launch-offer h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.launch-offer-inner > p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}


.perk {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
}

.perk-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.perk p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-preview {
    text-align: center;
}

.services-preview h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.service-card {
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition);
}

.service-card a:hover {
    gap: 0.6rem;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process {
    text-align: center;
}

.process h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.process-step {
    text-align: left;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ==========================================================================
   WHY US
   ========================================================================== */

.why-us {
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
    max-width: calc(var(--max-width) - 4rem);
    margin: var(--spacing-md) auto;
    text-align: center;
}

.why-us h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 1rem;
}

.why-us-item {
    padding: 1rem;
}

.why-us-item .number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-primary);
    background: rgba(79, 70, 229, 0.1);
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.cta-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-image:
            radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.35) 0%, transparent 45%),
            radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 45%),
            linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: var(--radius);
    margin: var(--spacing-lg) auto;
    max-width: calc(var(--max-width) - 4rem);
    overflow: hidden;
    position: relative;
}

.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-final h2,
.cta-final p,
.cta-final .btn {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: white;
    font-size: 2.25rem;
    text-align: center;
    max-width: 500px;
}

.cta-final p {
    color: #cbd5e1;
    text-align: center;
    max-width: 500px;
    margin: 1rem auto 2rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   PAGE CONTACT
   ========================================================================== */

.contact-page {
    min-height: calc(100vh - 200px);
}

.contact-hero {
    max-width: 100%;
    padding: 6rem var(--spacing-md) 4rem;
    text-align: center;
    background:
            radial-gradient(
                    circle at 20% 20%,
                    rgba(79, 70, 229, 0.12),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 80% 0%,
                    rgba(6, 182, 212, 0.1),
                    transparent 40%
            );
}

.contact-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.contact-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1.1rem;
}


/* CONTENU */

.contact-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}


/* INFORMATIONS */

.contact-info-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-header p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-info-item:hover {
    transform: translateX(4px);
    border-color: rgba(79, 70, 229, 0.18);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.07);
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.12),
            rgba(6, 182, 212, 0.12)
    );
    color: var(--color-primary);
    border-radius: 11px;
}

.contact-info-icon svg {
    width: 19px;
    height: 19px;
}

.contact-info-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-item span {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.2;
}

.contact-info-item strong,
.contact-info-item a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* FORMULAIRE */

.contact-form-wrapper {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


/* SELECTEUR CONTACT / DEVIS */

.form-type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.form-type-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    padding: 1rem;
    border: 1.5px solid var(--color-border);
    background: white;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.form-type-btn:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.form-type-btn.active {
    border-color: var(--color-primary);
    background: rgba(79, 70, 229, 0.05);
    box-shadow:
            0 0 0 3px rgba(79, 70, 229, 0.08);
}

.form-type-icon {
    font-size: 1.4rem;
}

.form-type-btn span:last-child {
    display: flex;
    flex-direction: column;
}

.form-type-btn strong {
    font-size: 0.95rem;
    color: var(--color-text);
}

.form-type-btn small {
    color: var(--color-text-light);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}


/* CHAMPS */

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow:
            0 0 0 3px rgba(79, 70, 229, 0.08);
}


/* CHAMPS DYNAMIQUES */

.dynamic-fields {
    display: none;
    animation: contactFadeIn 0.25s ease;
}

.dynamic-fields.active {
    display: block;
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* CHECKBOX */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--color-text-light);
    font-size: 0.78rem;
    cursor: pointer;
}

.checkbox-group input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}


/* BOUTON */

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-security {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.75rem;
    margin: 0;
}

.form-hint {
    color: var(--color-text-light);
    font-size: 0.75rem;
}

.form-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.9rem;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}
/* ============================================================
   ERREURS FORMULAIRE
   ============================================================ */

.form-group {
    position: relative;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #ef4444 !important;
    background-color: #fffafa;
    box-shadow:
            0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-group input.input-error:focus,
.form-group select.input-error:focus,
.form-group textarea.input-error:focus {
    border-color: #dc2626 !important;
    box-shadow:
            0 0 0 4px rgba(239, 68, 68, 0.10);
}

.field-error {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    padding-left: 0.1rem;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;
    animation: errorSlideIn 0.2s ease-out;
}

.field-error::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   MESSAGE GLOBAL
   ============================================================ */

.form-message {
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.5;
    animation: errorSlideIn 0.25s ease-out;
}

.form-message.error {
    display: flex;
    background: linear-gradient(
            135deg,
            #fff5f5 0%,
            #fef2f2 100%
    );
    border: 1px solid #fecaca;
    color: #b91c1c;
    box-shadow:
            0 4px 15px rgba(239, 68, 68, 0.06);
}

.form-message.error::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.form-message.success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(
            135deg,
            #f0fdf4 0%,
            #ecfdf5 100%
    );
    border: 1px solid #bbf7d0;
    color: #15803d;
    box-shadow:
            0 4px 15px rgba(34, 197, 94, 0.06);
}

.form-message.success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    font-size: 12px;
    font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 900px) {

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

    .contact-info {
        max-width: 700px;
        margin: 0 auto;
    }

}

@media (max-width: 600px) {

    .contact-hero {
        padding: 4rem var(--spacing-sm) 2.5rem;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-section {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .form-type {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}
/* ==========================================================================
PAGE SERVICES
========================================================================== */

.services-page {
    overflow: hidden;
}


/* HERO */

.services-hero {
    max-width: 100%;
    padding: 7rem var(--spacing-md) 6rem;
    text-align: center;
    background:
            radial-gradient(
                    circle at 15% 10%,
                    rgba(79, 70, 229, 0.15) 0%,
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 0%,
                    rgba(6, 182, 212, 0.12) 0%,
                    transparent 40%
            );
}

.services-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.services-hero h1 span,
.services-values h2 span,
.services-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-hero p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.services-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* SERVICES */

.services-main {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-main > h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
}

.services-main > .section-subtitle {
    text-align: center;
}


/* LISTE */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}


/* CARTE SERVICE */

.service-detail {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    circle at 0% 50%,
                    rgba(79, 70, 229, 0.07),
                    transparent 35%
            );
    pointer-events: none;
}

.service-detail:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.18);
    box-shadow: var(--shadow-lg);
}

.service-detail-reverse {
    grid-template-columns: 1fr 280px;
}

.service-detail-reverse .service-detail-visual {
    order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}


/* VISUEL */

.service-detail-visual {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
            radial-gradient(
                    circle at center,
                    rgba(79, 70, 229, 0.11),
                    transparent 65%
            );
    border-radius: 18px;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 24px;
    box-shadow:
            0 20px 45px rgba(79, 70, 229, 0.22);
}

.service-detail-icon svg {
    width: 48px;
    height: 48px;
}

.service-number {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(79, 70, 229, 0.08);
}


/* CONTENU */

.service-detail-content {
    position: relative;
    z-index: 1;
}

.service-tag {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.service-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
}

.service-detail-content > p {
    max-width: 650px;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}


/* FEATURES */

.service-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.5rem;
    margin-bottom: 1.75rem;
}

.service-features div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.88rem;
}

.service-features span {
    color: #16a34a;
    font-weight: 800;
}


/* LIEN */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 0.8rem;
}

.service-link span {
    font-size: 1.1rem;
}


/* VALEURS */

.services-values {
    max-width: calc(var(--max-width) - 4rem);
    margin: var(--spacing-lg) auto;
    padding: 4rem;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
    border-radius: 20px;
}

.services-values-header {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-values-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.services-values-header p {
    color: var(--color-text-light);
}


/* VALEURS GRID */

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

.service-value {
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(255,255,255,0.9);
    padding: 1.75rem;
    border-radius: var(--radius);
}

.service-value-number {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-value h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.service-value p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* CTA */

.services-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: var(--spacing-lg) auto;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background-image:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4) 0%,
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3) 0%,
                    transparent 40%
            ),
            linear-gradient(
                    135deg,
                    #0f172a 0%,
                    #1e293b 100%
            );
}

.services-cta .section-eyebrow {
    color: #a5b4fc;
}

.services-cta h2 {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 2.4rem;
}

.services-cta p {
    max-width: 620px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .services-hero h1 {
        font-size: 2.7rem;
    }

    .service-detail,
    .service-detail-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-reverse .service-detail-visual {
        order: 1;
    }

    .service-detail-reverse .service-detail-content {
        order: 2;
    }

    .service-detail-visual {
        height: 190px;
    }

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

}


@media (max-width: 600px) {

    .services-hero {
        padding: 4rem var(--spacing-sm);
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-main {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .service-detail {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .service-detail h3 {
        font-size: 1.45rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .services-values,
    .services-cta {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
    }

    .services-values-header h2,
    .services-cta h2 {
        font-size: 1.8rem;
    }

}
/* ==========================================================================
   CREATION SITE
   ========================================================================== */

.creation-site-section {
    max-width: 100%;
    padding: 0 0 5rem;
}


/* HERO */

.creation-site-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.creation-site-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.creation-site-hero-content h1 span,
.creation-site-included-content h2 span,
.creation-site-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.creation-site-hero-content > p {
    max-width: 620px;
    color: var(--color-text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.creation-site-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* VISUEL */

.creation-site-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.creation-browser {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    box-shadow:
            0 30px 70px rgba(15, 23, 42, 0.14);
    overflow: hidden;
    transform: rotate(1deg);
}

.creation-browser-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.creation-browser-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.creation-browser-content {
    padding: 28px;
}

.creation-browser-header {
    width: 100%;
    height: 18px;
    border-radius: 5px;
    background: var(--gradient-primary);
    margin-bottom: 30px;
}

.creation-browser-title {
    width: 65%;
    height: 28px;
    border-radius: 6px;
    background: #cbd5e1;
    margin-bottom: 15px;
}

.creation-browser-text {
    width: 88%;
    height: 11px;
    border-radius: 4px;
    background: #e2e8f0;
    margin-bottom: 9px;
}

.creation-browser-text.short {
    width: 65%;
}

.creation-browser-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.creation-browser-buttons span {
    width: 95px;
    height: 35px;
    border-radius: 8px;
    background: var(--gradient-primary);
}

.creation-browser-buttons span:last-child {
    background: #e2e8f0;
}

.creation-browser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.creation-browser-cards div {
    height: 80px;
    border-radius: 9px;
    background: #f1f5f9;
}


/* INTRO */

.creation-site-intro {
    max-width: 720px;
    margin: 2rem auto 4rem;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.creation-site-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.creation-site-intro p {
    color: var(--color-text-light);
}


/* FEATURES */

.creation-site-features {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.creation-feature {
    padding: 1.6rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.creation-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-md);
}

.creation-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.creation-feature-icon svg {
    width: 23px;
    height: 23px;
}

.creation-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.creation-feature p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* INCLUS */

.creation-site-included {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 20px;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
}

.creation-site-included-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.creation-site-included-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.creation-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.creation-checklist div {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--color-text);
}

.creation-checklist span {
    color: #16a34a;
    font-weight: 800;
}


/* PROCESS */

.creation-process {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 var(--spacing-md);
}

.creation-process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.creation-process-header h2 {
    font-size: 2.25rem;
}

.creation-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.creation-process-step {
    position: relative;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.creation-process-step > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.creation-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.creation-process-step p {
    color: var(--color-text-light);
    font-size: 0.88rem;
}


/* CTA */

.creation-site-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto 0;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}

.creation-site-cta .section-eyebrow {
    color: #a5b4fc;
}

.creation-site-cta h2 {
    color: white;
    font-size: 2.4rem;
}

.creation-site-cta p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .creation-site-hero {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .creation-site-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .creation-site-actions {
        justify-content: center;
    }

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

    .creation-site-included {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 600px) {

    .creation-site-hero {
        padding: 3.5rem var(--spacing-sm);
    }

    .creation-site-hero-content h1 {
        font-size: 2.2rem;
    }

    .creation-site-features {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }

    .creation-site-included {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
        gap: 2rem;
    }

    .creation-checklist {
        grid-template-columns: 1fr;
    }

    .creation-process {
        padding: 0 var(--spacing-sm);
    }

    .creation-process-grid {
        grid-template-columns: 1fr;
    }

    .creation-site-cta {
        max-width: calc(100% - 2rem);
        padding: 3.5rem 1.25rem;
    }

    .creation-site-cta h2 {
        font-size: 1.9rem;
    }

}
/* ==========================================================================
   REFONTE SITE
   ========================================================================== */

.refonte-site-section {
    max-width: 100%;
    padding-bottom: 5rem;
}


/* HERO */

.refonte-site-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.refonte-site-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.refonte-site-hero-content h1 span,
.refonte-analysis-content h2 span,
.refonte-site-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.refonte-site-hero-content > p {
    max-width: 620px;
    color: var(--color-text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.refonte-site-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* AVANT / APRÈS */

.refonte-site-visual {
    position: relative;
}

.refonte-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
}

.refonte-panel {
    position: relative;
}

.refonte-panel-label {
    display: inline-flex;
    margin-bottom: 0.65rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.refonte-before .refonte-panel-label {
    color: #64748b;
    background: #e2e8f0;
}

.refonte-after .refonte-panel-label {
    color: var(--color-primary);
    background: rgba(79, 70, 229, 0.1);
}

.refonte-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}


/* ANCIEN SITE */

.refonte-old-browser,
.refonte-new-browser {
    background: white;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.refonte-old-browser {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.09);
}

.refonte-old-top,
.refonte-new-top {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    border-bottom: 1px solid var(--color-border);
}

.refonte-old-top {
    background: #f1f5f9;
}

.refonte-new-top {
    background: #f8fafc;
}

.refonte-old-top span,
.refonte-new-top span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
}

.refonte-old-content,
.refonte-new-content {
    padding: 16px;
}

.refonte-old-nav {
    width: 100%;
    height: 9px;
    background: #cbd5e1;
    margin-bottom: 20px;
}

.refonte-old-title {
    width: 80%;
    height: 18px;
    background: #94a3b8;
    margin-bottom: 12px;
}

.refonte-old-line {
    width: 100%;
    height: 7px;
    background: #e2e8f0;
    margin-bottom: 6px;
}

.refonte-old-line.short {
    width: 65%;
}

.refonte-old-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 18px;
}

.refonte-old-boxes span {
    height: 58px;
    background: #e2e8f0;
}


/* NOUVEAU SITE */

.refonte-new-browser {
    box-shadow:
            0 20px 45px rgba(79, 70, 229, 0.18);
}

.refonte-new-nav {
    width: 100%;
    height: 9px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
}

.refonte-new-title {
    width: 75%;
    height: 19px;
    background: #334155;
    border-radius: 3px;
    margin-bottom: 12px;
}

.refonte-new-line {
    width: 100%;
    height: 7px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 6px;
}

.refonte-new-line.short {
    width: 60%;
}

.refonte-new-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 18px;
}

.refonte-new-cards span {
    height: 58px;
    border-radius: 7px;
    background:
            linear-gradient(
                    135deg,
                    #eef2ff,
                    #cffafe
            );
}


/* INTRO */

.refonte-site-intro {
    max-width: 760px;
    margin: 2rem auto 4rem;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.refonte-site-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.refonte-site-intro p {
    color: var(--color-text-light);
}


/* BÉNÉFICES */

.refonte-benefits {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.refonte-benefit {
    padding: 1.6rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.refonte-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-md);
}

.refonte-benefit-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
}

.refonte-benefit-icon svg {
    width: 23px;
    height: 23px;
}

.refonte-benefit h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.refonte-benefit p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* ANALYSE */

.refonte-analysis {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 20px;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
}

.refonte-analysis-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.refonte-analysis-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.refonte-analysis-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.refonte-analysis-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
}

.refonte-check {
    color: #16a34a;
    font-weight: 800;
}


/* PROCESS */

.refonte-process {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 var(--spacing-md);
}

.refonte-process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.refonte-process-header h2 {
    font-size: 2.25rem;
}

.refonte-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.refonte-process-step {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.refonte-process-step > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.refonte-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.refonte-process-step p {
    color: var(--color-text-light);
    font-size: 0.88rem;
}


/* CTA */

.refonte-site-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto 0;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}

.refonte-site-cta .section-eyebrow {
    color: #a5b4fc;
}

.refonte-site-cta h2 {
    color: white;
    font-size: 2.4rem;
}

.refonte-site-cta p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .refonte-site-hero {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .refonte-site-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .refonte-site-actions {
        justify-content: center;
    }

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

    .refonte-analysis {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 600px) {

    .refonte-site-hero {
        padding: 3.5rem var(--spacing-sm);
    }

    .refonte-site-hero-content h1 {
        font-size: 2.2rem;
    }

    .refonte-before-after {
        grid-template-columns: 1fr;
    }

    .refonte-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .refonte-benefits {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }

    .refonte-analysis {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
    }

    .refonte-analysis-list {
        grid-template-columns: 1fr;
    }

    .refonte-process {
        padding: 0 var(--spacing-sm);
    }

    .refonte-process-grid {
        grid-template-columns: 1fr;
    }

    .refonte-site-cta {
        max-width: calc(100% - 2rem);
        padding: 3.5rem 1.25rem;
    }

    .refonte-site-cta h2 {
        font-size: 1.9rem;
    }

}
       /* ==========================================================================
          SEO SITE
          ========================================================================== */

   .seo-site-section {
       max-width: 100%;
       padding-bottom: 5rem;
   }


/* HERO */

.seo-site-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.seo-site-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.seo-site-hero-content h1 span,
.seo-analysis-content h2 span,
.seo-site-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.seo-site-hero-content > p {
    max-width: 620px;
    color: var(--color-text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.seo-site-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* VISUEL SEO */

.seo-site-visual {
    display: flex;
    justify-content: center;
}

.seo-ranking-card {
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow:
            0 25px 60px rgba(15, 23, 42, 0.12);
}

.seo-ranking-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.seo-ranking-logo {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f8fafc;
    color: #4285f4;
    font-size: 1.2rem;
    font-weight: 800;
}

.seo-search-bar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.seo-search-bar strong {
    color: var(--color-primary);
    font-size: 1rem;
}

.seo-results {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.seo-result {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 12px;
    background: #f8fafc;
}

.seo-result-main {
    background:
            linear-gradient(
                    135deg,
                    rgba(79, 70, 229, 0.08),
                    rgba(6, 182, 212, 0.08)
            );
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.seo-result-position {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.seo-result-position.muted {
    background: #e2e8f0;
    color: #64748b;
}

.seo-result small {
    display: block;
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.seo-result strong {
    display: block;
    color: var(--color-text);
    font-size: 0.88rem;
}

.seo-result p {
    margin-top: 0.3rem;
    color: var(--color-text-light);
    font-size: 0.72rem;
}

.seo-result-line {
    width: 180px;
    max-width: 100%;
    height: 7px;
    margin-top: 7px;
    border-radius: 4px;
    background: #e2e8f0;
}

.seo-result-line.short {
    width: 120px;
}

.seo-ranking-badge {
    position: absolute;
    right: -16px;
    bottom: -16px;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
}


/* INTRO */

.seo-site-intro {
    max-width: 760px;
    margin: 2rem auto 4rem;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.seo-site-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.seo-site-intro p {
    color: var(--color-text-light);
}


/* BÉNÉFICES */

.seo-benefits-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.seo-benefit {
    padding: 1.6rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.seo-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-md);
}

.seo-benefit-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
}

.seo-benefit-icon svg {
    width: 23px;
    height: 23px;
}

.seo-benefit h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.seo-benefit p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* ANALYSE */

.seo-analysis {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 20px;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
}

.seo-analysis-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.seo-analysis-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.seo-analysis-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.seo-analysis-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
}

.seo-analysis-list div span {
    color: #16a34a;
    font-weight: 800;
}


/* PROCESS */

.seo-process {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 var(--spacing-md);
}

.seo-process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.seo-process-header h2 {
    font-size: 2.25rem;
}

.seo-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.seo-process-step {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.seo-process-step > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.seo-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.seo-process-step p {
    color: var(--color-text-light);
    font-size: 0.88rem;
}


/* CTA */

.seo-site-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto 0;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}

.seo-site-cta .section-eyebrow {
    color: #a5b4fc;
}

.seo-site-cta h2 {
    color: white;
    font-size: 2.4rem;
}

.seo-site-cta p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .seo-site-hero {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .seo-site-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-site-actions {
        justify-content: center;
    }

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

    .seo-analysis {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 600px) {

    .seo-site-hero {
        padding: 3.5rem var(--spacing-sm);
    }

    .seo-site-hero-content h1 {
        font-size: 2.2rem;
    }

    .seo-benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }

    .seo-analysis {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
    }

    .seo-analysis-list {
        grid-template-columns: 1fr;
    }

    .seo-process {
        padding: 0 var(--spacing-sm);
    }

    .seo-process-grid {
        grid-template-columns: 1fr;
    }

    .seo-ranking-badge {
        right: 5px;
        bottom: -12px;
    }

    .seo-site-cta {
        max-width: calc(100% - 2rem);
        padding: 3.5rem 1.25rem;
    }

    .seo-site-cta h2 {
        font-size: 1.9rem;
    }

}

/* ==========================================================================
   E-COMMERCE
   ========================================================================== */

.ecommerce-site-section {
    max-width: 100%;
    padding-bottom: 5rem;
}


/* HERO */

.ecommerce-site-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecommerce-site-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.ecommerce-site-hero-content h1 span,
.ecommerce-site-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-site-hero-content > p {
    max-width: 620px;
    color: var(--color-text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.ecommerce-site-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   VISUEL BOUTIQUE
   ============================================================ */

.ecommerce-site-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ecommerce-shop-window {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow:
            0 30px 70px rgba(15, 23, 42, 0.13);
    transform: rotate(-1deg);
}

.ecommerce-shop-top {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.85rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.ecommerce-shop-dots {
    display: flex;
    gap: 5px;
}

.ecommerce-shop-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.ecommerce-shop-address {
    flex: 1;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: white;
    color: #94a3b8;
    font-size: 0.65rem;
    text-align: center;
}

.ecommerce-shop-content {
    padding: 1rem;
}

.ecommerce-shop-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ecommerce-shop-logo {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.8rem;
}

.ecommerce-shop-nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 0.7rem;
}

.ecommerce-shop-nav-links span {
    width: 45px;
    height: 5px;
    border-radius: 4px;
    background: #e2e8f0;
}

.ecommerce-shop-cart {
    position: relative;
    color: var(--color-text);
}

.ecommerce-shop-cart svg {
    width: 18px;
    height: 18px;
}

.ecommerce-shop-cart i {
    position: absolute;
    top: -7px;
    right: -8px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 800;
}


/* SHOP HERO */

.ecommerce-shop-hero {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    min-height: 175px;
    padding: 1.5rem;
    border-radius: 12px;
    background:
            linear-gradient(
                    135deg,
                    #eef2ff 0%,
                    #ecfeff 100%
            );
}

.ecommerce-shop-hero small {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.ecommerce-shop-hero strong {
    display: block;
    color: var(--color-text);
    font-size: 1.4rem;
    line-height: 1.05;
}

.ecommerce-shop-hero > div:first-child > span {
    display: block;
    width: 70px;
    height: 6px;
    margin: 0.8rem 0;
    border-radius: 4px;
    background: var(--gradient-primary);
}

.ecommerce-shop-hero em {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 700;
}

.ecommerce-product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecommerce-product-visual > div {
    width: 100px;
    height: 110px;
    border-radius: 16px;
    background:
            linear-gradient(
                    135deg,
                    #6366f1,
                    #06b6d4
            );
    transform: rotate(8deg);
    box-shadow:
            0 15px 30px rgba(79, 70, 229, 0.22);
}


/* PRODUITS */

.ecommerce-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.ecommerce-product-card > div {
    height: 75px;
    border-radius: 9px;
    background:
            linear-gradient(
                    135deg,
                    #f1f5f9,
                    #e0e7ff
            );
    margin-bottom: 0.5rem;
}

.ecommerce-product-card span {
    display: block;
    width: 75%;
    height: 6px;
    border-radius: 4px;
    background: #cbd5e1;
    margin-bottom: 5px;
}

.ecommerce-product-card strong {
    display: block;
    width: 45%;
    height: 7px;
    border-radius: 4px;
    background: #94a3b8;
}


/* BADGE */

.ecommerce-floating-cart {
    position: absolute;
    right: -15px;
    bottom: -18px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: white;
    box-shadow:
            0 12px 30px rgba(15, 23, 42, 0.12);
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 700;
}

.ecommerce-floating-cart svg {
    width: 17px;
    height: 17px;
}


/* ============================================================
   INTRO
   ============================================================ */

.ecommerce-site-intro {
    max-width: 760px;
    margin: 2rem auto 4rem;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.ecommerce-site-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.ecommerce-site-intro p {
    color: var(--color-text-light);
}


/* ============================================================
   FEATURES
   ============================================================ */

.ecommerce-features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ecommerce-feature {
    padding: 1.6rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.ecommerce-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-md);
}

.ecommerce-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
}

.ecommerce-feature-icon svg {
    width: 23px;
    height: 23px;
}

.ecommerce-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.ecommerce-feature p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}


/* ============================================================
   PARCOURS CLIENT
   ============================================================ */

.ecommerce-customer-journey {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    border-radius: 20px;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
}

.ecommerce-journey-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.ecommerce-journey-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.ecommerce-journey-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ecommerce-journey-step {
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
}

.ecommerce-journey-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 800;
}

.ecommerce-journey-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.ecommerce-journey-step p {
    color: var(--color-text-light);
    font-size: 0.82rem;
}

.ecommerce-journey-line {
    display: none;
}


/* ============================================================
   GESTION
   ============================================================ */

.ecommerce-management {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecommerce-management-visual {
    display: flex;
    justify-content: center;
}

.ecommerce-dashboard {
    width: 100%;
    max-width: 500px;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: white;
    box-shadow:
            0 25px 60px rgba(15, 23, 42, 0.1);
}

.ecommerce-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 700;
}

.ecommerce-dashboard-header i {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(79, 70, 229, 0.1);
}

.ecommerce-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.ecommerce-dashboard-stats > div {
    padding: 1rem;
    border-radius: 10px;
    background: #f8fafc;
}

.ecommerce-dashboard-stats small {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-text-light);
    font-size: 0.68rem;
}

.ecommerce-dashboard-stats strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text);
    font-size: 1.2rem;
}

.ecommerce-dashboard-stats span {
    color: #16a34a;
    font-size: 0.68rem;
    font-weight: 700;
}

.ecommerce-dashboard-chart {
    height: 130px;
    display: flex;
    align-items: end;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background:
            linear-gradient(
                    to top,
                    #f8fafc,
                    #fff
            );
}

.ecommerce-dashboard-chart span {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: var(--gradient-primary);
}

.ecommerce-dashboard-chart span:nth-child(1) {
    height: 30%;
}

.ecommerce-dashboard-chart span:nth-child(2) {
    height: 45%;
}

.ecommerce-dashboard-chart span:nth-child(3) {
    height: 38%;
}

.ecommerce-dashboard-chart span:nth-child(4) {
    height: 65%;
}

.ecommerce-dashboard-chart span:nth-child(5) {
    height: 72%;
}

.ecommerce-dashboard-chart span:nth-child(6) {
    height: 90%;
}

.ecommerce-management-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.ecommerce-management-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.ecommerce-management-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.ecommerce-management-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.ecommerce-management-list span {
    color: #16a34a;
    font-weight: 800;
}


/* ============================================================
   PROCESS
   ============================================================ */

.ecommerce-process {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 var(--spacing-md);
}

.ecommerce-process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ecommerce-process-header h2 {
    font-size: 2.25rem;
}

.ecommerce-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ecommerce-process-step {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.ecommerce-process-step > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.ecommerce-process-step p {
    color: var(--color-text-light);
    font-size: 0.88rem;
}


/* ============================================================
   CTA
   ============================================================ */

.ecommerce-site-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: 5rem auto 0;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}

.ecommerce-site-cta .section-eyebrow {
    color: #a5b4fc;
}

.ecommerce-site-cta h2 {
    color: white;
    font-size: 2.4rem;
}

.ecommerce-site-cta p {
    max-width: 620px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


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

@media (max-width: 900px) {

    .ecommerce-site-hero {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .ecommerce-site-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-site-actions {
        justify-content: center;
    }

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

    .ecommerce-customer-journey {
        grid-template-columns: 1fr;
    }

    .ecommerce-management {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 600px) {

    .ecommerce-site-hero {
        padding: 3.5rem var(--spacing-sm);
    }

    .ecommerce-site-hero-content h1 {
        font-size: 2.2rem;
    }

    .ecommerce-features-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-sm);
    }

    .ecommerce-customer-journey {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
    }

    .ecommerce-journey-steps {
        grid-template-columns: 1fr;
    }

    .ecommerce-management {
        padding: 0 var(--spacing-sm);
    }

    .ecommerce-management-list {
        grid-template-columns: 1fr;
    }

    .ecommerce-process {
        padding: 0 var(--spacing-sm);
    }

    .ecommerce-process-grid {
        grid-template-columns: 1fr;
    }

    .ecommerce-floating-cart {
        right: 5px;
        bottom: -12px;
    }

    .ecommerce-site-cta {
        max-width: calc(100% - 2rem);
        padding: 3.5rem 1.25rem;
    }

    .ecommerce-site-cta h2 {
        font-size: 1.9rem;
    }

}

       /* ==========================================================================
          ABOUT / À PROPOS
          ========================================================================== */

   .about-page {
       overflow: hidden;
   }


/* HERO */

.about-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 5rem;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 3.35rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.about-hero-content h1 span,
.about-story-header h2 span,
.about-values-header h2 span,
.about-services-header h2 span,
.about-cta h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero-content > p {
    max-width: 640px;
    color: var(--color-text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.about-hero-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background:
            radial-gradient(
                    circle at 25% 20%,
                    rgba(79, 70, 229, 0.45),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 80% 80%,
                    rgba(6, 182, 212, 0.35),
                    transparent 45%
            ),
            var(--gradient-dark);
    color: white;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
}

.about-logo-mark {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    font-size: 2rem;
    font-weight: 800;
}

.about-hero-card > span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-hero-card small {
    margin-top: 0.35rem;
    color: #94a3b8;
}


/* STORY */

.about-story {
    max-width: var(--max-width);
    margin: 2rem auto 6rem;
    padding: 0 var(--spacing-md);
}

.about-story-header {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-story-header h2 {
    font-size: 2.35rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-story-content .about-lead {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 500;
}

.about-story-highlight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.about-highlight-item > span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(79,70,229,0.08);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 800;
}

.about-highlight-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.about-highlight-item p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}


/* VALUES */

.about-values {
    max-width: calc(var(--max-width) - 4rem);
    margin: 0 auto 6rem;
    padding: 4rem;
    border-radius: 22px;
    background:
            linear-gradient(
                    135deg,
                    #f5f3ff 0%,
                    #eef2ff 55%,
                    #ecfeff 100%
            );
}

.about-values-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-values-header h2 {
    font-size: 2.3rem;
}

.about-values-header p {
    margin-top: 1rem;
    color: var(--color-text-light);
}

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

.about-value {
    padding: 1.5rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--radius);
}

.about-value-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
}

.about-value h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-value p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}


/* SERVICES */

.about-services {
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 var(--spacing-md);
}

.about-services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-services-header h2 {
    font-size: 2.3rem;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.about-service-card {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79,70,229,0.2);
    box-shadow: var(--shadow-md);
}

.about-service-card > span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary);
}

.about-service-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.about-service-card p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about-service-card strong {
    color: var(--color-primary);
    font-size: 0.85rem;
}


/* CTA */

.about-cta {
    max-width: calc(var(--max-width) - 4rem);
    margin: 0 auto 5rem;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 22px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79, 70, 229, 0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6, 182, 212, 0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}

.about-cta .section-eyebrow {
    color: #a5b4fc;
}

.about-cta h2 {
    color: white;
    font-size: 2.4rem;
}

.about-cta p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: #cbd5e1;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-card {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

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

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

}


@media (max-width: 600px) {

    .about-hero {
        padding: 4rem var(--spacing-sm);
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-story {
        padding: 0 var(--spacing-sm);
    }

    .about-story-header h2,
    .about-values-header h2,
    .about-services-header h2 {
        font-size: 1.9rem;
    }

    .about-values {
        max-width: calc(100% - 2rem);
        padding: 2rem 1.25rem;
    }

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

    .about-services {
        padding: 0 var(--spacing-sm);
    }

    .about-cta {
        max-width: calc(100% - 2rem);
        padding: 3.5rem 1.25rem;
    }

    .about-cta h2 {
        font-size: 1.9rem;
    }

}
       /* ==========================================================================
          MENTIONS LÉGALES
          ========================================================================== */

   .legal-page {
       padding-bottom: 5rem;
   }

.legal-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem var(--spacing-md) 3rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

.legal-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-hero p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}


.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}


.legal-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.25rem;
    padding: 2rem;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.legal-card:hover {
    border-color: rgba(79,70,229,0.16);
    box-shadow: var(--shadow-sm);
}


.legal-card-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(79,70,229,0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 800;
}


.legal-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


.legal-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}


.legal-card p:last-child {
    margin-bottom: 0;
}


.legal-information {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    background: #f8fafc;
}


.legal-information p {
    margin-bottom: 0.45rem;
}


.legal-information strong {
    color: var(--color-text);
}


.legal-information a,
.legal-card a {
    color: var(--color-primary);
    font-weight: 600;
}


.legal-information a:hover,
.legal-card a:hover {
    text-decoration: underline;
}


.legal-contact {
    margin-top: 2rem;
    padding: 3.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    color: white;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(79,70,229,0.4),
                    transparent 40%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(6,182,212,0.3),
                    transparent 40%
            ),
            var(--gradient-dark);
}


.legal-contact .section-eyebrow {
    color: #a5b4fc;
}


.legal-contact h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}


.legal-contact p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: #cbd5e1;
}


.legal-update {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.75rem;
}


@media (max-width: 600px) {

    .legal-hero {
        padding: 4rem var(--spacing-sm) 2rem;
    }

    .legal-hero h1 {
        font-size: 2.2rem;
    }

    .legal-container {
        padding: 0 var(--spacing-sm);
    }

    .legal-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .legal-contact {
        padding: 3rem 1.25rem;
    }

    .legal-contact h2 {
        font-size: 1.7rem;
    }

}
/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-lg);
}

footer a {
    text-decoration: none;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-col h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1rem 0;
}

.footer-col p {
    color: var(--color-text-light);
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--color-text-light);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-primary);
}

.footer-col address {
    font-style: normal;
}

.footer-col address a {
    color: var(--color-text-light);
    transition: color var(--transition);
}

.footer-col address a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

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

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

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--spacing-lg);
    }
    .hero-content { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .launch-perks { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-150%);
        transition: transform var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .burger {
        display: block;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    section { padding: var(--spacing-md) var(--spacing-sm); }
}


      /* ============================================================
         COOKIE BANNER
      ============================================================= */

  .cookie-banner {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 9999;
  }

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow:
            0 20px 60px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(15px);
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text strong {
    display: block;
    margin-bottom: 0.3rem;
    color: white;
    font-size: 0.95rem;
}

.cookie-banner-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.78rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    display: inline-block;
    margin-top: 0.35rem;
    color: #a5b4fc;
    font-size: 0.78rem;
    font-weight: 600;
}

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

.cookie-btn {
    min-height: 40px;
    padding: 0.65rem 1rem;
    border-radius: 9px;
    border: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.cookie-btn-primary {
    color: white;
    background: var(--gradient-primary);
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    color: #e2e8f0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
}

.cookie-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}


/* ============================================================
   MODALE
============================================================= */

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(5px);
}

.cookie-modal-box {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 18px;
    box-shadow:
            0 30px 80px rgba(15, 23, 42, 0.25);
    animation: cookieModalIn 0.2s ease;
}

@keyframes cookieModalIn {

    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.cookie-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-modal-header h2 {
    margin-top: 0.2rem;
    font-size: 1.5rem;
}

.cookie-modal-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.4rem;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--color-text);
    font-size: 0.9rem;
}

.cookie-option p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.76rem;
    line-height: 1.5;
}

.cookie-status {
    flex-shrink: 0;
    color: var(--color-text-light);
    font-size: 0.7rem;
    font-weight: 600;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}
[hidden] {
    display: none !important;
}

/* ============================================================
   SWITCH
============================================================= */

.cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.2s ease;
}

.cookie-switch span::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: white;
    transition: 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-switch input:checked + span {
    background: var(--color-primary);
}

.cookie-switch input:checked + span::before {
    transform: translateX(20px);
}


/* ============================================================
   BOUTON COOKIES
============================================================= */

.cookie-manage-button {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 9000;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 9px;
    background: white;
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-manage-button:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}


/* ============================================================
   MOBILE
============================================================= */

@media (max-width: 700px) {

    .cookie-banner {
        left: 0.6rem;
        right: 0.6rem;
        bottom: 0.6rem;
    }

    .cookie-banner-content {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-btn-primary {
        grid-column: span 2;
    }

    .cookie-option {
        align-items: flex-start;
    }

}