/* ═══════════════════════════════════════════
   RESET & BASE — NowCode
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --anthracite: #12161D;
    --anthracite-light: #1a1f2a;
    --anthracite-lighter: #232936;
    --cyan: #15E9F2;
    --cyan-dim: rgba(21, 233, 242, 0.15);
    --cyan-glow: rgba(21, 233, 242, 0.3);
    --bleu-tech: #3AB2CD;
    --aqua-doux: #72D5DA;
    --silver: #D2DEE3;
    --off-white: #F0F9FC;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--anthracite);
    color: var(--silver);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(18, 22, 29, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 233, 242, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(18, 22, 29, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

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

.btn-ghost {
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(210, 222, 227, 0.2);
    border-radius: 8px;
    background: transparent;
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-primary {
    padding: 0.55rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--cyan);
    color: var(--anthracite);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--aqua-doux);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(21, 233, 242, 0.3);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 233, 242, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 233, 242, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 233, 242, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    max-width: 860px;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(21, 233, 242, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--cyan);
    margin-bottom: 2rem;
    background: rgba(21, 233, 242, 0.05);
    font-family: var(--font-code);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--cyan), var(--aqua-doux));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(210, 222, 227, 0.08);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(210, 222, 227, 0.6);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
section {
    padding: 7rem 2rem;
}

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

.section-label {
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--off-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--silver);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   FEATURES / SERVICES
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--anthracite-light);
    border: 1px solid rgba(210, 222, 227, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(21, 233, 242, 0.15);
    transform: translateY(-2px);
}

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

.feature-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(210, 222, 227, 0.7);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-section {
    text-align: center;
    position: relative;
    padding: 8rem 2rem;
    background: url('../images/cta-bg.jpg') center center / cover no-repeat;
}

.cta-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 233, 242, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-title {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-section .section-desc {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    border-top: 1px solid rgba(210, 222, 227, 0.06);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(210, 222, 227, 0.5);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: rgba(210, 222, 227, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(210, 222, 227, 0.06);
    font-size: 0.8rem;
    color: rgba(210, 222, 227, 0.35);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    color: rgba(210, 222, 227, 0.35);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.footer-socials a:hover {
    color: var(--cyan);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.hero-short {
    min-height: 60vh;
    padding: 8rem 2rem 4rem;
}

.hero-short .hero-content {
    max-width: 700px;
}

.hero-short p {
    margin-bottom: 0;
}

.about-block {
    max-width: 700px;
}

.about-role {
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.about-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--cyan);
}

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

@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-short {
        min-height: auto;
        padding: 6rem 1rem 3rem;
    }

    .hero-short h1 {
        font-size: 2rem;
    }

    .about-block {
        max-width: 100%;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-role {
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ═══════════════════════════════════════════
   NAV CTA BUTTON
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   NAV CTA BUTTON & MOBILE MENU
   ═══════════════════════════════════════════ */
.nav-cta-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 22, 29, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 233, 242, 0.08);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu a {
    color: var(--silver);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu a:hover {
    color: var(--cyan);
}

.mobile-cta {
    text-align: center;
    margin-top: 0.5rem;
    display: block;
    color: var(--anthracite) !important;
}

/* Hamburger animation (croix quand ouvert) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

/* ═══════════════════════════════════════════
   AUDIT PAGE
   ═══════════════════════════════════════════ */
.audit-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.audit-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.audit-form-info .section-desc {
    margin-bottom: 2rem;
}

.audit-reassurance {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audit-reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--silver);
}

.audit-check {
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
}

.audit-form {
    background: var(--anthracite-light);
    border: 1px solid rgba(210, 222, 227, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--silver);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--anthracite-lighter);
    border: 1px solid rgba(210, 222, 227, 0.1);
    border-radius: 10px;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(210, 222, 227, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(21, 233, 242, 0.12);
}

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

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.audit-success {
    text-align: center;
    padding: 4rem 2rem;
}

.audit-success .section-title {
    color: var(--cyan);
}

@media (max-width: 1200px) {
    .audit-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .audit-form-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .audit-benefits {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .audit-form {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════
   LEGAL PAGE
   ═══════════════════════════════════════════ */
.legal-content {
    max-width: 760px;
}

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section strong {
    color: var(--off-white);
}

.legal-section a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: var(--aqua-doux);
}

.legal-update {
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: rgba(210, 222, 227, 0.4);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(210, 222, 227, 0.06);
}

/* ═══════════════════════════════════════════
   RÉALISATIONS TABLE
   ═══════════════════════════════════════════ */
.table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(210, 222, 227, 0.06);
    background: var(--anthracite-light);
}

.realisations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.realisations-table thead {
    background: var(--anthracite-lighter);
}

.realisations-table th {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(21, 233, 242, 0.1);
}

.realisations-table td {
    padding: 1rem 1.25rem;
    color: var(--silver);
    border-bottom: 1px solid rgba(210, 222, 227, 0.04);
    vertical-align: middle;
}

.realisations-table tbody tr {
    transition: background 0.2s;
}

.realisations-table tbody tr:hover {
    background: rgba(21, 233, 242, 0.03);
}

.realisations-table tbody tr:last-child td {
    border-bottom: none;
}

.project-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--off-white);
    white-space: nowrap;
}

.project-name a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(21, 233, 242, 0.3);
    padding-bottom: 1px;
}

.project-name a:hover {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-code);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge-site {
    background: rgba(21, 233, 242, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(21, 233, 242, 0.2);
}

.badge-app {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-auto {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.badge-actif {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-dev {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.badge-pause {
    background: rgba(210, 222, 227, 0.08);
    color: var(--silver);
    border: 1px solid rgba(210, 222, 227, 0.15);
}

.badge-disponible {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-demande {
    background: rgba(21, 233, 242, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(21, 233, 242, 0.2);
}

.badge-indisponible {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-os {
    background: rgba(210, 222, 227, 0.08);
    color: var(--silver);
    border: 1px solid rgba(210, 222, 227, 0.15);
}

.badge-test {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.badge-beta {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-interne {
    background: rgba(99, 102, 241, 0.12);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-client {
    background: rgba(236, 72, 153, 0.12);
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* Category headers */
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-category {
    font-size: 0.7rem;
    padding: 0.3rem 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--off-white);
    letter-spacing: -0.02em;
}

.category-desc {
    font-size: 0.95rem;
    color: rgba(210, 222, 227, 0.55);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .table-wrapper {
        margin-top: 1.25rem;
        border-radius: 12px;
    }

    .realisations-table th,
    .realisations-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .realisations-table {
        min-width: 600px;
    }

    .category-title {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .features-grid,
    .process-steps,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid {
        max-width: 400px;
    }

    .demo-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

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

    .hamburger {
        display: flex;
    }

    nav .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .hero {
        min-height: 80vh;
        padding: 6rem 1rem 3rem;
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        padding: 2rem 1.25rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-img {
        aspect-ratio: 16 / 9;
    }

    .cta-section {
        padding: 5rem 1rem;
        background-size: cover;
        background-position: center;
    }

    .cta-content {
        padding: 2rem 1.25rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .features-grid,
    .testimonials-grid {
        max-width: 100%;
    }

    .nav-logo-img {
        height: 45px;
    }
}
