:root {
    /* Palette Kiwikard inspirée du site officiel (vert vif + dégradé) */
    --brand-green-light: #8bc53f;
    --brand-green-dark: #4d7c1b;

    /* Alias pour compatibilité avec l’ancien code */
    --brand-green: var(--brand-green-light);
    --brand-blue-soft: #e5f4ff;

    /* Accent secondaire (CTA principal) */
    --brand-purple: #aa5bf3;
    --brand-purple-hover: #954de0;

    --bg: #f5f7fb;
    --bg-alt: #ffffff;
    --card-bg: #ffffff;

    --accent: var(--brand-green);
    --accent-soft: rgba(139, 197, 63, 0.12);

    --text: #111827;
    --text-muted: #6b7280;

    --border: #e5e7eb;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.1);
    --transition: 0.25s ease;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;

    /* Hauteur approximative du header sticky (utilisée pour centrer le hero) */
    --header-height: 4.5rem;
}

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

html, body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, #e5f0ff 0, #f5f7fb 55%, #eef2ff 100%);
    color: var(--text);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--alt-light {
    background: #ffffff;
}

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

.section__subtitle {
    color: var(--text-muted);
    max-width: 640px;
}

/* Header en mode verre sur le hero vert (style kiwikard.com) */

.header--light {
    position: sticky;
    top: 0;
    z-index: 20;
    /* Même dégradé que le hero, pour une barre de menu parfaitement intégrée */
    background: linear-gradient(
        135deg,
        var(--brand-green-light) 0%,
        var(--brand-green-dark) 65%
    );
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo__img--light {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav__link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #8bc53f, #5d8f26);
    transition: width var(--transition);
}

.nav__link:hover {
    color: #ffffff;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--primary {
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Toggle menu mobile */

.nav-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: transparent; /* burger blanc flottant comme sur le site officiel */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    position: relative;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    top: 13px;
}

.nav-toggle span:nth-child(2) {
    top: 19px;
}

.nav-toggle span:nth-child(3) {
    top: 25px;
}

.header--light.is-open .nav-toggle span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.header--light.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header--light.is-open .nav-toggle span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Hero clair + hero produit */

.hero--light {
    position: relative;
    display: flex;
    align-items: center;    /* centre verticalement le contenu dans le hero */
    min-height: 100vh;      /* le hero occupe au minimum toute la hauteur de la fenêtre */
    /* padding symétrique pour que le contenu soit réellement centré visuellement */
    padding-top: 5.5rem;    /* marge suffisante sous le header sticky */
    padding-bottom: 5.5rem;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr); /* ~40% texte / 60% zone visuelle sur desktop */
    gap: 3rem;
    align-items: center;
}

/* HERO BACKGROUND : Rotating globe + networking sparks */

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    /* Fond hero en mode clair : base très lumineuse avec accents verts/bleus Kiwikard */
    background:
        radial-gradient(circle at 0% 0%, rgba(139, 197, 63, 0.25), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.18), transparent 55%),
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 65%, #e5f4ff 100%);
}

.hero-bg__globe {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9; /* un peu plus présent, mais reste sous le contenu */
    pointer-events: none;
}

.hero-bg__globe canvas {
    max-width: 420px;
    max-height: 420px;
}

.hero--product .hero__content h1 {
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #111827;
}

.hero__subtitle {
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 1.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

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

/* Globe CSS (compat WebGL off) */

.hero-globe-css {
    position: relative;
    width: min(380px, 70vw);
    height: min(380px, 70vw);
    border-radius: 50%;
    overflow: visible;
    transform-origin: center;
    animation: heroGlobeSpin 36s linear infinite;
}

.hero-globe__core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.45), transparent 70%),
        /* océans verts profonds */
        linear-gradient(135deg, #0b3b16, #14532d);
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(15, 118, 110, 0.35);
}

/* Lignes latitude / longitude */
.hero-globe__core::before,
.hero-globe__core::after {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 -40px 0 0 rgba(255, 255, 255, 0.04),
        0 40px 0 0 rgba(255, 255, 255, 0.04);
}

.hero-globe__core::after {
    transform: rotate(90deg);
}

/* Arcs de connexion autour du globe */

.hero-globe__arc {
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    border: 1px solid transparent;
    pointer-events: none;
}

.hero-globe__arc--1 {
    border-top-color: rgba(170, 91, 243, 0.85);
    transform: rotate(-18deg);
    box-shadow: 0 -10px 25px rgba(170, 91, 243, 0.6);
}

.hero-globe__arc--2 {
    border-right-color: rgba(139, 197, 63, 0.9);
    transform: rotate(42deg);
    box-shadow: 12px 0 24px rgba(139, 197, 63, 0.5);
}

.hero-globe__arc--3 {
    border-left-color: rgba(56, 189, 248, 0.9);
    transform: rotate(-62deg);
    box-shadow: -12px 0 24px rgba(56, 189, 248, 0.5);
}

/* Étincelles qui tournent autour de l'orbite (simule les flux) */

.hero-globe__spark {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #fefce8 0, #facc15 45%, transparent 70%);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.9);
    transform-origin: 50% calc(50% + 140px);
}

.hero-globe__spark--1 {
    left: 50%;
    top: 50%;
    animation: heroGlobeSparkOrbit1 9s linear infinite;
}

.hero-globe__spark--2 {
    left: 50%;
    top: 50%;
    animation: heroGlobeSparkOrbit2 13s linear infinite;
}

.hero-globe__spark--3 {
    left: 50%;
    top: 50%;
    animation: heroGlobeSparkOrbit3 17s linear infinite;
}

@keyframes heroGlobeSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heroGlobeSparkOrbit1 {
    0%   { transform: rotate(0deg) translateY(-140px); opacity: 0; }
    15%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: rotate(360deg) translateY(-140px); opacity: 0; }
}

@keyframes heroGlobeSparkOrbit2 {
    0%   { transform: rotate(120deg) translateY(-150px); opacity: 0; }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: rotate(480deg) translateY(-150px); opacity: 0; }
}

@keyframes heroGlobeSparkOrbit3 {
    0%   { transform: rotate(-90deg) translateY(-160px); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: rotate(270deg) translateY(-160px); opacity: 0; }
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-flow {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: 360px; /* assez haut pour contenir le téléphone complet */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.4rem;
}

.hero-column {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-column--left {
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 1rem;
    gap: 1.2rem;
}

.hero-column--right {
    justify-content: center;
    align-items: center;
}

/* Boutons */

.btn {
    border-radius: 999px;
    padding: 0.7rem 1.3rem;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: #ffffff;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(148, 163, 184, 0.9);
}

.btn--primary {
    /* CTA principal en mode clair : gradient vert Kiwikard, très lisible */
    background: linear-gradient(135deg, var(--brand-green-light), var(--brand-green-dark));
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.6),
        0 0 22px rgba(139, 197, 63, 0.4);
}

.btn--ghost {
    /* Bouton secondaire : fond clair légèrement teinté */
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(148, 163, 184, 0.6);
    color: var(--text);
}

.btn--secondary {
    background: rgba(139, 197, 63, 0.08);
    border-color: rgba(139, 197, 63, 0.4);
    color: #3f6212;
}

/* Carte NFC + mockups */

.hero__preview--light {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Popups illustrant ce que l’utilisateur obtient après le tap NFC */

.hero-popups {
    position: absolute;
    right: 0; /* aligné sur le bord droit de la colonne téléphone */
    top: 50%;
    /* On décale le groupe de popups de 20% de sa largeur vers la gauche :
       ≈ 20% des cartes chevauchent le téléphone, 80% restent à l’extérieur. */
    transform: translate(-20%, -50%);
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-popup {
    position: relative;
    border-radius: 18px;
    padding: 1px; /* pour la bordure dégradée holographique */
    display: flex;
    font-size: 0.78rem;
    color: #e5f4ff;
    isolation: isolate;
}

.hero-popup__glass {
    position: relative;
    border-radius: inherit;
    padding: 0.55rem 0.75rem;
    background: radial-gradient(circle at 0% 0%, rgba(139, 197, 63, 0.32), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(139, 197, 63, 0.4);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.82),
        0 0 26px rgba(139, 197, 63, 0.45);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: hidden;
}

.hero-popup__glass::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 200deg,
        rgba(139, 197, 63, 0.0),
        rgba(139, 197, 63, 0.75),
        rgba(170, 91, 243, 0.0),
        rgba(170, 91, 243, 0.6),
        rgba(139, 197, 63, 0.0)
    );
    mix-blend-mode: screen;
    opacity: 0.25;
    transform: translateX(-40%);
    pointer-events: none;
    animation: popupShimmer 12s linear infinite;
}

.hero-popup__glass--pill {
    padding-inline: 0.9rem;
    align-items: center;
    justify-content: center;
}

.hero-popup__title {
    margin: 0;
    font-weight: 600;
    font-size: 0.8rem;
}

.hero-popup__subtitle {
    margin: 0;
    font-size: 0.72rem;
    color: #6b7280;
}

.hero-popup__header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-popup__avatar {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(145deg, #8bc53f, #5d8f26);
}

.hero-popup__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #22c55e;
    color: #ecfdf5;
    font-size: 0.7rem;
}

.hero-popup--contact {
    display: flex;
}

.hero-popup--social .hero-popup__title {
    margin-bottom: 0.1rem;
}

.hero-popup__social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.social-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #ffffff;
}

.social-dot--ig { background: radial-gradient(circle at 30% 30%, #f9a8d4, #db2777, #f97316); }
.social-dot--fb { background: #2563eb; }
.social-dot--ln { background: #0ea5e9; }
.social-dot--tt { background: #111827; }
.social-dot--sc { background: #facc15; color: #111827; }
.social-dot--x  { background: #000000; }

.hero-popup__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-popup__list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #4b5563;
}

.hero-popup--more {
    align-items: center;
}

.hero-popup__more-label {
    font-size: 0.75rem;
    color: #e5e7eb;
}

@keyframes popupShimmer {
    0% {
        transform: translateX(-40%);
    }
    50% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(60%);
    }
}

@keyframes heroQrScale {
    0% {
        transform: scale(0.96);
    }
    40% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(0.96);
    }
}

@keyframes heroQrPulse {
    0%, 20% {
        opacity: 0;
        transform: scale(0.8) translateY(4px);
    }
    35% {
        opacity: 0.6;
        transform: scale(1) translateY(0);
    }
    55% {
        opacity: 0.25;
        transform: scale(0.9) translateY(-2px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(4px);
    }
}

@keyframes heroNfcWave {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    15% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.12;
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

@keyframes heroScanLine {
    0% {
        transform: translateY(-10%);
    }
    50% {
        transform: translateY(60%);
    }
    100% {
        transform: translateY(110%);
    }
}

/* NFC SVG waves animation */
.hero-bg__nfc {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 90px;
    opacity: 0.45;
}

.hero-bg__nfc img {
    width: 100%;
    height: auto;
}

.hero-bg__nfc {
    animation: heroNfcIconPulse 10s ease-in-out infinite;
}

@keyframes heroNfcIconPulse {
    0% {
        transform: translate3d(0, 0, 0) scale(0.96);
        opacity: 0.35;
    }
    40% {
        transform: translate3d(0, -4px, 0) scale(1.02);
        opacity: 0.6;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(0.96);
        opacity: 0.35;
    }
}

@keyframes heroScanLine {
    0% {
        transform: translateY(-10%);
    }
    50% {
        transform: translateY(60%);
    }
    100% {
        transform: translateY(110%);
    }
}

.hero-nfc-card {
    /* Format carte NFC / CB standard ISO CR80 (ID-1) : 85.6 x 54 mm (~1.585 en paysage) */
    width: clamp(180px, 26vw, 280px); /* taille réduite à environ 2/3 de l’ancienne sur desktop */
    min-width: 170px;
    aspect-ratio: 85.6 / 54;
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, #e5f4ff 0, #ffffff 55%, #e5ffe0 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    padding: 0.9rem 1rem;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.nfc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.nfc-card__chip {
    width: 26px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid rgba(190, 242, 100, 0.9);
    position: relative;
}

.nfc-card__chip::before,
.nfc-card__chip::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    background: rgba(190, 242, 100, 0.85);
}

.nfc-card__logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nfc-card__logo img {
    max-width: 86px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.8));
}

.nfc-card__chip::before {
    top: 4px;
}

.nfc-card__chip::after {
    bottom: 4px;
}

.nfc-card__brand {
    margin-top: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--brand-green-dark);
}

.nfc-card__qr {
    align-self: flex-end;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #ecfdf5;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-card__qr-inner {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background-image:
        linear-gradient(90deg, #022c22 12.5%, transparent 12.5%, transparent 50%, #022c22 50%, #022c22 62.5%, transparent 62.5%, transparent 100%),
        linear-gradient(#022c22 12.5%, transparent 12.5%, transparent 50%, #022c22 50%, #022c22 62.5%, transparent 62.5%, transparent 100%);
    background-size: 12px 12px;
    mix-blend-mode: multiply;
}

.phone-mockup--light {
    width: 240px;
    height: min(460px, 70vh); /* réduit un peu et limité à la hauteur de viewport */
    border-radius: 38px;
    padding: 0.9rem;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: linear-gradient(145deg, #ffffff, #e5f4ff);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: #f3f4ff;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcard-preview--light {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: radial-gradient(circle at top, #e5f4ff 0, #ffffff 45%, #e5ffe0 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    color: #111827;
}

.vcard-preview__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(to bottom right, #8bc53f, #5d8f26);
    margin-bottom: 0.3rem;
}

.vcard-preview__name {
    font-size: 1.1rem;
    font-weight: 600;
}

.vcard-preview__role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.vcard-preview__button {
    border-radius: 999px;
    border: none;
    padding: 0.5rem 1.1rem;
    background: #111827;
    color: #ffffff;
    font-size: 0.8rem;
    cursor: pointer;
}

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

/* Écrans téléphone & laptop pour le hero GSAP */

.phone-screen {
    position: absolute;
    inset: 0;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.phone-screen--placeholder {
    color: #0f172a;
    font-size: 0.85rem;
    gap: 0.4rem;
}

.phone-screen__hint {
    margin: 0;
}

.phone-screen__nfc {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    font-size: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.phone-screen--vcard {
    color: #0f172a;
    gap: 0.3rem;
}

/* Home screen abstrait */

.phone-status-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
    color: #111827;
}

.phone-status-bar__time {
    font-weight: 600;
}

.phone-status-bar__icons {
    display: flex;
    align-items: center;
    gap: 0.18rem;
}

.phone-status-bar__dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
}

.phone-status-bar__signal {
    width: 10px;
    height: 8px;
    border-radius: 2px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.9);
}

.phone-home {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.phone-home__row {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
}

.phone-app {
    flex: 1;
    max-width: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #e5e7eb;
    box-shadow: 0 4px 10px rgba(148, 163, 184, 0.4);
}

.phone-app--green {
    background: linear-gradient(135deg, var(--brand-green-light), var(--brand-green-dark));
}

.phone-app--light {
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), #93c5fd);
}

.phone-app--outline {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.phone-app--muted {
    background: rgba(191, 219, 254, 0.9);
}

.phone-home__dock {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

.phone-dock__pill {
    flex: 1;
    height: 18px;
    border-radius: 999px;
    background: #e5e7eb;
}

.phone-dock__pill--wide {
    flex: 1.5;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.8), rgba(209, 213, 219, 1));
}

.phone-home__hint {
    display: flex;
    justify-content: center;
    margin-top: 0.4rem;
}

/* État vCard détaillé */

.phone-vcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
}

.phone-vcard__buttons {
    margin-top: 0.3rem;
}

.phone-vcard__pill--primary {
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.8),
        0 0 14px rgba(139, 197, 63, 0.5);
}

.phone-vcard__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.4rem;
}

.phone-social {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #ffffff;
}

.phone-social--ig { background: radial-gradient(circle at 30% 30%, #f9a8d4, #db2777, #f97316); }
.phone-social--fb { background: #2563eb; }
.phone-social--ln { background: #0ea5e9; }
.phone-social--tt { background: #111827; }
.phone-social--sc { background: #facc15; color: #111827; }
.phone-social--x  { background: #000000; }

.phone-screen__avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(to bottom right, #8bc53f, #5d8f26);
    margin-bottom: 0.2rem;
}

.phone-screen__name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.phone-screen__role {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.phone-screen__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.phone-screen__pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-green-light), var(--brand-green-dark));
    color: #ffffff;
    font-size: 0.75rem;
}

.hero-laptop {
    width: 260px;
    height: 180px;
    border-radius: 18px;
    background: radial-gradient(circle at 0% 0%, rgba(139, 197, 63, 0.3), #020617 70%);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.9),
        0 0 22px rgba(139, 197, 63, 0.4);
    padding: 0.6rem 0.75rem 0.9rem;
    opacity: 0;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #020617;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.laptop-row {
    display: flex;
    gap: 0.5rem;
}

.laptop-row--header {
    align-items: center;
    justify-content: flex-start;
}

.laptop-pill {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #1f2937;
}

.laptop-pill--green {
    background: #22c55e;
}

.laptop-pill--blue {
    background: #38bdf8;
}

.laptop-pill--grey {
    background: #6b7280;
}

.laptop-card {
    flex: 1;
    border-radius: 10px;
    background: linear-gradient(145deg, #0b1120, #020617);
    padding: 0.45rem 0.55rem;
}

.laptop-card__label {
    margin: 0;
    font-size: 0.7rem;
    color: #9ca3af;
}

.laptop-card__value {
    margin: 0.1rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.laptop-row--list {
    flex-direction: column;
}

.laptop-list-item {
    height: 8px;
    border-radius: 999px;
    background: #111827;
}

/* Grille & cartes */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card--light {
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.3rem;
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
}

.card--light h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

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

/* Étapes */

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

.step--light {
    position: relative;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.3rem 1.2rem 1.1rem 1.2rem;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(148, 163, 184, 0.2);
}

.step__number {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.6);
}

.step--light h3 {
    margin-top: 0.1rem;
    margin-bottom: 0.4rem;
}

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

/* Écologie */

.eco--light {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.eco__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.eco__list li::before {
    content: "• ";
    color: var(--accent);
}

.eco-counter--light {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, #e5ffe0 0, #ffffff 60%, #e0f2fe 100%);
    border: 1px solid rgba(139, 197, 63, 0.6);
    padding: 1.5rem 1.3rem;
    text-align: center;
    box-shadow: 0 20px 48px rgba(56, 189, 248, 0.35);
}

.eco-counter__label {
    font-size: 0.9rem;
    color: #3f6212;
    margin-bottom: 0.6rem;
}

.eco-counter__value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #022c22;
    margin-bottom: 0.8rem;
}

/* Prototype */

.prototype {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.prototype__preview--light {
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(209, 213, 219, 0.9);
    padding: 1.5rem;
    min-height: 160px;
    background: #ffffff;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */

.section--pricing {
    background: #f5f7fb;
}

.pricing-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.pricing-card {
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.8rem 1.5rem 1.6rem;
    box-shadow: 0 16px 40px rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pricing-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-card__price {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing-card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

.pricing-card__tagline {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card__features li::before {
    content: "✓ ";
    color: var(--accent);
}

.pricing-card--highlight {
    border-color: rgba(139, 197, 63, 0.6);
    box-shadow: 0 22px 60px rgba(139, 197, 63, 0.35);
    transform: translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(139, 197, 63, 0.1);
    color: #3f6212;
    border: 1px solid rgba(139, 197, 63, 0.4);
}

/* Footer */

.footer--light {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0 1.4rem;
    background: #ffffff;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__note {
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 960px) {
    .hero__inner,
    .eco--light {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid--3,
    .steps--light {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-flow {
        flex-direction: column;
        align-items: center;
    }

    .hero-column {
        width: 100%;
        align-items: center;
    }

    .hero-column--left {
        padding-right: 0;
    }

    .hero-popups {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 720px) {
    .header__inner {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav--light {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0.5rem;
        background: #ffffff;
        border-radius: 16px;
        padding: 0.75rem 1rem 1rem;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        display: none;
    }

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

    .hero__inner {
        gap: 2rem;
    }

    .hero--light {
        padding-top: 7.5rem; /* un peu plus de marge sur mobile pour laisser respirer le mockup */
    }

    .hero-flow {
        min-height: 340px;
    }

    .grid--3,
    .steps--light {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


