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

:root {
    --turquoise-light: #64F4EC;
    --turquoise: #12C4B2;
    --green: #29FFBD;
    --dark-turquoise: #137C6A;
    --navy: #003543;
    --navy-light: #00485e;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --france-blue: #002395;
    --france-red: #ED2939;
    --turquoise-glow: rgba(18,196,178,0.15);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.nav-badge-france {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gray-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-left: 1rem;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--turquoise);
}

/* Tricolore bar */
.tricolore-bar {
    height: 3px;
    background: linear-gradient(to right, var(--france-blue) 33.33%, white 33.33%, white 66.66%, var(--france-red) 66.66%);
    position: relative;
    z-index: 999;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
    margin-top: 80px;
    background: var(--navy);
    color: var(--white);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 100%;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(18,196,178,0.3);
}

.cta-outline {
    background: transparent;
    border: 2px solid var(--turquoise);
    color: var(--turquoise);
    margin-left: 1rem;
}

.cta-outline:hover {
    background: var(--turquoise);
    color: var(--white);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

/* ═══════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════ */

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18,196,178,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.feature-card p {
    color: #666;
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   BADGE FRANCE
   ═══════════════════════════════════════════ */

.badge-france {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--france-blue);
    border-right: 3px solid var(--france-red);
}

.badge-france-dark {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: var(--france-blue);
    border-right-color: var(--france-red);
}

/* ═══════════════════════════════════════════
   TRUST BADGES ROW
   ═══════════════════════════════════════════ */

.trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.trust-badge .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════
   TOUT COMPRIS SECTION
   ═══════════════════════════════════════════ */

.tout-compris-section {
    padding: 4rem 2rem;
    background: var(--gray-light);
}

.tout-compris-section.dark {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--dark-turquoise) 100%);
    color: white;
}

.tout-compris-content,
.tout-compris-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tout-compris-inner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tout-compris-inner .tc-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.tout-compris-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition-smooth);
}

.tout-compris-item:hover {
    transform: translateY(-5px);
}

.tout-compris-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise-glow), rgba(41,255,189,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.tout-compris-item:hover .tout-compris-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--turquoise-glow);
}

.tout-compris-section.dark .tout-compris-icon {
    background: rgba(255,255,255,0.1);
}

.tout-compris-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.tout-compris-section.dark .tout-compris-item h4 {
    color: white;
}

.tout-compris-item p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

.tout-compris-section.dark .tout-compris-item p {
    color: rgba(255,255,255,0.7);
}

/* Compact variant (for tarifs page before calculator) */
.tout-compris-compact {
    padding: 2.5rem 2rem;
    background: var(--gray-light);
}

.tout-compris-compact .tout-compris-grid {
    gap: 1rem;
}

.tout-compris-compact .tout-compris-item {
    padding: 1.2rem 0.8rem;
}

.tout-compris-compact .tout-compris-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.tout-compris-compact .tout-compris-item h4 {
    font-size: 0.85rem;
}

.tout-compris-compact .tout-compris-item p {
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════
   STATS / COUNTERS
   ═══════════════════════════════════════════ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .number,
.counter-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-card .label {
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section with gradient background */
.cta-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--dark-turquoise) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18,196,178,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.cta-section .cta-button {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   FOOTER BADGES
   ═══════════════════════════════════════════ */

.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.footer-tout-compris {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.footer-tout-compris span {
    color: var(--turquoise-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════ */

.pricing-hero {
    background: linear-gradient(160deg, var(--navy) 0%, #01495e 50%, var(--dark-turquoise) 100%);
    color: white; padding: 7rem 2rem 4rem; text-align: center;
    position: relative; overflow: hidden; margin-top: 80px;
}
.pricing-hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(18,196,178,0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.pricing-hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(41,255,189,0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.pricing-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; }
.pricing-hero h1 span {
    background: linear-gradient(135deg, var(--turquoise-light), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-hero .lead {
    font-size: 1.15rem; font-weight: 300; max-width: 650px; margin: 0 auto;
    opacity: 0.85; position: relative; z-index: 1; line-height: 1.8;
}

/* Steps bar */
.steps-bar {
    display: flex; justify-content: center; gap: 0; margin: -1.5rem auto 0;
    max-width: 700px; position: relative; z-index: 2;
}
.step-item {
    flex: 1; text-align: center; padding: 1.2rem 1rem; background: white; position: relative;
    font-weight: 600; font-size: 0.9rem; color: var(--navy);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1); transition: all 0.3s;
}
.step-item:first-child { border-radius: 14px 0 0 14px; }
.step-item:last-child { border-radius: 0 14px 14px 0; }
.step-item .num {
    display: inline-flex; width: 28px; height: 28px; border-radius: 50%;
    background: var(--gray-light); color: var(--navy);
    align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; margin-right: 0.5rem; transition: all 0.3s;
}
.step-item.active { color: var(--turquoise); }
.step-item.active .num { background: linear-gradient(135deg, var(--turquoise), var(--green)); color: white; }
.step-item.done .num { background: var(--turquoise); color: white; }

/* Calculator layout */
.calc-container {
    max-width: 1200px; margin: 3rem auto 0; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start;
}
.calc-main { min-width: 0; }
.calc-sidebar { position: sticky; top: 100px; }

/* Section cards */
.calc-section {
    background: white; border-radius: 20px; padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 2rem;
}
.calc-section-title {
    font-size: 1.25rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.6rem;
}
.calc-section-title .badge {
    font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 50px;
    background: linear-gradient(135deg, var(--turquoise), var(--green)); color: white; letter-spacing: 0.5px;
}
.calc-section-sub { font-size: 0.9rem; color: #888; font-weight: 400; margin-bottom: 1.5rem; }

/* Device type grid */
.device-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.8rem; }
.device-card {
    border: 2px solid #eee; border-radius: 14px; padding: 1.1rem 0.8rem;
    text-align: center; cursor: pointer; transition: all 0.25s; position: relative; background: white;
}
.device-card:hover { border-color: var(--turquoise); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18,196,178,0.12); }
.device-card.selected { border-color: var(--turquoise); background: rgba(18,196,178,0.04); }
.device-card .d-icon { font-size: 1.8rem; margin-bottom: 0.4rem; display: block; }
.device-card .d-name { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.device-card .d-price { font-size: 0.7rem; color: #999; margin-top: 0.2rem; }
.device-card .d-count {
    position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise), var(--green)); color: white;
    font-size: 0.75rem; font-weight: 700; display: none; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(18,196,178,0.4);
}
.device-card.selected .d-count { display: flex; }

/* Device config */
.device-configs { margin-top: 1.2rem; }
.device-config-item {
    background: var(--gray-light); border-radius: 12px; padding: 1rem 1.2rem;
    margin-bottom: 0.6rem; display: flex; align-items: center; gap: 1rem;
    animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.device-config-item .cfg-icon { font-size: 1.3rem; min-width: 30px; text-align: center; }
.device-config-item .cfg-info { flex: 1; min-width: 0; }
.device-config-item .cfg-type { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.device-config-item .cfg-detail { font-size: 0.75rem; color: #999; }
.device-config-item input[type="text"] {
    width: 100%; max-width: 160px; padding: 0.45rem 0.7rem; border: 2px solid #ddd;
    border-radius: 8px; font-size: 0.85rem; font-family: inherit; transition: border-color 0.2s;
}
.device-config-item input[type="text"]:focus { border-color: var(--turquoise); outline: none; }
.device-config-item .cfg-storage { display: flex; align-items: center; gap: 0.5rem; }
.cfg-storage input[type="number"] {
    width: 80px; padding: 0.45rem 0.5rem; border: 2px solid #ddd;
    border-radius: 8px; font-size: 0.85rem; font-family: inherit; text-align: center;
}
.cfg-storage input[type="number"]:focus { border-color: var(--turquoise); outline: none; }
.cfg-storage .unit { font-size: 0.8rem; color: #888; font-weight: 500; }
.device-config-item .cfg-price {
    font-weight: 700; font-size: 0.9rem; color: var(--turquoise);
    white-space: nowrap; min-width: 70px; text-align: right;
}
.btn-remove {
    width: 30px; height: 30px; border-radius: 8px; border: none;
    background: rgba(231,76,60,0.08); color: #e74c3c; cursor: pointer;
    font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.btn-remove:hover { background: #e74c3c; color: white; }

/* Option cards (retention, engagement, support) */
.option-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.option-card {
    flex: 1; min-width: 130px; border: 2px solid #eee; border-radius: 12px;
    padding: 1rem; cursor: pointer; transition: all 0.2s; text-align: center; position: relative;
}
.option-card:hover { border-color: #ccc; }
.option-card.selected { border-color: var(--turquoise); background: rgba(18,196,178,0.04); }
.option-card .opt-label { font-weight: 700; font-size: 1rem; color: var(--navy); }
.option-card .opt-sub { font-size: 0.78rem; color: #888; margin-top: 0.15rem; }
.option-card .opt-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: white; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.6rem;
    border-radius: 50px; white-space: nowrap; display: none;
}
.option-card.has-badge .opt-badge { display: block; }
.option-card.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; border-color: #ddd; }
.option-card.disabled .opt-label,
.option-card.disabled .opt-sub,
.option-card.disabled div { text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.3); }
.option-card.disabled .opt-badge-soon { text-decoration: none; }
.opt-badge-soon {
    display: inline-block; margin-top: 0.5rem; background: #f0f0f0; color: #999;
    font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.7rem; border-radius: 50px;
}

/* Sidebar summary */
.summary-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.summary-header {
    background: linear-gradient(160deg, var(--navy), var(--dark-turquoise));
    color: white; padding: 1.8rem 2rem 1.5rem; text-align: center;
}
.summary-header .label { font-size: 0.85rem; font-weight: 400; opacity: 0.7; margin-bottom: 0.3rem; }
.summary-header .price-big {
    font-size: 3rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--turquoise-light), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.summary-header .period { font-size: 0.9rem; font-weight: 300; opacity: 0.7; margin-top: 0.2rem; }
.summary-tooltip { font-size: 0.72rem; opacity: 0.6; margin-top: 0.5rem; font-style: italic; }
.summary-body { padding: 1.5rem 2rem; }
.summary-line { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.85rem; color: #666; }
.summary-line .s-label { display: flex; align-items: center; gap: 0.4rem; }
.summary-line .s-value { font-weight: 600; color: var(--navy); }
.summary-line.discount .s-value { color: var(--turquoise); }
.summary-divider { border: none; border-top: 1px solid #eee; margin: 0.5rem 0; }
.summary-total { display: flex; justify-content: space-between; padding: 0.7rem 0; font-weight: 700; font-size: 1rem; color: var(--navy); }
.summary-footer { padding: 0 2rem 2rem; }
.btn-devis {
    width: 100%; padding: 1rem; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: white; font-size: 1.05rem; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-devis:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(18,196,178,0.35); }
.btn-devis:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-devis-sub { display: block; font-size: 0.75rem; font-weight: 400; margin-top: 0.3rem; opacity: 0.85; }
.summary-empty { text-align: center; padding: 2rem 1rem; color: #aaa; }
.summary-empty .empty-icon { font-size: 2.5rem; margin-bottom: 0.5rem; opacity: 0.4; }
.summary-empty p { font-size: 0.85rem; }

/* Guarantees row */
.guarantees {
    max-width: 1200px; margin: 3rem auto 0; padding: 0 2rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.guarantee-item {
    display: flex; align-items: center; gap: 1rem;
    background: white; padding: 1.2rem 1.5rem; border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.guarantee-item .g-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(18,196,178,0.1), rgba(41,255,189,0.1));
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.guarantee-item .g-text { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* Devis modal */
.devis-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,53,67,0.7); backdrop-filter: blur(4px);
    z-index: 10000; justify-content: center; align-items: center;
}
.devis-overlay.active { display: flex; }
.devis-modal {
    background: #fff; border-radius: 20px; padding: 2.5rem; max-width: 520px; width: 92%;
    max-height: 90vh; overflow-y: auto; position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25); animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.devis-modal h3 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1.4rem; font-weight: 700; }
.devis-modal .subtitle { color: #888; margin-bottom: 1.5rem; font-size: 0.9rem; }
.devis-modal .form-group { margin-bottom: 1rem; }
.devis-modal label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.85rem; }
.devis-modal input {
    width: 100%; padding: 0.7rem 1rem; border: 2px solid #e8e8e8; border-radius: 10px;
    font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; box-sizing: border-box;
}
.devis-modal input:focus { border-color: var(--turquoise); outline: none; }
.devis-modal input.error { border-color: #e74c3c; }
.devis-modal .error-msg { color: #e74c3c; font-size: 0.78rem; margin-top: 0.2rem; display: none; }
.devis-modal .recap-box { background: var(--gray-light); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.5rem; }
.devis-modal .recap-line { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.2rem 0; color: #666; }
.devis-modal .recap-total { font-weight: 700; color: var(--navy); font-size: 1rem; border-top: 2px solid #ddd; padding-top: 0.5rem; margin-top: 0.5rem; }
.devis-modal .btn-submit {
    width: 100%; padding: 0.9rem; background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: white; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.devis-modal .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18,196,178,0.3); }
.devis-modal .btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.devis-modal .btn-close {
    position: absolute; top: 1rem; right: 1rem; background: var(--gray-light); border: none;
    width: 36px; height: 36px; border-radius: 10px; font-size: 1.2rem; cursor: pointer;
    color: #999; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.devis-modal .btn-close:hover { background: #eee; color: #333; }
.devis-success { text-align: center; padding: 2rem 0; }
.devis-success .check { font-size: 3rem; margin-bottom: 0.5rem; }
.devis-success h3 { color: var(--turquoise) !important; }
.devis-success p { color: #666; margin-top: 0.5rem; font-size: 0.95rem; }
.devis-success .devis-num { font-weight: 700; color: var(--navy); font-size: 1.2rem; margin-top: 1rem; }
.devis-error { text-align: center; padding: 1.5rem 0; }
.devis-error .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.devis-error p { color: #e74c3c; }
.devis-error .btn-retry {
    margin-top: 1rem; padding: 0.6rem 1.5rem; background: var(--turquoise); color: white;
    border: none; border-radius: 8px; cursor: pointer; font-weight: 600; font-family: inherit;
}
.ohnohoney { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }
.loading-spinner {
    display: inline-block; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%; border-top-color: white; animation: spin 0.8s linear infinite;
    vertical-align: middle; margin-right: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */

.legal-page {
    max-width: 900px; margin: 100px auto 2rem; padding: 2rem;
    background: white; border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
}
.legal-page h1 { color: var(--navy); margin-bottom: 1rem; font-size: 2.5rem; }
.legal-page h2 { color: var(--turquoise); margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem; }
.legal-page h3 { color: var(--navy); margin-top: 1.5rem; margin-bottom: 0.8rem; font-size: 1.3rem; }
.legal-page p { margin-bottom: 1rem; line-height: 1.8; color: #666; }
.legal-page ul { margin-left: 2rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.5rem; color: #666; }
.legal-page .back-link { display: inline-block; margin-bottom: 2rem; color: var(--turquoise); text-decoration: none; font-weight: 500; }
.legal-page .back-link:hover { text-decoration: underline; }
.legal-page .info-box { background: var(--gray-light); padding: 1.5rem; border-radius: var(--radius-sm); margin: 1.5rem 0; }
.legal-page .cookie-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.legal-page .cookie-table th,
.legal-page .cookie-table td { border: 1px solid #ecf0f1; padding: 1rem; text-align: left; }
.legal-page .cookie-table th { background: var(--gray-light); color: var(--navy); font-weight: 600; }
.legal-page .cookie-table td { color: #666; }
.legal-page .summary-box { margin-top: 3rem; padding: 1.5rem; background: var(--gray-light); border-radius: var(--radius-sm); }
.legal-page .summary-box h3 { margin-top: 0; }
.legal-page .summary-box p { margin-bottom: 0; }

/* Inline compact row (tout-compris on tarifs page) */
.inline-compact-row {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    align-items: center; font-size: 0.95rem; font-weight: 500; color: var(--navy);
}
.inline-compact-row .separator { color: var(--turquoise); font-weight: 300; }
.inline-compact-row .highlight { color: var(--turquoise); font-weight: 700; }

/* Step number circles (comment ca marche) */
.step-circle {
    background: linear-gradient(135deg, var(--turquoise), var(--green)); color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.5rem; flex-shrink: 0;
}

/* Level steps with colored numbers */
.level-step { display: flex; gap: 1.5rem; }
.level-step .step-num {
    width: 50px; height: 50px; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-weight: 700;
    font-size: 1.5rem; flex-shrink: 0; color: white;
}
.level-step h4 { color: var(--navy); margin-bottom: 0.5rem; }
.level-step p { color: #666; margin: 0; }

/* Section subtitle (centered paragraph below section titles) */
.section-subtitle {
    text-align: center; color: #555; font-size: 1.1rem;
    margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;
}

/* Flex row for CTA button groups */
.hero-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem;
}

/* Inner wrapper for full-width CTA sections */
.cta-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
}
.cta-section h2 { color: white; font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-button--inverse { background: white; color: var(--navy); font-weight: 700; }
.cta-button--inverse:hover { background: var(--gray-light); color: var(--navy); }

/* 3-column features grid variant */
.features-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* Emoji icon for feature cards in engagement/about sections */
.feature-card .feature-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card--centered { text-align: center; }

/* Section with full-width background */
.section-fullwidth {
    background: var(--gray-light);
    padding: 5rem 2rem;
    margin: 0;
    max-width: 100%;
}
.section-fullwidth .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

.contact-hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--dark-turquoise) 100%);
    color: white;
    padding: 7rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18,196,178,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.contact-hero .lead {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, var(--navy), var(--dark-turquoise));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--turquoise-light);
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--turquoise);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    font-weight: 300;
}

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

footer a:hover {
    color: var(--turquoise);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--turquoise-light);
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--turquoise-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--turquoise-light);
}

/* ═══════════════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════════════ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in animation */
.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide up animation (more pronounced) */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.stagger-in > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-in.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-in.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-in.visible > *:nth-child(8) { transition-delay: 0.56s; }

.stagger-in.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════════ */

.about-hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--dark-turquoise) 100%);
    color: var(--white);
    padding: 7rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18,196,178,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-hero .lead {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-box h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.content-box p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-box ul {
    margin-left: 0;
    list-style: none;
}

.content-box li {
    color: #666;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise));
    color: var(--navy);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    font-weight: 500;
}

.architecture-diagram {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.architecture-diagram h4 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.backup-flow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.backup-node {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    position: relative;
    transition: transform var(--transition-smooth);
}

.backup-node:hover {
    transform: translateY(-5px);
}

.backup-node.primary {
    border: 3px solid var(--turquoise);
}

.backup-node.secondary {
    border: 3px solid var(--green);
}

.backup-node .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.backup-node h5 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.backup-node p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.arrow {
    font-size: 2rem;
    color: var(--turquoise);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--navy), var(--dark-turquoise));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 2rem 0;
}

.hidden {
    display: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-badge-france {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-height: 100vh;
        height: auto;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
    }

    .nav-links .cta-button {
        margin-top: 1rem;
        text-align: center;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-overlay.open {
        display: block;
    }

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

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

    .hero-background-image {
        width: 80%;
        opacity: 0.4;
    }

    .cta-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr !important;
    }

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

    .device-item {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .device-item input {
        width: 100%;
    }

    .features-grid,
    .features-grid--3col {
        grid-template-columns: 1fr;
    }

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

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

    .tout-compris-compact .tout-compris-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-row {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

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

    .architecture-diagram {
        padding: 2rem 1rem;
    }

    .backup-flow {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

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

    /* Pricing page */
    .calc-container { grid-template-columns: 1fr; }
    .calc-sidebar { position: static; order: -1; }
    .pricing-hero h1 { font-size: 2rem; }
    .steps-bar { margin: -1rem 1rem 0; }
    .step-item { font-size: 0.78rem; padding: 1rem 0.6rem; }
    .level-step { flex-direction: column; gap: 0.8rem; }
}

@media (max-width: 600px) {
    .device-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .option-row { flex-direction: column; }
    .option-card { min-width: auto; }
    .guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .tout-compris-grid {
        grid-template-columns: 1fr;
    }

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

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

    .features-grid { gap: 1rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */

@media (min-width: 901px) and (max-width: 1024px) {
    .tout-compris-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility: focus styles for keyboard navigation */
.cta-button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--turquoise);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
