/* ===== IO Technology - Design system ===== */
:root {
    --bg-dark: #0a0c10;
    --bg-dark-2: #04060a;
    --bg-card: rgba(19, 22, 27, 0.72);
    --bg-card-hover: rgba(26, 30, 38, 0.9);
    --accent: #00c6fb;
    --accent-2: #4de8ff;
    --accent-3: #2dd4bf;
    --accent-dim: rgba(0, 198, 251, 0.15);
    --accent-glow: rgba(0, 198, 251, 0.4);
    --text: #e8eaed;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 14px;
    --radius-lg: 24px;
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

main,
.footer {
    position: relative;
    z-index: 1;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-accent {
    color: var(--accent);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    transition: color var(--transition);
}

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

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #00a8d4);
    color: #0a0c10;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b4e6, var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow), 0 0 0 1px rgba(0, 198, 251, 0.2);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 198, 251, 0.5);
}

.btn-outline:hover {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(0, 198, 251, 0.15);
}

.btn-nav {
    margin-left: 0.5rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--accent);
    border-color: rgba(0, 198, 251, 0.3);
    background: rgba(0, 198, 251, 0.05);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.4rem;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-opt {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
}

/* Nav Dropdown Products */
.nav-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    background: none;
    border: none;
}

.dropdown-trigger svg {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-dropdown-wrap:hover .dropdown-trigger svg {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.item-icon {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.item-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.dropdown-item:hover .item-title {
    color: var(--accent);
}

.lang-opt:hover {
    background: var(--accent-dim);
    color: var(--accent);
}

.lang-opt.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(0, 198, 251, 0.06);
    border: 1px solid rgba(0, 198, 251, 0.35);
    border-radius: 100px;
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: var(--transition);
}

.hero-badge:hover {
    border-color: var(--accent);
    box-shadow: 0 0 32px rgba(0, 198, 251, 0.15);
}

.hero-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-title .accent {
    color: var(--accent);
    background: linear-gradient(135deg, #00c6fb, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero-cta .btn {
    padding: 0.85rem 1.5rem;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbits {
    position: absolute;
    inset: 50%;
    width: min(90%, 420px);
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(77, 232, 255, 0.2);
    border-radius: 50%;
}

.ring-a {
    animation: spin 18s linear infinite;
}

.ring-b {
    inset: 14%;
    border-color: rgba(45, 212, 191, 0.3);
    animation: spinReverse 14s linear infinite;
}

.network-globe {
    width: 100%;
    max-width: 420px;
    height: 420px;
    position: relative;
    filter: drop-shadow(0 0 40px rgba(0, 198, 251, 0.12));
    animation: globePulse 6s ease-in-out infinite;
}

@keyframes globePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(0, 198, 251, 0.1));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(0, 198, 251, 0.18));
    }
}

.hero-tags {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d6fbff;
    border-radius: 100px;
    border: 1px solid rgba(77, 232, 255, 0.35);
    background: rgba(2, 20, 27, 0.6);
    backdrop-filter: blur(6px);
    animation: tagFloat 6s ease-in-out infinite;
}

.tag-a {
    top: 20%;
    left: 4%;
}

.tag-b {
    top: 72%;
    right: 0;
    animation-delay: -2s;
}

.tag-c {
    top: 5%;
    right: 12%;
    animation-delay: -4s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.99);
    }

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

/* ===== Infrastructure Telemetry - sobre, moderne, design ===== */
.section-telemetry {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.container--narrow {
    max-width: 520px;
    margin: 0 auto;
}

.telemetry-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.telemetry-panel {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(12, 14, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.telemetry-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255, 159, 67, 0.9);
    margin-bottom: 1.25rem;
}

.telemetry-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 159, 67, 0.9);
    flex-shrink: 0;
}

.telemetry-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 2rem;
}

.telemetry-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.telemetry-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.telemetry-metric-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.telemetry-metric-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: var(--text);
}

.telemetry-metric-value--alert {
    color: rgba(255, 107, 107, 0.95);
}

.telemetry-metric-line {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
}

.telemetry-metric-value--alert + .telemetry-metric-line {
    background: rgba(255, 107, 107, 0.35);
}

@media (max-width: 600px) {
    .telemetry-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .telemetry-panel {
        padding: 1.75rem 1.5rem;
    }
}

/* ===== Product Live Dashboards ===== */
.section-live {
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

/* Même largeur que le hero (1200px) — spécificité renforcée pour ne pas être écrasé par .section .container */
.section.section-live .container {
    max-width: 1200px;
}

.live-header-row {
    margin-bottom: 2.5rem;
}

.live-header-row .live-intro {
    max-width: 640px;
}

.live-header-row .section-subtitle {
    margin-bottom: 0;
}

.product-dashboards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

/* Individual product dashboard card - sobre, design */
.pdash {
    background: rgba(12, 14, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.pdash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-radius: 14px 14px 0 0;
    opacity: 0.5;
    transition: opacity var(--transition);
    z-index: 10;
}

.pdash:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.pdash:hover::before {
    opacity: 0.85;
}

/* Accent discret par produit */
.pdash-nexus::before {
    background: rgba(255, 159, 67, 0.5);
}

.pdash-kittysploit::before {
    background: rgba(179, 136, 255, 0.5);
}

.pdash-antibots::before {
    background: rgba(179, 136, 255, 0.5);
}

.pdash-zerovector::before {
    background: rgba(54, 255, 201, 0.5);
}

/* Header */
.pdash-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 1.25rem 1.25rem 0;
}

.pdash-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pdash-icon-nexus {
    color: #ffb347;
    background: rgba(255, 179, 71, 0.1);
}

/* Image icons styling */
.pdash-img-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

.nav-dropdown-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.pdash-icon-kittysploit {
    color: #b388ff;
    background: rgba(179, 136, 255, 0.1);
}

.pdash-icon-antibots {
    color: #b388ff;
    background: rgba(179, 136, 255, 0.1);
}

.pdash-icon-zerovector {
    color: #36ffc9;
    background: rgba(54, 255, 201, 0.1);
}

.pdash-icon-zerovector .pdash-img-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.pdash-title-group {
    display: contents;
}

.pdash-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.pdash-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    order: 4;
    flex-basis: 100%;
    margin-top: 0.2rem;
}

.pdash-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    flex-shrink: 0;
}

.pdash-status-on {
    color: #36ffc9;
    background: rgba(54, 255, 201, 0.08);
    border: 1px solid rgba(54, 255, 201, 0.2);
}

.pdash-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #36ffc9;
    box-shadow: 0 0 8px rgba(54, 255, 201, 0.7);
    animation: pulseDot 1.8s ease-in-out infinite;
}

/* Metrics row */
.pdash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1rem 1.25rem;
}

.pdash-metric {
    display: flex;
    flex-direction: column;
}

.pdash-metric:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 1rem;
}

.pdash-metric:last-child {
    padding-left: 1rem;
}

.pdash-metric-val {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.pdash-val-green {
    color: #36ffc9;
}

.pdash-val-purple {
    color: #b388ff;
}

.pdash-val-amber {
    color: #ffb347;
}

.pdash-val-red {
    color: #ff6b6b;
}

.pdash-val-cyan {
    color: var(--accent);
}

.pdash-metric-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

/* Sparkline */
.pdash-sparkline-wrap {
    padding: 0 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    height: 50px;
}

.pdash-sparkline {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
}

.pdash-spark-label {
    position: absolute;
    top: -4px;
    right: 1.25rem;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.6;
}

/* Severity bar (Kittysploit) */
.pdash-severity-bar {
    padding: 0 1.25rem;
    margin-bottom: 0.75rem;
}

.pdash-sev-label {
    display: block;
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.pdash-sev-track {
    display: flex;
    gap: 3px;
    height: 22px;
    border-radius: 6px;
    overflow: hidden;
}

.pdash-sev-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    min-width: 20px;
    transition: transform var(--transition), filter var(--transition);
}

.pdash-sev-seg:hover {
    transform: scaleY(1.15);
    filter: brightness(1.2);
}

.sev-crit {
    background: #ff4757;
}

.sev-high {
    background: #ff6b6b;
}

.sev-med {
    background: #ffb347;
}

.sev-low {
    background: #36ffc9;
}

/* Activity feed */
.pdash-feed {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.6rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-height: 80px;
    margin-top: auto;
}

.pdash-feed-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    animation: pdashFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pdash-feed-item .feed-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pdash-feed-item .feed-dot.dot-green {
    background: #36ffc9;
    box-shadow: 0 0 5px rgba(54, 255, 201, 0.5);
}

.pdash-feed-item .feed-dot.dot-purple {
    background: #b388ff;
    box-shadow: 0 0 5px rgba(179, 136, 255, 0.5);
}

.pdash-feed-item .feed-dot.dot-amber {
    background: #ffb347;
    box-shadow: 0 0 5px rgba(255, 179, 71, 0.5);
}

.pdash-feed-item .feed-dot.dot-red {
    background: #ff6b6b;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.pdash-feed-item .feed-dot.dot-cyan {
    background: var(--accent);
    box-shadow: 0 0 5px rgba(0, 198, 251, 0.5);
}

.pdash-feed-item .feed-time {
    color: rgba(255, 255, 255, 0.22);
    font-variant-numeric: tabular-nums;
    font-size: 0.63rem;
    flex-shrink: 0;
}

.pdash-feed-item .feed-msg {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pdashFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.7);
        opacity: 0.5;
    }
}

@media (max-width: 1024px) {
    .product-dashboards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ===== Sections common ===== */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title .accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 560px;
}

.section-services .section-subtitle,
.section-method .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-services .section-label,
.section-services .section-title,
.section-method .section-label,
.section-method .section-title {
    text-align: center;
}

.section-method .section-subtitle {
    margin-bottom: 3.5rem;
}

/* ===== Products / Services grid ===== */
/* Même largeur que le hero pour la section produits (4 cartes) */
.section.section-services .container {
    max-width: 1200px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.7s ease;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 198, 251, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 198, 251, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    left: 100%;
}

.products-grid .product-card:nth-child(1) {
    transition-delay: 0s;
}

.products-grid .product-card:nth-child(2) {
    transition-delay: 0.05s;
}

.products-grid .product-card:nth-child(3) {
    transition-delay: 0.1s;
}

.products-grid .product-card:nth-child(4) {
    transition-delay: 0.15s;
}

.product-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

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

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.product-card:hover .product-link {
    transform: translateX(4px);
}

/* ===== Timeline / Method (fin et propre) ===== */
.section-method .container {
    max-width: 1000px;
}

.section-method .section-subtitle {
    margin-bottom: 4rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.65;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent);
    transform: translateX(-50%);
    opacity: 0.7;
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 3rem);
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 3rem);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1.75rem;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--bg-dark), 0 0 16px rgba(0, 198, 251, 0.5);
    z-index: 1;
}

.timeline-card {
    width: 100%;
    max-width: 460px;
    padding: 1.5rem 1.75rem;
    background: rgba(22, 25, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-card:hover {
    border-color: rgba(0, 198, 251, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.95;
    background: rgba(0, 198, 251, 0.05);
    padding: 10px;
    border-radius: 12px;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.75;
}

.timeline-content {
    flex: 1;
}

.timeline-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.timeline-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Apparition plus fine pour les étapes */
.timeline-item.animate-on-scroll {
    transform: translateY(14px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item.animate-on-scroll.visible {
    transform: translateY(0);
}

.timeline-item.animate-on-scroll[data-delay="100"] {
    transition-delay: 0.08s;
}

.timeline-item.animate-on-scroll[data-delay="200"] {
    transition-delay: 0.16s;
}

.timeline-item.animate-on-scroll[data-delay="300"] {
    transition-delay: 0.24s;
}

/* ===== Why us ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat {
    padding: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition-slow);
}

.stat:hover {
    border-color: rgba(0, 198, 251, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.why-content .section-title {
    margin-bottom: 1rem;
}

.why-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 480px;
}

.certification {
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    display: inline-block;
}

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

.feature-card {
    padding: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition-slow);
}

.feature-card:hover {
    border-color: rgba(0, 198, 251, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

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

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ===== CTA ===== */
.section-cta {
    padding: 5rem 2rem;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 198, 251, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 198, 251, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at 50% 50%, rgba(0, 198, 251, 0.06), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.cta-card:hover::before {
    opacity: 1;
}

@keyframes ctaBorderGlow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(0, 198, 251, 0.08);
    }

    50% {
        box-shadow: 0 0 80px rgba(0, 198, 251, 0.14);
    }
}

.cta-card:hover {
    border-color: rgba(0, 198, 251, 0.4);
    box-shadow: 0 0 100px rgba(0, 198, 251, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: ctaBorderGlow 4s ease-in-out infinite;
}

.cta-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.cta-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-title .accent {
    color: var(--accent);
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cta-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.cta-contact a:hover {
    color: var(--accent);
}

.cta-contact svg {
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-logo .logo-img {
    height: 32px;
}

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

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

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Scroll animations (épurées, dynamiques) ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-on-scroll[data-delay="0"] {
    transition-delay: 0s;
}

.animate-on-scroll[data-delay="100"] {
    transition-delay: 0.08s;
}

.animate-on-scroll[data-delay="200"] {
    transition-delay: 0.16s;
}

.animate-on-scroll[data-delay="300"] {
    transition-delay: 0.24s;
}

.animate-on-scroll[data-delay="400"] {
    transition-delay: 0.32s;
}

.animate-on-scroll[data-delay="500"] {
    transition-delay: 0.4s;
}

/* Apparition type "reveal" pour titres de section */
.animate-on-scroll.reveal {
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.reveal.visible {
    transform: translateY(0);
}

/* Cartes : apparition légèrement décalée et fluide */
.products-grid .animate-on-scroll,
.features-grid .animate-on-scroll {
    transform: translateY(24px) scale(0.99);
}

.products-grid .animate-on-scroll.visible,
.features-grid .animate-on-scroll.visible {
    transform: translateY(0) scale(1);
}

@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;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        min-height: 320px;
    }

    .live-flow-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .flow-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
    }

    .flow-center {
        min-height: 200px;
        padding: 2rem 0;
    }

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

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

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

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

    .timeline-line {
        left: 1.5rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 3rem;
        padding-right: 0;
    }

    .timeline-item::before {
        left: 1.5rem;
        margin-left: -5px;
    }

    .timeline-card {
        max-width: 100%;
    }

    @media (max-width: 500px) {
        .timeline-card {
            flex-direction: column;
            gap: 1rem;
        }
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(12, 14, 18, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
    }

    .header.nav-open .nav {
        display: flex;
    }

    .btn-nav {
        margin-left: 0;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-orbits {
        width: 100%;
    }

    /* Tags autour du globe comme sur desktop, positions adaptées au petit écran */
    .hero-tags {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .hero-tag {
        position: absolute;
        font-size: 0.6rem;
        padding: 0.28rem 0.55rem;
    }

    .hero-tag.tag-a {
        top: 12%;
        left: 0;
        right: auto;
    }

    .hero-tag.tag-b {
        top: auto;
        bottom: 18%;
        right: 0;
        left: auto;
    }

    .hero-tag.tag-c {
        top: 8%;
        right: 0;
        left: auto;
    }

    .section {
        padding: 3.5rem 1.25rem;
    }

    .live-kpi-bar {
        grid-template-columns: 1fr 1fr;
    }

    .live-kpi {
        padding: 0.85rem 0.5rem;
    }

    .live-kpi-value {
        font-size: 1.2rem;
    }

    .live-threat-log {
        padding: 0.85rem 1rem;
    }

    .flow-node-label {
        font-size: 0.75rem;
    }

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

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

    .cta-card {
        padding: 2rem 1.5rem;
    }

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