/*
 * DictIA - Cinematic Dark AI Aesthetic
 * Bold, Modern, Gradient-Rich
 */

:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: #0A0A0A;
    --bg-card-hover: #111111;
    --text-main: #FFFFFF;
    --text-muted: #888888;

    /* Brand Gradient */
    --accent-gradient: linear-gradient(135deg, #00C4CC 0%, #7D2AE8 100%);
    --accent-solid: #7D2AE8;

    --border: #222222;
    --positive: #4CAF50;
    --negative: #FF5252;

    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'General Sans', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Animation */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 64px;
}

.section-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(125, 42, 232, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(125, 42, 232, 0.7);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent-solid);
    background: rgba(125, 42, 232, 0.1);
}

.btn-full {
    width: 100%;
}

/* Grain Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* Mobile Nav */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.nav-mobile.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile a {
    font-size: 16px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile a:hover {
    color: var(--text-main);
}

.nav-mobile .nav-cta {
    text-align: center;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(125, 42, 232, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #00C4CC;
    border-radius: 50%;
    box-shadow: 0 0 8px #00C4CC;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Demo Window */
.demo-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.demo-window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.demo-topbar {
    height: 48px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.02);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.demo-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.demo-rec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--negative);
    text-transform: uppercase;
}

.rec-dot {
    width: 6px;
    height: 6px;
    background: var(--negative);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.demo-body {
    padding: 24px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, var(--bg-card) 0%, #000 100%);
}

.demo-speakers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}

.demo-line.active {
    opacity: 1;
    transform: translateY(0);
}

.speaker {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speaker-a { color: #00C4CC; }
.speaker-b { color: #7D2AE8; }

.speech {
    font-size: 14px;
    line-height: 1.5;
    color: #E5E9F0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 12px;
}

.demo-summary {
    background: rgba(125, 42, 232, 0.1);
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    margin-top: auto;
    border: 1px solid rgba(125, 42, 232, 0.3);
    opacity: 0;
    transition: opacity 0.5s;
}

.demo-summary.active {
    opacity: 1;
}

.summary-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #7D2AE8;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}

.demo-bottombar {
    height: 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.02);
}

/* Trust Bar */
.trust-bar {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item svg {
    color: #00C4CC;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Performance Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: rgba(0, 196, 204, 0.4);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-sub {
    font-size: 13px;
    color: var(--text-muted);
}

/* Performance Table */
.perf-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.perf-table-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.perf-table {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
}

.perf-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.perf-row:last-child {
    border-bottom: none;
}

.perf-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 14px;
}

.perf-col {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.perf-col.highlight {
    color: var(--text-main);
    background: rgba(0, 196, 204, 0.05);
    font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 42, 232, 0.3);
}

.price-popular {
    border: 1px solid #7D2AE8;
    background: linear-gradient(180deg, rgba(125, 42, 232, 0.1) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 30px rgba(125, 42, 232, 0.15);
}

.badge-pop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--accent-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 0;
    letter-spacing: 0.05em;
}

.price-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 16px;
}

.price-name {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
}

.price-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.price-cost {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.price-cost .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.price-install {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.price-features {
    flex: 1;
    margin-bottom: 32px;
}

.price-features ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.price-features li {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: #00C4CC;
    font-weight: bold;
}

/* 3-Year Projection */
.projection-wrapper {
    margin-bottom: 48px;
}

.projection-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.projection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projection-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.projection-highlight {
    border-color: rgba(125, 42, 232, 0.3);
}

.projection-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.projection-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.projection-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.projection-label {
    font-size: 12px;
    color: var(--text-muted);
    width: 36px;
    flex-shrink: 0;
}

.projection-bar {
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    min-width: 70px;
}

.projection-bar.bar-recurring {
    background: rgba(0, 196, 204, 0.3);
}

.projection-bar span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.projection-total {
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.projection-total strong {
    color: var(--text-main);
    font-size: 18px;
}

.projection-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 16px;
    opacity: 0.7;
}

.roi-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.7;
}

/* Client Profiles */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s;
}

.profile-card:hover {
    border-color: rgba(0, 196, 204, 0.3);
    transform: translateY(-4px);
}

.profile-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 196, 204, 0.1);
    color: #00C4CC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.profile-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}

.profile-reco {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.profile-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
}

.comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-main);
}

.comp-col {
    padding: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.comp-col.highlight {
    color: var(--text-main);
    background: rgba(0, 196, 204, 0.05);
    font-weight: 500;
}

/* Comparison Quotes */
.comp-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.comp-quote {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.comp-quote p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.comp-quote strong {
    color: var(--text-main);
}

/* Conformité Section */
.conformite-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.conformite-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s;
}

.conformite-card:hover {
    border-color: rgba(0, 196, 204, 0.3);
}

.conformite-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.local-icon {
    background: rgba(0, 196, 204, 0.1);
    color: #00C4CC;
}

.cloud-icon {
    background: rgba(125, 42, 232, 0.1);
    color: #7D2AE8;
}

.conformite-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.conformite-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.conformite-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conformite-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

/* Objection / Local AI Authorized */
.objection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}

.objection-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.objection-card.card-no {
    border-color: rgba(255, 82, 82, 0.3);
    background: rgba(255, 82, 82, 0.03);
}

.objection-card.card-yes {
    border-color: rgba(0, 196, 204, 0.4);
    background: rgba(0, 196, 204, 0.04);
}

.objection-card-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.objection-card-label.label-no { color: var(--negative); }
.objection-card-label.label-yes { color: #00C4CC; }

.objection-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.objection-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: #ccc;
    line-height: 1.4;
}

.objection-list li:last-child { border-bottom: none; }

.objection-x { color: var(--negative); font-weight: bold; flex-shrink: 0; }
.objection-ok { color: #00C4CC; font-weight: bold; flex-shrink: 0; }

.objection-intro {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 0;
}

.objection-intro strong {
    color: var(--text-main);
}

.install-includes {
    font-size: 11px;
    color: #00C4CC;
    margin-top: 6px;
    opacity: 0.85;
    letter-spacing: 0.03em;
}

@media (max-width: 960px) {
    .objection-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps / Process Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 16px;
    transition: 0.3s;
    position: relative;
}

.step-card:hover {
    border-color: rgba(0, 196, 204, 0.3);
    transform: translateY(-4px);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: -48px;
    margin-bottom: 56px;
    max-width: 600px;
}

/* Features/Tech Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    row-gap: 24px;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 16px;
    transition: 0.3s;
}

.feature:hover {
    border-color: #00C4CC;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 196, 204, 0.1);
    color: #00C4CC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
}

.feature p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    cursor: pointer;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.faq-item summary:hover {
    color: #00C4CC;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-chevron {
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Form Styles */
.demo-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.demo-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ccc;
}

.demo-benefits svg {
    color: #00C4CC;
    flex-shrink: 0;
}

.demo-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

input, select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #7D2AE8;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.demo-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(0, 196, 204, 0.1);
    border-radius: 16px;
    border: 1px solid #00C4CC;
}

.success-icon {
    color: #00C4CC;
    margin-bottom: 16px;
}

.success-icon svg {
    display: inline-block;
}

/* Footer */
.footer {
    background: #080808;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 220px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links button {
    font-size: 14px;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover,
.footer-links button:hover {
    color: #00C4CC;
}

.footer-rpp {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-rpp-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
}

.footer-rpp-role {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-rpp-email a {
    font-size: 14px;
    color: #00C4CC;
    transition: opacity 0.3s;
}

.footer-rpp-email a:hover {
    opacity: 0.75;
}

.footer-rpp-legal {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.55;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

.footer-bottom-bar {
    padding: 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom-bar p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-sub {
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.5;
}

/* =============================
   MODALES
   ============================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #0A0A0A;
    border: 1px solid #222;
    border-radius: 16px;
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    padding: 32px 40px 24px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #0A0A0A;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

.modal-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.7;
}

.modal-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s;
    line-height: 1;
}

.modal-close:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.modal-body {
    padding: 32px 40px 40px;
}

.modal-section {
    margin-bottom: 28px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-section p,
.modal-section li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.modal-section ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 13px;
}

.modal-table th {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    font-weight: 600;
    padding: 10px 16px;
    text-align: left;
    border: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.modal-table td {
    color: var(--text-muted);
    padding: 10px 16px;
    border: 1px solid var(--border);
    font-size: 13px;
}

.modal-section a {
    color: #00C4CC;
}

/* Modale sous-traitance */
.subcontract-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.subcontract-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.subcontract-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.3;
}

.subcontract-point-content h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-main);
}

.subcontract-point-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
}

/* =============================
   BANNIÈRE ZÉRO ENTRAÎNEMENT
   ============================= */
.zero-training-banner {
    background: rgba(0, 196, 204, 0.05);
    border: 1px solid rgba(0, 196, 204, 0.25);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}

.zero-training-icon {
    color: #00C4CC;
    flex-shrink: 0;
    margin-top: 2px;
}

.zero-training-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.zero-training-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 680px;
}

.zero-training-content a,
.zero-training-link {
    color: #00C4CC;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    transition: opacity 0.3s;
}

.zero-training-content a:hover,
.zero-training-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* =============================
   INFRASTRUCTURE VÉRIFIABLE
   ============================= */
.infra-proof {
    background: #111;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 20px;
}

.infra-proof-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.infra-proof-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.infra-proof-links a {
    font-size: 13px;
    color: #00C4CC;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s;
}

.infra-proof-links a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-cta:not(.nav-mobile .nav-cta) {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .projection-grid {
        grid-template-columns: 1fr;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .comp-row {
        grid-template-columns: 1fr 1fr;
    }

    .comp-col:nth-child(3), .comp-col:nth-child(4) {
        display: none;
    }

    .comp-quotes {
        grid-template-columns: 1fr;
    }

    .conformite-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .zero-training-banner {
        flex-direction: column;
    }

    .modal-header {
        padding: 24px 24px 20px;
    }

    .modal-body {
        padding: 24px 24px 32px;
    }

    .modal-title {
        font-size: 18px;
    }

    .demo-section-inner {
        grid-template-columns: 1fr;
    }

    .perf-row {
        grid-template-columns: 1fr 0.6fr 0.8fr;
    }

    .perf-col:nth-child(4) {
        display: none;
    }

    .demo-window {
        transform: none;
    }

    .demo-window:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-items {
        justify-content: center;
    }

    .price-card {
        padding: 28px;
    }

    .demo-form {
        padding: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}
