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

:root {
    --green: #16a34a;
    --green-dark: #15803d;
    --green-light: #dcfce7;
    --green-mid: #86efac;
    --navy: #0f172a;
    --navy-2: #1e293b;
    --gray: #64748b;
    --gray-light: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 5vw;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(22, 163, 74, .12);
    transition: box-shadow .3s
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, .06)
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 2rem
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.5px;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    fill: white
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color .2s
}

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

.nav-cta {
    background: var(--green);
    color: white;
    padding: .55rem 1.25rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .1s
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px)
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 40%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 5vw 60px
}

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

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .07
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--green);
    top: -200px;
    right: -100px;
    animation: float1 8s ease-in-out infinite
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: #0284c7;
    bottom: -150px;
    left: -100px;
    animation: float2 10s ease-in-out infinite
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22, 163, 74, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 163, 74, .04) 1px, transparent 1px);
    background-size: 60px 60px
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-30px) rotate(5deg)
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(20px) rotate(-3deg)
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(22, 163, 74, .2)
}

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

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
    color: var(--navy)
}

h1 span {
    color: var(--green);
    position: relative
}

h1 span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    animation: underline-grow .8s var(--ease) forwards .5s;
    transform-origin: left;
    transform: scaleX(0)
}

@keyframes underline-grow {
    to {
        transform: scaleX(1)
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--green);
    color: white;
    padding: .8rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(22, 163, 74, .35)
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22, 163, 74, .4)
}

.btn-secondary {
    color: var(--navy);
    padding: .8rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid rgba(15, 23, 42, .15);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green)
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform .2s
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem
}

.hero-stat {
    display: flex;
    flex-direction: column
}

.hero-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy)
}

.hero-stat span {
    font-size: .8rem;
    color: var(--gray);
    font-weight: 500
}

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
    height: 480px
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .12);
    overflow: hidden;
    position: absolute;
    animation: card-float 6s ease-in-out infinite
}

.dashboard-card-main {
    width: 340px;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.card-header {
    background: var(--navy);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.card-dots {
    display: flex;
    gap: .4rem
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot:nth-child(1) {
    background: #ef4444
}

.dot:nth-child(2) {
    background: #f59e0b
}

.dot:nth-child(3) {
    background: #22c55e
}

.card-title {
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    font-weight: 600
}

.card-body {
    padding: 1.2rem
}

.mini-map {
    background: #f0fdf4;
    border-radius: 10px;
    height: 140px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem
}

.map-bg-line {
    position: absolute;
    background: rgba(22, 163, 74, .12);
    border-radius: 2px
}

.map-bg-h {
    height: 1px;
    width: 100%;
    top: 33%;
    left: 0
}

.map-bg-h2 {
    height: 1px;
    width: 100%;
    top: 66%;
    left: 0
}

.map-bg-v {
    width: 1px;
    height: 100%;
    left: 33%;
    top: 0
}

.map-bg-v2 {
    width: 1px;
    height: 100%;
    left: 66%;
    top: 0
}

.route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.route-path {
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-route 2.5s var(--ease) forwards 1s
}

@keyframes draw-route {
    to {
        stroke-dashoffset: 0
    }
}

.bin-marker {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
    position: absolute;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.depot-marker {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.depot-marker svg {
    width: 14px;
    height: 14px;
    fill: white
}

.card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem
}

.metric {
    background: var(--gray-light);
    border-radius: 8px;
    padding: .6rem;
    text-align: center
}

.metric-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy)
}

.metric-lbl {
    font-size: .65rem;
    color: var(--gray);
    font-weight: 500
}

.floating-card {
    background: white;
    border-radius: 12px;
    padding: .75rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    position: absolute
}

.fc-alert {
    bottom: 40px;
    left: -30px;
    width: 170px;
    animation: card-float 7s ease-in-out infinite .5s
}

.fc-route {
    top: 40px;
    right: -20px;
    width: 155px;
    animation: card-float 5s ease-in-out infinite 1.5s
}

@keyframes card-float {

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

    50% {
        transform: translateY(-8px)
    }
}

.fc-label {
    font-size: .65rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .3rem
}

.fc-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .25rem
}

.fc-bar-track {
    background: #f1f5f9;
    border-radius: 4px;
    height: 5px;
    overflow: hidden
}

.fc-bar-fill {
    height: 100%;
    border-radius: 4px;
    animation: bar-grow 1.5s var(--ease) forwards 1.5s;
    transform-origin: left;
    transform: scaleX(0)
}

.fc-bar-fill.green {
    background: var(--green)
}

.fc-bar-fill.orange {
    background: #f59e0b
}

.fc-bar-fill.red {
    background: #ef4444
}

@keyframes bar-grow {
    to {
        transform: scaleX(1)
    }
}

.fc-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px
}

.tag-green {
    background: var(--green-light);
    color: var(--green-dark)
}

.tag-orange {
    background: #fef3c7;
    color: #92400e
}

/* ── SECTION BASE ── */
section {
    padding: 100px 5vw
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    margin-bottom: 1rem
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 2px
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
    color: var(--navy)
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 580px
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

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

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* ── PROCESS ── */
.process-section {
    background: var(--gray-light)
}

.process-header {
    text-align: center;
    margin-bottom: 5rem
}

.process-header .section-desc {
    margin: 0 auto
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative
}

.process-connector {
    position: absolute;
    top: 52px;
    left: calc(33.33% - 10px);
    width: calc(33.33% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green));
    z-index: 0
}

.process-connector-2 {
    left: calc(66.66% - 10px)
}

.step {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(22, 163, 74, .1);
    transition: transform .3s, box-shadow .3s
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(22, 163, 74, .12)
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(22, 163, 74, .2)
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--navy)
}

.step p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.7
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem
}

.step-anim {
    border-radius: 10px;
    background: var(--gray-light);
    padding: 1rem;
    margin-top: 1.25rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center
}

/* ── BIN ANIMATION ── */
.bin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.bin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.bin-body {
    width: 24px;
    border-radius: 3px 3px 5px 5px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
    height: 30px
}

.bin-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 4px 4px;
    transition: height .5s var(--ease)
}

.bin-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--gray)
}

.fill-low {
    background: #22c55e
}

.fill-mid {
    background: #f59e0b
}

.fill-high {
    background: #ef4444
}

/* Animation route mini */
.route-anim-container {
    position: relative;
    width: 100%;
    height: 56px
}

.route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: route-move 3s linear infinite
}

@keyframes route-move {
    0% {
        left: 0;
        opacity: 0
    }

    5% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        left: calc(100% - 10px);
        opacity: 0
    }
}

.route-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-mid), var(--green));
    border-radius: 2px;
    transform: translateY(-50%)
}

.route-stops {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%)
}

.route-stop {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--green);
    flex-shrink: 0
}

/* Co2 meter */
.co2-meter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%
}

.co2-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray);
    font-weight: 500
}

.co2-row span:last-child {
    margin-left: auto;
    font-weight: 700;
    color: var(--navy)
}

.co2-bar-track {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
    height: 6px;
    overflow: hidden
}

.co2-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--green);
    animation: bar-grow 2s var(--ease) forwards
}

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

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s var(--ease);
    cursor: default
}

.feature-card:hover {
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(22, 163, 74, .1);
    transform: translateY(-4px)
}

.feature-card:hover .feature-icon {
    background: var(--green);
    color: white
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all .3s
}

.feature-icon svg {
    width: 26px;
    height: 26px
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--navy)
}

.feature-card p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.7
}

/* ── ACTORS ── */
.actors-section {
    background: var(--navy);
    color: white
}

.actors-section h2 {
    color: white
}

.actors-section .section-label {
    color: var(--green-mid)
}

.actors-section .section-label::before {
    background: var(--green-mid)
}

.actors-section .section-desc {
    color: rgba(255, 255, 255, .6)
}

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

.actor-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, .04);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.actor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, .1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s
}

.actor-card:hover {
    border-color: rgba(22, 163, 74, .4);
    transform: translateY(-4px)
}

.actor-card:hover::before {
    opacity: 1
}

.actor-emoji {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block
}

.actor-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: white
}

.actor-card p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.actor-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.actor-perks li {
    font-size: .825rem;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: .6rem
}

.actor-perks li::before {
    content: '✓';
    color: var(--green-mid);
    font-weight: 700;
    flex-shrink: 0
}

/* ── STATS ── */
.stats-section {
    background: white
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center
}

.stat-card {
    padding: 2.5rem 1rem;
    border-radius: 20px;
    background: var(--gray-light);
    position: relative;
    overflow: hidden
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--green-light);
    opacity: .5
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.04em;
    line-height: 1
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green)
}

.stat-label {
    font-size: .875rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: .5rem
}

/* ── PROCESS FLOW ── */
.flow-section {
    background: linear-gradient(180deg, #f0fdf4 0%, white 100%)
}

.flow-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.flow-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2.5rem
}

.flow-step:last-child {
    padding-bottom: 0
}

.flow-step-line {
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green), var(--green-light));
    border-radius: 2px
}

.flow-step:last-child .flow-step-line {
    display: none
}

.flow-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    position: relative;
    z-index: 1
}

.flow-step-icon svg {
    width: 20px;
    height: 20px
}

.flow-step.active .flow-step-icon {
    background: var(--green);
    color: white
}

.flow-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .35rem
}

.flow-step-content p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65
}

.flow-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .1);
    overflow: hidden;
    border: 1px solid #e2e8f0
}

.flow-mockup-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.flow-mockup-body {
    padding: 1.5rem
}

.fm-route-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.fm-route-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: var(--gray-light);
    border-radius: 10px;
    cursor: default;
    transition: all .3s
}

.fm-route-item:hover {
    background: var(--green-light);
    border-color: var(--green)
}

.fm-route-num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--green);
    color: white;
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fm-route-info {
    flex: 1
}

.fm-route-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy)
}

.fm-route-meta {
    font-size: .75rem;
    color: var(--gray)
}

.fm-route-badge {
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 6px
}

.badge-planif {
    background: #dbeafe;
    color: #1d4ed8
}

.badge-cours {
    background: #fef3c7;
    color: #92400e
}

.badge-done {
    background: var(--green-light);
    color: var(--green-dark)
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--green) 0%, #0d9488 100%);
    text-align: center;
    padding: 120px 5vw
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem
}

.cta-section p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem
}

.btn-white {
    background: white;
    color: var(--green);
    padding: .9rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
}

.btn-white-outline {
    color: white;
    border: 2px solid rgba(255, 255, 255, .5);
    padding: .85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
    margin-left: 1rem
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: white
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .5);
    padding: 60px 5vw 40px
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1rem
}

.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    max-width: 280px
}

.footer-col h4 {
    font-size: .875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem
}

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

.footer-col a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s
}

.footer-col a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-visual {
        height: 320px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto
    }

    .dashboard-card-main {
        width: 280px
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .process-connector,
    .process-connector-2 {
        display: none
    }

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

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

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

    .flow-visual {
        grid-template-columns: 1fr;
        gap: 3rem
    }

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

    .nav-links {
        display: none
    }
}

@media(max-width:600px) {
    .features-grid {
        grid-template-columns: 1fr
    }

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

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

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

    .cta-section p {
        font-size: 1rem
    }

    .btn-white-outline {
        margin-left: 0;
        margin-top: 1rem
    }
}