/* ===========================
   Local Fonts (RGPD)
   =========================== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(fonts/inter-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(fonts/inter-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===========================
   Variables
   =========================== */
:root {
    --bg: #070d10;
    --bg-2: #0c1518;
    --bg-card: #101c1f;
    --bg-card-hover: #152224;
    --text: #f0f8f8;
    --text-2: #5a909e;
    --text-3: #2e5560;
    --accent: #00d4c8;
    --accent-2: #7df0ea;
    --accent-dim: rgba(0, 212, 200, 0.1);
    --gradient: linear-gradient(135deg, #00d4c8 0%, #a0f0ec 100%);
    --border: rgba(255, 255, 255, 0.06);
    --border-2: rgba(255, 255, 255, 0.1);
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.25, 0, 0.1, 1);
    --t: 0.25s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* ===========================
   Particles
   =========================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===========================
   Background ribbons
   =========================== */
.bg-ribbons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    border-radius: 50%;
}

/* Spotlight haut-droite — presque blanc au centre, teal aux bords */
.ribbon-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(0, 220, 210, 0.35) 30%,
        rgba(0, 180, 170, 0.12) 60%,
        transparent 75%
    );
    top: -18%;
    right: -12%;
    filter: blur(45px);
    animation: driftA 20s ease-in-out infinite;
}

/* Glow teal bas-gauche */
.ribbon-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center,
        rgba(0, 212, 200, 0.45) 0%,
        rgba(0, 180, 170, 0.2) 45%,
        transparent 70%
    );
    bottom: -12%;
    left: -8%;
    filter: blur(60px);
    animation: driftB 22s ease-in-out infinite;
}

/* Accent très subtil milieu */
.ribbon-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center,
        rgba(0, 212, 200, 0.12) 0%,
        transparent 70%
    );
    top: 45%;
    left: 45%;
    filter: blur(80px);
    animation: driftC 25s ease-in-out infinite;
}

@keyframes driftA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-30px, 20px) scale(1.05); }
    66%  { transform: translate(20px, -15px) scale(0.97); }
}

@keyframes driftB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(20px, -25px) scale(1.04); }
    66%  { transform: translate(-15px, 20px) scale(0.96); }
}

@keyframes driftC {
    0%, 100% { transform: translate(0, 0); }
    50%  { transform: translate(30px, -20px); }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero,
.services,
.product,
.process,
.testimonials,
.contact,
.footer,
.navbar {
    position: relative;
    z-index: 1;
}

/* ===========================
   Typography utilities
   =========================== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-2);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding var(--t) var(--ease), background var(--t), border-color var(--t);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 13px 0;
    background: rgba(7, 13, 16, 0.93);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-rect-outer {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: drawRect 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.logo-rect-inner {
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: drawRect 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.logo-p-path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawRect 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes drawRect {
    to { stroke-dashoffset: 0; }
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-2);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--t);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 9px 20px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius);
    font-size: 0.825rem;
    font-weight: 600;
    transition: opacity var(--t), transform var(--t) var(--ease);
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-cta { display: none; }

.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
}

/* ===========================
   Hero
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1.1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform var(--t) var(--ease), opacity var(--t), border-color var(--t);
    cursor: pointer;
    border: none;
    font-family: var(--font);
    letter-spacing: -0.01em;
}

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

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform var(--t) var(--ease);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border-2);
}

.btn-secondary:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Sector tags — marquee
   =========================== */
.hero-sectors {
    overflow: hidden;
    margin-bottom: 40px;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.sectors-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.hero-sectors:hover .sectors-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.sector-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color var(--t), color var(--t);
}

.sector-tag:hover {
    border-color: rgba(0, 212, 200, 0.25);
    color: var(--text);
}

/* ===========================
   Hero stats
   =========================== */
.hero-stats {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.stat {
    flex: 1;
    padding-right: 24px;
}

.stat + .stat {
    padding-left: 24px;
    padding-right: 24px;
    border-left: 1px solid var(--border);
}

.stat:last-child {
    border-left: 1px solid var(--border);
    padding-left: 24px;
    padding-right: 0;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    background: none;
    display: block;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-divider { display: none; }

/* ===========================
   Hero visual — Dashboard
   =========================== */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.dashboard-preview {
    width: 100%;
    max-width: 520px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.dashboard-dots { display: flex; gap: 6px; }

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #1c2e42; }
.dashboard-dots span:nth-child(2) { background: #1c2e42; }
.dashboard-dots span:nth-child(3) { background: #1c2e42; }

.dashboard-title {
    font-size: 0.72rem;
    color: var(--text-2);
    letter-spacing: 0.02em;
}

.dashboard-body {
    display: flex;
    padding: 16px;
    gap: 14px;
    min-height: 240px;
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 36px;
}

.dash-nav-item {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
}

.dash-nav-item.active {
    background: rgba(0, 212, 200, 0.1);
    border-color: rgba(0, 212, 200, 0.25);
}

.dash-main { flex: 1; }

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    transition: border-color var(--t);
}

.dash-card:hover {
    border-color: var(--border-2);
}

.dash-card-icon { margin-bottom: 6px; }

.dash-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.dash-card-label {
    font-size: 0.6rem;
    color: var(--text-2);
}

.dash-chart {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    overflow: hidden;
}

.chart-line { width: 100%; height: auto; }

.chart-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChart 2s ease forwards 1s;
}

.chart-area {
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

@keyframes drawChart { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===========================
   Services
   =========================== */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-card {
    background: var(--bg);
    padding: 40px;
    transition: background var(--t);
    position: relative;
}

.service-card:hover {
    background: var(--bg-card);
}

.service-number {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-3);
    margin-bottom: 24px;
    display: block;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 20px;
    transition: border-color var(--t), background var(--t);
}

.service-card:hover .service-icon {
    background: var(--accent-dim);
    border-color: rgba(0, 212, 200, 0.3);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.service-tags span {
    padding: 3px 10px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    font-size: 0.72rem;
    color: var(--text-2);
    font-weight: 500;
}

/* ===========================
   Product
   =========================== */
.product {
    padding: 120px 0;
}

.product-layout {
    display: flex;
    align-items: center;
    gap: 100px;
}

.product-info { flex: 1; }

.product-desc {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--t) var(--ease);
}

.feature-item:hover {
    padding-left: 6px;
}

.feature-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.feature-item span {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ===========================
   Product visual — Phone
   =========================== */
.product-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 268px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: 32px;
    overflow: hidden;
}

.phone-screen { padding: 0; }

.phone-header {
    padding: 12px 18px 14px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 14px;
}

.phone-notch {
    width: 72px;
    height: 20px;
    background: var(--bg);
    border-radius: 0 0 12px 12px;
}

.phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-app-header h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.phone-badge {
    background: var(--gradient);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius);
    font-size: 0.65rem;
    font-weight: 700;
}

.phone-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.property-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(0, 212, 200, 0.5), rgba(0, 85, 238, 0.5));
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.property-img.img2 {
    background: linear-gradient(135deg, rgba(0, 85, 238, 0.5), rgba(0, 180, 216, 0.5));
}

.property-img.img3 {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.4), rgba(0, 51, 200, 0.5));
}

.property-info-mini { flex: 1; min-width: 0; }

.property-type {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.property-price {
    display: block;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 700;
}

.property-loc {
    display: block;
    font-size: 0.62rem;
    color: var(--text-2);
}

.property-status {
    font-size: 0.58rem;
    padding: 2px 7px;
    border-radius: var(--radius);
    font-weight: 600;
    white-space: nowrap;
}

.property-status.online {
    background: rgba(0, 212, 200, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 200, 0.2);
}

.property-status.pending {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Floating notifications */
.floating-notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    color: var(--text-2);
    white-space: nowrap;
}

.notif-1 {
    top: 15%;
    right: -24px;
    animation: floatNotif1 6s ease-in-out infinite;
}

.notif-2 {
    bottom: 20%;
    left: -28px;
    animation: floatNotif2 7s ease-in-out infinite 1s;
}

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

@keyframes floatNotif2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===========================
   Process
   =========================== */
.process {
    padding: 120px 0;
}

.process-timeline {
    max-width: 760px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.process-line { display: none; }

.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--t) var(--ease);
}

.process-step:hover {
    padding-left: 8px;
}

.step-number {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-3);
    padding-top: 4px;
    width: auto;
    height: auto;
    min-width: auto;
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: color var(--t);
}

.process-step:hover .step-number {
    color: var(--accent);
}

.step-content { padding-top: 0; }

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--t), background var(--t);
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 200, 0.25);
    background: var(--bg-card-hover);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.4;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: -4px;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 200, 0.12);
    border: 1px solid rgba(0, 212, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-info span {
    color: var(--text-2);
    font-size: 0.75rem;
}

/* ===========================
   Contact
   =========================== */
.contact {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-2);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.875rem;
    transition: border-color var(--t);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-2);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234e6680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select option {
    background: #0c1518;
    color: var(--text);
}

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

.form-consent { margin-bottom: 22px; }

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--text-2);
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
}

.consent-label a {
    color: var(--text-2);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-label a:hover {
    color: var(--text);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
    color: var(--text-2);
    font-size: 0.85rem;
    line-height: 1.65;
}

.footer-links { display: flex; gap: 64px; }

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text-2);
}

.footer-col a {
    display: block;
    color: var(--text-2);
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color var(--t);
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-2);
    font-size: 0.78rem;
}

/* ===========================
   Reveal animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }

.feature-list .feature-item:nth-child(1) { transition-delay: 0s; }
.feature-list .feature-item:nth-child(2) { transition-delay: 0.08s; }
.feature-list .feature-item:nth-child(3) { transition-delay: 0.12s; }
.feature-list .feature-item:nth-child(4) { transition-delay: 0.16s; }
.feature-list .feature-item:nth-child(5) { transition-delay: 0.2s; }

.process-step:nth-child(2) { transition-delay: 0s; }
.process-step:nth-child(3) { transition-delay: 0.1s; }
.process-step:nth-child(4) { transition-delay: 0.2s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }

/* ===========================
   Scrollbar & selection
   =========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #263a52; }

::selection {
    background: rgba(0, 212, 200, 0.2);
    color: white;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-top: 120px;
        gap: 60px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

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

    .hero-visual {
        justify-content: center;
        width: 100%;
    }

    .dashboard-preview { max-width: 480px; }

    .product-layout {
        flex-direction: column;
        gap: 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services,
    .product,
    .process,
    .contact,
    .testimonials {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 38px;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 13, 16, 0.98);
        backdrop-filter: blur(24px);
        padding: 28px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open li:last-child {
        border-bottom: none;
    }

    .nav-links.open a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        color: var(--text);
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 8px;
        padding-top: 16px;
    }

    .nav-mobile-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .services,
    .product,
    .process,
    .contact,
    .testimonials {
        padding: 64px 0;
    }

    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 2rem; }
    .section-desc { font-size: 0.95rem; color: var(--text-2); }

    .hero {
        padding: 96px 20px 48px;
        min-height: auto;
        gap: 40px;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
    }

    .hero-badge { font-size: 0.72rem; }
    .hero-title { font-size: 2.2rem; line-height: 1.1; }
    .hero-subtitle { font-size: 0.97rem; margin-bottom: 28px; }
    .hero-actions { margin-bottom: 24px; }
    .hero-sectors { margin-bottom: 32px; }

    /* Dashboard — visible, pleine largeur */
    .hero-visual {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .dashboard-preview {
        max-width: 100%;
        width: 100%;
    }

    /* Stats — 3 colonnes égales */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--border);
        padding-top: 0;
        gap: 0;
    }

    .stat {
        padding: 20px 12px;
        border-right: 1px solid var(--border);
        border-left: none;
        padding-right: 12px;
    }

    .stat + .stat {
        border-left: none;
        padding-left: 12px;
        padding-right: 12px;
    }

    .stat:last-child {
        border-right: none;
        padding-left: 12px;
        padding-right: 0;
    }

    .stat-number { font-size: 1.3rem; }
    .stat-label { font-size: 0.68rem; }

    /* Phone mockup — visible, centré */
    .product-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .phone-mockup { width: 240px; }

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

    .service-card { padding: 28px 24px; }

    .service-card h3 { font-size: 1.15rem; }
    .service-card p { font-size: 0.92rem; color: var(--text-2); }

    .step-number { color: var(--accent); opacity: 0.5; }

    .step-content h3 { font-size: 1.1rem; }
    .step-content p { font-size: 0.92rem; }

    .process-step { padding: 28px 0; }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card { padding: 24px 20px; }
    .testimonial-text { font-size: 0.92rem; }

    .contact-layout { gap: 36px; }
    .contact-form { padding: 24px; }
    .contact-desc { font-size: 0.95rem; }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 1rem;
    }

    .btn { padding: 14px 24px; font-size: 0.9rem; }

    .floating-notif { display: none; }
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
    .footer { padding: 48px 0 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }
    .logo-img { height: 34px; }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 84px;
        padding-bottom: 40px;
        gap: 32px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn { justify-content: center; }
    .subtitle-extra { display: none; }
    .section-title { font-size: 1.75rem; }
    .service-card { padding: 22px 16px; }
    .contact-form { padding: 20px 16px; }
    .footer { padding: 36px 0 0; }
    .footer-links { flex-direction: column; gap: 28px; }

    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    /* Dashboard encore plus compact */
    .dashboard-body { padding: 12px; gap: 10px; min-height: auto; }
    .dash-cards { gap: 6px; }
    .dash-card { padding: 10px 8px; }
    .dash-card-value { font-size: 0.95rem; }
    .dash-card-label { font-size: 0.55rem; }

    /* Phone mockup */
    .phone-mockup { width: 220px; }

    /* Stats */
    .stat-number { font-size: 1.2rem; }
    .stat { padding-right: 16px; }
    .stat + .stat { padding-left: 16px; padding-right: 16px; }
    .stat:last-child { padding-left: 16px; padding-right: 0; }

    .testimonial-card { padding: 20px 16px; }
    .sector-tag { font-size: 0.82rem; padding: 6px 14px; }
}
