/* ═══════════════════════════════════════════
   SO.DI.CE — iOS 26 Design System · Light
   style.css
   ═══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(0, 0, 0, 0.07);
    --glass-blur: blur(30px);
    --accent: #0A84FF;
    --accent-teal: #007AFF;
    --accent-green: #28A745;
    --accent-orange: #FF9500;
    --accent-purple: #8E5CE4;
    --accent-red: #FF3B30;
    --text-dark: #0d0d1a;
    --text-dim: rgba(13, 13, 26, 0.58);
    --text-muted: rgba(13, 13, 26, 0.35);
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-pill: 100px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f0f2f7;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; }
img { display: block; }
button { font-family: inherit; }

/* ─── BACKGROUND ORBS ─── */
.bg-wrap {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.28;
    animation: orbDrift 20s ease-in-out infinite alternate;
}

.bg-orb:nth-child(1) {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #60b3ff, transparent 70%);
    top: -200px; left: -200px;
}
.bg-orb:nth-child(2) {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #c4a0f7, transparent 70%);
    bottom: -100px; right: -140px;
    animation-delay: -8s; animation-duration: 24s;
}
.bg-orb:nth-child(3) {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #6ddba0, transparent 70%);
    top: 45%; left: 38%;
    animation-delay: -14s; animation-duration: 28s;
}
.bg-orb:nth-child(4) {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #ffc46b, transparent 70%);
    top: 60%; left: 8%;
    animation-delay: -5s; animation-duration: 22s;
}

@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(35px, -28px) scale(1.07); }
    100% { transform: translate(-18px, 45px) scale(0.94); }
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #0d0d1a 20%, rgba(10, 132, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-links > li { position: relative; }

.nav-links > li > a {
    text-decoration: none;
    color: rgba(13, 13, 26, 0.55);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    display: block;
    letter-spacing: 0.01em;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: rgba(0, 0, 0, 0.06);
    color: #0d0d1a;
}

.nav-links > li > a.nav-cta {
    background: rgba(10, 132, 255, 0.9);
    color: #fff;
    backdrop-filter: blur(10px);
}

.nav-links > li > a.nav-cta:hover {
    background: #0A84FF;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 8px;
    min-width: 210px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown li { display: block; margin: 0; }

.dropdown li a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(13, 13, 26, 0.6);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown li a:hover {
    background: rgba(10, 132, 255, 0.1);
    color: #0A84FF;
}

/* ─── PARTNERS SECTION ─── */
.partners-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 16px;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    text-align: center;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.partner-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.partner-logo:hover {
    animation: flipOnce 2.30s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes flipOnce {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}


.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.section-label span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ─── GLASS CARD ─── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur) saturate(180%);
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #0A84FF, #5AC8FA);
    border: 1px solid rgba(10, 132, 255, 0.4);
    color: #fff;
    box-shadow: 0 4px 20px rgba(10, 132, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(13, 13, 26, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0d0d1a;
    transform: translateY(-2px);
}

.btn-card {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-card-blue {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.9), rgba(90, 200, 250, 0.75));
    border: 1px solid rgba(10, 132, 255, 0.35);
    color: #fff;
    box-shadow: 0 4px 16px rgba(10, 132, 255, 0.22);
}

.btn-card-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(10, 132, 255, 0.38);
}

.btn-card-ghost {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(13, 13, 26, 0.65);
}

.btn-card-ghost:hover {
    background: rgba(0, 0, 0, 0.09);
    color: #0d0d1a;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    position: relative;
    z-index: 1;
    padding: 140px 24px 56px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(13, 13, 26, 0.75); }

.breadcrumb-sep { color: rgba(13, 13, 26, 0.2); }

.page-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
    background: linear-gradient(140deg, #0d0d1a 30%, rgba(13, 13, 26, 0.45));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
}

/* ─── FILTER TABS ─── */
.filter-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 24px 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.09);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0d0d1a;
}

.tab-btn.active {
    background: rgba(10, 132, 255, 0.12);
    border-color: rgba(10, 132, 255, 0.35);
    color: #0A84FF;
}

/* ─── PRODUCT GRID ─── */
.products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ─── PRODUCT CARD ─── */
.prod-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(24px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.prod-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.prod-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(10, 132, 255, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.prod-img-wrap {
    position: relative;
    padding: 32px 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(240, 245, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prod-img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.14));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-img {
    transform: scale(1.05) translateY(-4px);
}

.prod-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.28);
    border-radius: var(--radius-pill);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #0A84FF;
}

.prod-body {
    padding: 24px;
    flex: 1;
}

.prod-name {
    font-size: 18px;
    font-weight: 700;
    color: #0d0d1a;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.prod-desc {
    font-size: 13.5px;
    color: rgba(13, 13, 26, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.prod-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prod-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    color: rgba(13, 13, 26, 0.55);
}

.prod-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L2.8 5L7 1' stroke='%2328A745' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.prod-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 10px;
}

/* ─── FOOTER ─── */
.site-footer {
    position: relative;
    z-index: 1;
    margin: 0 16px 16px;
    padding: 48px 48px 28px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 28px;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #0d0d1a, rgba(10, 132, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 13, 26, 0.3);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(13, 13, 26, 0.52);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: #0d0d1a; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 13px;
    color: rgba(13, 13, 26, 0.52);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-contact-item a:hover { color: #0d0d1a; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(13, 13, 26, 0.28);
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(13, 13, 26, 0.4);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: rgba(10, 132, 255, 0.12);
    border-color: rgba(10, 132, 255, 0.3);
    color: #0A84FF;
    transform: translateY(-2px);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── INDEX — HERO ─── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('asset/caisse/ecr100.webp');
    background-size: 55%;
    background-position: 90% 60%;
    background-repeat: no-repeat;
    opacity: 0.18;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-bg-image {
        background-size: 90%;
        background-position: 50% 75%;
        opacity: 0.12;
    }
}

/* Partners section */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* espace entre les logos */
    flex-wrap: nowrap; /* empêche le retour à la ligne */
}

.partner-badge img {
    max-height: 60px; /* ajuste la taille */
    width: auto;
    display: block;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 72px;
    padding: 0 32px;
    border-radius: var(--radius-lg, 16px);
    background: rgba(13, 13, 26, 0.03);
    border: 1px solid rgba(13, 13, 26, 0.08);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--text-muted, #6b6b80);
    transition: all 0.25s ease;
}

.partner-badge:hover {
    color: #0d0d1a;
    border-color: rgba(10, 132, 255, 0.3);
    background: rgba(10, 132, 255, 0.06);
}

.hero-inner { max-width: 800px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.28);
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0A84FF;
    margin-bottom: 32px;
}

.hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.75); }
}

.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    background: linear-gradient(160deg, #0d0d1a 0%, rgba(13, 13, 26, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    background: linear-gradient(135deg, #0A84FF, #5AC8FA, #28A745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── INDEX — STATS ─── */
.stats-strip {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 0 24px 80px;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.stat-num {
    font-size: 21px;
    font-weight: 700;
    background: linear-gradient(135deg, #0d0d1a, rgba(10, 132, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12.5px;
    color: rgba(13, 13, 26, 0.45);
    font-weight: 500;
}

/* ─── INDEX — SOLUTIONS SECTION ─── */
.section {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    background: linear-gradient(140deg, #0d0d1a 40%, rgba(13, 13, 26, 0.45));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 52px;
    max-width: 520px;
    line-height: 1.65;
}

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

.sol-card {
    position: relative;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sol-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glow, transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.sol-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.sol-card:hover::after { opacity: 1; }

.sol-card:nth-child(1) { --glow: radial-gradient(circle at 25% 25%, rgba(10,132,255,0.08), transparent 55%); }
.sol-card:nth-child(2) { --glow: radial-gradient(circle at 25% 25%, rgba(40,167,69,0.08), transparent 55%); }
.sol-card:nth-child(3) { --glow: radial-gradient(circle at 25% 25%, rgba(255,149,0,0.08), transparent 55%); }
.sol-card:nth-child(4) { --glow: radial-gradient(circle at 25% 25%, rgba(142,92,228,0.08), transparent 55%); }
.sol-card:nth-child(5) { --glow: radial-gradient(circle at 25% 25%, rgba(255,59,48,0.08), transparent 55%); }

.sol-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.sol-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sol-card:nth-child(1) .sol-icon { background: rgba(10,132,255,0.1); border: 1px solid rgba(10,132,255,0.22); }
.sol-card:nth-child(2) .sol-icon { background: rgba(40,167,69,0.1); border: 1px solid rgba(40,167,69,0.22); }
.sol-card:nth-child(3) .sol-icon { background: rgba(255,149,0,0.1); border: 1px solid rgba(255,149,0,0.22); }
.sol-card:nth-child(4) .sol-icon { background: rgba(142,92,228,0.1); border: 1px solid rgba(142,92,228,0.22); }
.sol-card:nth-child(5) .sol-icon { background: rgba(255,59,48,0.1); border: 1px solid rgba(255,59,48,0.22); }

.sol-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0d0d1a;
    margin-bottom: 9px;
    letter-spacing: -0.01em;
}

.sol-card p {
    font-size: 13.5px;
    color: rgba(13, 13, 26, 0.47);
    line-height: 1.65;
    margin-bottom: 18px;
}

.sol-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(13, 13, 26, 0.4);
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.sol-card:hover .sol-link { color: #0A84FF; gap: 10px; }

/* ─── INDEX — FEATURE BAND ─── */
.feature-band {
    position: relative;
    z-index: 1;
    margin: 0 auto 80px;
    max-width: 1200px;
    padding: 0 24px;
}

.feature-band-inner {
    padding: 52px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 30px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.feature-band-text h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    background: linear-gradient(140deg, #0d0d1a, rgba(13, 13, 26, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-band-text > p {
    font-size: 14.5px;
    color: rgba(13, 13, 26, 0.48);
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list { display: flex; flex-direction: column; gap: 11px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    color: rgba(13, 13, 26, 0.65);
}

.feature-item::before {
    content: '';
    width: 20px; height: 20px;
    flex-shrink: 0;
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2328A745' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.feature-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.mini-card-icon { font-size: 22px; margin-bottom: 10px; }

.mini-card-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(13, 13, 26, 0.82);
    margin-bottom: 4px;
}

.mini-card-sub {
    font-size: 11px;
    color: rgba(13, 13, 26, 0.38);
    line-height: 1.4;
}

/* ─── INDEX — CONTACT STRIP ─── */
.contact-strip {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 0 24px 80px;
    flex-wrap: wrap;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.contact-chip:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border-color: rgba(10, 132, 255, 0.22);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.contact-chip-icon {
    width: 38px; height: 38px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.contact-chip-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(13, 13, 26, 0.88);
}

.contact-chip-text span {
    font-size: 11.5px;
    color: rgba(13, 13, 26, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .feature-band-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { top: 8px; width: calc(100% - 24px); padding: 10px 16px; }
    .nav-links { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .site-footer { margin: 0 8px 8px; padding: 32px 24px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    .stats-strip { gap: 10px; }
    .contact-strip { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero h1 { letter-spacing: -0.025em; }
    .hero-actions { flex-direction: column; align-items: center; }
    .feature-band-inner { padding: 28px 20px; }
}

/* ─── AVIS GRID ─── */
.avis-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.avis-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(24px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.avis-card.visible { opacity: 1; transform: translateY(0); }

.avis-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(10,132,255,0.1);
    background: rgba(255,255,255,0.85);
}

.avis-stars { display: flex; gap: 4px; }
.star { font-size: 15px; color: var(--accent-orange); }
.star.empty { color: rgba(13, 13, 26, 0.15); }

.avis-text {
    font-size: 14px;
    color: rgba(13, 13, 26, 0.6);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
    position: relative;
    padding-left: 18px;
}

.avis-text::before {
    content: '"';
    position: absolute;
    left: 0; top: -4px;
    font-size: 32px; line-height: 1;
    color: rgba(10,132,255,0.25);
    font-style: normal;
}

.avis-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.avis-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(10,132,255,0.1);
    border: 1px solid rgba(10,132,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    color: #0A84FF;
    flex-shrink: 0;
}

.avis-author strong { display: block; font-size: 13.5px; font-weight: 700; color: rgba(13,13,26,0.85); }
.avis-author span { font-size: 11.5px; color: rgba(13,13,26,0.35); }
.avis-date { font-size: 11px; color: rgba(13,13,26,0.25); margin-left: auto; white-space: nowrap; }

.avis-empty {
    position: relative; z-index: 1;
    text-align: center; padding: 60px 24px;
    color: rgba(13,13,26,0.3); font-size: 15px;
    max-width: 1200px; margin: 0 auto;
}

.avis-empty .empty-icon { font-size: 40px; margin-bottom: 16px; display: block; }

.avis-summary {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px 52px;
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

/* ─── FORM ─── */
.form-section {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto 80px;
    padding: 0 24px;
}

.form-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.form-title { font-size: 22px; font-weight: 800; color: #0d0d1a; margin-bottom: 6px; letter-spacing: -0.02em; }
.form-subtitle { font-size: 13.5px; color: rgba(13,13,26,0.42); margin-bottom: 28px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.form-group label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(13,13,26,0.4);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px; font-family: inherit; color: #0d0d1a;
    outline: none; transition: all 0.25s ease; resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(13,13,26,0.25); }

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(10,132,255,0.45);
    background: rgba(10,132,255,0.04);
    box-shadow: 0 0 0 3px rgba(10,132,255,0.1);
}

/* Star rating */
.star-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { display: none; }
.star-input label {
    font-size: 28px; color: rgba(13,13,26,0.12);
    cursor: pointer; transition: color 0.15s, transform 0.15s;
    text-transform: none; letter-spacing: 0;
}
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--accent-orange); }
.star-input label:hover { transform: scale(1.2); }

.moderation-notice {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 16px;
    background: rgba(255,149,0,0.06);
    border: 1px solid rgba(255,149,0,0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 12.5px; color: rgba(13,13,26,0.5); line-height: 1.5;
}

.moderation-notice span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.field-error {
    font-size: 12.5px; color: var(--accent-red);
    padding: 8px 12px;
    background: rgba(255,59,48,0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,59,48,0.18);
}

.form-success { display: none; text-align: center; padding: 32px; }
.form-success .success-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--accent-green); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(13,13,26,0.45); line-height: 1.6; }

/* ─── ADMIN ─── */
.admin-trigger { position: relative; z-index: 1; text-align: center; padding: 0 24px 32px; }
.admin-trigger button {
    background: none; border: none;
    color: rgba(13,13,26,0.15); font-size: 11px;
    cursor: pointer; font-family: inherit;
    letter-spacing: 0.05em; transition: color 0.2s;
}
.admin-trigger button:hover { color: rgba(13,13,26,0.4); }

.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center; justify-content: center;
    padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-xl);
    padding: 36px; width: 100%;
    max-width: 700px; max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.modal-header h2 { font-size: 20px; font-weight: 800; color: #0d0d1a; }

.modal-close {
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 50%; color: rgba(13,13,26,0.5);
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-family: inherit;
}
.modal-close:hover { background: rgba(255,59,48,0.1); color: var(--accent-red); border-color: rgba(255,59,48,0.3); }

.admin-login { display: flex; flex-direction: column; gap: 14px; }
.admin-login input {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px; font-size: 14px;
    font-family: inherit; color: #0d0d1a; outline: none;
    transition: border-color 0.2s;
}
.admin-login input:focus { border-color: rgba(10,132,255,0.45); }

.login-error {
    font-size: 12.5px; color: var(--accent-red);
    padding: 8px 12px;
    background: rgba(255,59,48,0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,59,48,0.18);
    display: none;
}

.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.admin-tab {
    padding: 7px 18px; border-radius: var(--radius-pill);
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.09);
    color: rgba(13,13,26,0.45);
    font-size: 12.5px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.admin-tab.active { background: rgba(10,132,255,0.12); border-color: rgba(10,132,255,0.32); color: #0A84FF; }

.badge-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 18px; height: 18px;
    background: var(--accent-red);
    border-radius: 100px; font-size: 10px; font-weight: 700;
    color: #fff; padding: 0 5px; margin-left: 6px;
}

.admin-section-title {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(13,13,26,0.3); margin-bottom: 14px;
}

.pending-card {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-lg);
    padding: 18px; margin-bottom: 12px;
}

.pending-card-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 12px; margin-bottom: 10px;
}

.pending-meta strong { display: block; font-size: 13.5px; font-weight: 700; color: rgba(13,13,26,0.85); }
.pending-meta span { font-size: 11.5px; color: rgba(13,13,26,0.35); }
.pending-stars { display: flex; gap: 3px; }
.pending-stars .star { font-size: 13px; }

.pending-text { font-size: 13px; color: rgba(13,13,26,0.5); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.pending-actions { display: flex; gap: 8px; }

.btn-approve {
    padding: 8px 18px;
    background: rgba(40,167,69,0.1); border: 1px solid rgba(40,167,69,0.28);
    border-radius: var(--radius-pill); color: var(--accent-green);
    font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-approve:hover { background: rgba(40,167,69,0.18); }

.btn-reject {
    padding: 8px 18px;
    background: rgba(255,59,48,0.07); border: 1px solid rgba(255,59,48,0.22);
    border-radius: var(--radius-pill); color: var(--accent-red);
    font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-reject:hover { background: rgba(255,59,48,0.14); }

.admin-empty { text-align: center; padding: 32px; color: rgba(13,13,26,0.28); font-size: 14px; }

/* modal login text color fix */
#adminLogin p { color: rgba(13,13,26,0.45) !important; }

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
    .modal { padding: 24px 20px; }
}
/* ─── BURGER MENU MOBILE ─── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.2s;
    z-index: 1100;
    flex-shrink: 0;
}
.burger:hover { background: rgba(0,0,0,0.06); }
.burger span {
    display: block;
    width: 22px; height: 2px;
    background: #0d0d1a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 90px 20px 28px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.mobile-menu a {
    text-decoration: none;
    color: rgba(13,13,26,0.7);
    font-size: 15px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    display: block;
}
.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(10,132,255,0.08);
    color: #0A84FF;
}
.mobile-menu .mobile-section-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(13,13,26,0.28);
    padding: 12px 16px 4px;
}
.mobile-menu .mobile-cta {
    background: #0A84FF;
    color: #fff !important;
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius-pill) !important;
}
.mobile-menu .mobile-cta:hover { background: #0070e0 !important; color: #fff !important; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .mobile-menu.open { display: flex; }
    body.menu-open { overflow: hidden; }
}

/* ─── UTILITIES & ACCESSIBILITÉ ─── */
:focus-visible {
    outline: 2px solid #0A84FF;
    outline-offset: 2px;
}
.prod-desc  { color: rgba(13,13,26,0.52) !important; }
.footer-col ul li a { color: rgba(13,13,26,0.58) !important; }
.nav-links > li > a { color: rgba(13,13,26,0.62) !important; }

/* ─── 404 PAGE ─── */
.error-page {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.error-inner { max-width: 520px; }
.error-code {
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 800; letter-spacing: -0.04em; line-height: 1;
    background: linear-gradient(135deg, #0A84FF, #5AC8FA);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px;
}
.error-title {
    font-size: clamp(22px, 4vw, 32px); font-weight: 800;
    letter-spacing: -0.02em; color: #0d0d1a; margin-bottom: 14px;
}
.error-desc {
    font-size: 15px; color: rgba(13,13,26,0.52);
    line-height: 1.65; margin-bottom: 40px;
}
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ═══════════════════════════════════════════
   RESPONSIVE ADDITIONS & SERVICE LAYOUT
   ═══════════════════════════════════════════ */

/* ─── SERVICE LAYOUT (cb.html, maintenance2.html) ─── */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.service-main { min-width: 0; }

.service-section-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0d0d1a;
    margin: 36px 0 14px;
}
.service-main > h2.service-section-title:first-child { margin-top: 0; }

.service-text {
    font-size: 14.5px;
    color: rgba(13,13,26,0.52);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.service-feature-card {
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 22px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    border-color: rgba(10,132,255,0.2);
}

.service-feature-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-feature-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0d0d1a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.service-feature-card p {
    font-size: 13px;
    color: rgba(13,13,26,0.48);
    line-height: 1.55;
    margin: 0;
}

/* Service steps */
.service-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.service-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.service-step-num {
    width: 32px; height: 32px;
    flex-shrink: 0;
    background: rgba(10,132,255,0.1);
    border: 1px solid rgba(10,132,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #0A84FF;
}

.service-step strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0d0d1a;
    margin-bottom: 4px;
}

.service-step p {
    font-size: 13px;
    color: rgba(13,13,26,0.48);
    line-height: 1.55;
    margin: 0;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07),
                inset 0 1px 0 rgba(255,255,255,0.9);
}

.sidebar-card-light {
    background: rgba(248,250,255,0.8);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0d0d1a;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 13px;
    color: rgba(13,13,26,0.48);
    line-height: 1.55;
    margin-bottom: 16px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(13,13,26,0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.sidebar-list li a::before {
    content: '→';
    color: #0A84FF;
    font-size: 12px;
}

.sidebar-list li a:hover { color: #0A84FF; }

/* ─── RESPONSIVE GLOBAL IMPROVEMENTS ─── */

/* nav-logo image size */
.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

/* Stat pill wrapping fix on small screens */
.stat-pill {
    flex: 0 1 auto;
}

/* ─── BREAKPOINT: 1024px ─── */
@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }
    .service-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── BREAKPOINT: 860px ─── */
@media (max-width: 860px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}

/* ─── BREAKPOINT: 768px (mobile) ─── */
@media (max-width: 768px) {
    /* Padding reduction on sections */
    .section {
        padding: 52px 20px;
    }
    .products-grid {
        padding: 0 16px 60px;
    }
    .stats-strip {
        padding: 0 16px 60px;
    }
    .contact-strip {
        padding: 0 16px 60px;
    }
    .avis-grid {
        padding: 0 16px 60px;
        grid-template-columns: 1fr;
    }
    .feature-band {
        margin: 0 auto 60px;
        padding: 0 16px;
    }
    .feature-band-inner {
        padding: 28px 20px;
    }
    .feature-visual {
        grid-template-columns: 1fr 1fr;
    }
    .service-layout {
        padding: 0 16px 60px;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    /* Page hero */
    .page-hero {
        padding: 100px 20px 48px;
    }
    /* Partner logos */
    .partners-row {
        gap: 10px;
    }
    .partner-badge {
        min-width: 120px;
        padding: 0 20px;
        height: 60px;
        font-size: 15px;
    }
    /* Footer padding */
    .site-footer {
        margin: 0 8px 8px;
        padding: 28px 20px 20px;
    }
    /* Solutions grid */
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    /* Form section */
    .form-section {
        padding: 0 16px;
        margin-bottom: 60px;
    }
}

/* ─── BREAKPOINT: 480px (small mobile) ─── */
@media (max-width: 480px) {
    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        padding: 10px 14px;
    }
    .nav-logo img {
        height: 30px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        text-align: center;
    }
    /* Stats */
    .stat-pill {
        width: 100%;
        justify-content: center;
    }
    /* Feature band */
    .feature-visual {
        grid-template-columns: 1fr;
    }
    /* Service layout */
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    .service-step {
        flex-direction: row;
    }
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    /* Contact strip */
    .contact-chip {
        width: 100%;
        justify-content: center;
    }
    /* Page sections */
    .section {
        padding: 40px 16px;
    }
    /* Products grid min-width fix */
    .products-grid {
        grid-template-columns: 1fr;
    }
    /* Avis summary */
    .avis-summary {
        padding: 0 16px 40px;
        flex-direction: column;
    }
    /* Sidebar cards on small mobile */
    .sidebar-card {
        padding: 18px 16px;
    }
}

/* ─── DROPDOWN IMPROVEMENTS ─── */
@media (max-width: 768px) {
    .dropdown { display: none !important; }
}

/* ─── TOUCH / HOVER IMPROVEMENTS ─── */
@media (hover: none) {
    .prod-card:hover,
    .sol-card:hover,
    .avis-card:hover,
    .hero-tile:hover,
    .mini-card:hover {
        transform: none;
    }
}
