:root {
    --ink: #0A0F1E;
    --ink-2: #0E1530;
    --ink-3: #141d3d;
    --paper: #F5F6FB;
    --white: #FFFFFF;
    --brand: #4361FF;
    --brand-2: #7C92FF;
    --accent: #15D6A6;
    --accent-2: #00E7CF;
    --text: #0D1326;
    --muted: #576081;
    --text-d: #E9EDFB;
    --muted-d: #94A1C4;
    --line: #E5E8F2;
    --line-d: rgba(255,255,255,.10);
    --radius: 18px;
    --shadow: 0 18px 50px -20px rgba(11,18,40,.35);
    --shadow-sm: 0 8px 24px -12px rgba(11,18,40,.25);
    --maxw: 1180px;
    --grad: linear-gradient(120deg,var(--brand) 0%,#5a78ff 45%,var(--accent) 110%);
    --grad-soft: linear-gradient(120deg,rgba(67,97,255,.16),rgba(21,214,166,.16));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Manrope',system-ui,sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque',sans-serif;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.02em
}

a {
    text-decoration: none;
    color: inherit
}

img, svg {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

section {
    position: relative
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    font-size: .98rem;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s,background .25s,color .25s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(67,97,255,.6)
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 38px -10px rgba(67,97,255,.7)
    }

.btn-ghost {
    background: rgba(255,255,255,.06);
    color: var(--text-d);
    border-color: var(--line-d)
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.12);
        transform: translateY(-2px)
    }

.btn-light {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
    box-shadow: var(--shadow-sm)
}

    .btn-light:hover {
        transform: translateY(-2px)
    }

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: rgba(67,97,255,.35)
}

    .btn-outline:hover {
        background: rgba(67,97,255,.07);
        transform: translateY(-2px)
    }

.btn-lg {
    padding: 1rem 1.9rem;
    font-size: 1.05rem
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
}

    .eyebrow.on-dark {
        color: var(--accent-2)
    }

    .eyebrow .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
        box-shadow: 0 0 12px currentColor
    }

/* ---------- Nav ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .35s
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0
}

header.scrolled {
    background: rgba(10,15,30,.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-d)
}

    header.scrolled .nav {
        padding: .7rem 0
    }

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.45rem;
    color: #fff;
    letter-spacing: -.03em
}

    .brand .mark {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: var(--grad);
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 1.05rem;
        box-shadow: 0 8px 22px -8px rgba(67,97,255,.8);
    }

        .brand .mark i {
            transform: rotate(-8deg)
        }

    .brand b {
        background: linear-gradient(90deg,var(--brand-2),var(--accent-2));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

    .nav-links a {
        color: var(--muted-d);
        font-weight: 600;
        font-size: .96rem;
        transition: color .2s;
        position: relative
    }

        .nav-links a:hover {
            color: #fff
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--grad);
            transition: width .25s;
            border-radius: 2px
        }

        .nav-links a:hover::after {
            width: 100%
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: .8rem
}

.burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer
}

/* ---------- Hero ---------- */
.hero {
    background: radial-gradient(1200px 700px at 80% -10%,rgba(67,97,255,.28),transparent 60%), radial-gradient(900px 600px at 0% 20%,rgba(21,214,166,.16),transparent 55%), var(--ink);
    color: var(--text-d);
    padding: 11rem 0 6rem;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .5;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: clamp(2.5rem,5.2vw,4.1rem);
    color: #fff;
    margin: 1.3rem 0 1.2rem
}

    .hero h1 .grad {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.hero p.lead {
    font-size: 1.18rem;
    color: var(--muted-d);
    max-width: 33rem;
    margin-bottom: 2rem
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    color: var(--muted-d);
    font-size: .9rem
}

    .hero-trust .item {
        display: flex;
        align-items: center;
        gap: .5rem
    }

    .hero-trust i {
        color: var(--accent)
    }

.hero-visual {
    position: relative
}

.hv-card {
    position: relative;
    background: linear-gradient(165deg,rgba(20,29,61,.9),rgba(10,15,30,.92));
    border: 1px solid var(--line-d);
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
}

.hv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem
}

.hv-dots {
    display: flex;
    gap: .4rem
}

    .hv-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,.18)
    }

.hv-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(21,214,166,.1);
    padding: .28rem .6rem;
    border-radius: 999px
}

.hv-tiles {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .6rem;
    margin-bottom: 1rem
}

.hv-tile {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line-d);
    border-radius: 12px;
    padding: .7rem;
    text-align: center;
    color: var(--muted-d);
    font-size: .68rem;
    font-weight: 600
}

    .hv-tile i {
        display: block;
        font-size: 1.15rem;
        margin-bottom: .35rem;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(14,21,48,.92);
    border: 1px solid var(--line-d);
    border-radius: 14px;
    padding: .7rem .95rem;
    box-shadow: 0 20px 40px -18px rgba(0,0,0,.7);
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(8px);
}

    .float-badge i {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        display: grid;
        place-items: center;
        font-size: .85rem
    }

.fb-1 {
    top: -22px;
    right: -14px;
    animation: floaty 6s ease-in-out infinite
}

    .fb-1 i {
        background: rgba(21,214,166,.16);
        color: var(--accent-2)
    }

.fb-2 {
    bottom: -20px;
    left: -18px;
    animation: floaty 7s ease-in-out infinite .6s
}

    .fb-2 i {
        background: rgba(67,97,255,.18);
        color: var(--brand-2)
    }

@keyframes floaty {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* ---------- Referentiels marquee ---------- */
.refs {
    background: var(--ink-2);
    border-top: 1px solid var(--line-d);
    border-bottom: 1px solid var(--line-d);
    padding: 1.6rem 0;
    overflow: hidden
}

.refs-label {
    text-align: center;
    color: var(--muted-d);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem
}

.marquee {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scrollx 26s linear infinite;
    width: max-content
}

    .marquee span {
        color: var(--text-d);
        font-family: 'Bricolage Grotesque';
        font-weight: 600;
        font-size: 1.15rem;
        opacity: .72;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: .6rem
    }

        .marquee span i {
            color: var(--accent)
        }

@keyframes scrollx {
    to {
        transform: translateX(-50%)
    }
}

/* ---------- Section heads ---------- */
.section-pad {
    padding: 6rem 0
}

.head {
    max-width: 42rem;
    margin: 0 auto 3.4rem;
    text-align: center
}

    .head h2 {
        font-size: clamp(2rem,3.6vw,2.9rem);
        margin: 1rem 0 1rem
    }

    .head p {
        color: var(--muted);
        font-size: 1.1rem
    }

/* ---------- Value props ---------- */
.values {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.2rem
}

.value {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    transition: transform .3s,box-shadow .3s,border-color .3s
}

    .value:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

    .value .ic {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: var(--grad-soft);
        display: grid;
        place-items: center;
        font-size: 1.3rem;
        color: var(--brand);
        margin-bottom: 1.1rem
    }

    .value h3 {
        font-size: 1.18rem;
        margin-bottom: .5rem
    }

    .value p {
        color: var(--muted);
        font-size: .96rem
    }

/* ---------- Modules ---------- */
#modules {
    background: linear-gradient(180deg,var(--paper),#eef0f8)
}

.modules {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.3rem
}

.mod {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.9rem;
    overflow: hidden;
    transition: transform .3s,box-shadow .3s,border-color .3s;
}

    .mod::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: var(--grad);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s
    }

    .mod:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

        .mod:hover::before {
            transform: scaleX(1)
        }

    .mod .ic {
        width: 56px;
        height: 56px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 1.2rem;
        box-shadow: 0 12px 26px -12px rgba(67,97,255,.5)
    }

    .mod h3 {
        font-size: 1.3rem;
        margin-bottom: .6rem
    }

    .mod p {
        color: var(--muted);
        font-size: .97rem;
        margin-bottom: 1rem
    }

    .mod ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: .5rem
    }

        .mod ul li {
            font-size: .8rem;
            font-weight: 600;
            color: var(--muted);
            background: var(--paper);
            border: 1px solid var(--line);
            padding: .3rem .7rem;
            border-radius: 999px
        }

.ic-g1 {
    background: linear-gradient(135deg,#4361FF,#7C92FF)
}

.ic-g2 {
    background: linear-gradient(135deg,#15D6A6,#00C2A8)
}

.ic-g3 {
    background: linear-gradient(135deg,#7C5CFF,#4361FF)
}

.ic-g4 {
    background: linear-gradient(135deg,#FF7A59,#FF5470)
}

.ic-g5 {
    background: linear-gradient(135deg,#0EA5E9,#4361FF)
}

.ic-g6 {
    background: linear-gradient(135deg,#F59E0B,#FF7A59)
}

.ic-g7 {
    background: linear-gradient(135deg,#15D6A6,#0EA5E9)
}

/* ---------- IA spotlight ---------- */
.ia {
    background: radial-gradient(900px 500px at 90% 0%,rgba(21,214,166,.2),transparent 55%), radial-gradient(800px 500px at 0% 100%,rgba(67,97,255,.22),transparent 55%), var(--ink);
    color: var(--text-d);
    overflow: hidden;
}

.ia-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 3.5rem;
    align-items: center
}

.ia h2 {
    color: #fff;
    font-size: clamp(2rem,3.6vw,2.9rem);
    margin: 1rem 0 1.2rem
}

    .ia h2 .grad {
        background: linear-gradient(90deg,var(--accent-2),var(--brand-2));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.ia p.lead {
    color: var(--muted-d);
    font-size: 1.12rem;
    margin-bottom: 1.8rem
}

.ia-feats {
    display: grid;
    gap: 1rem
}

.ia-feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line-d);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    transition: transform .25s,background .25s
}

    .ia-feat:hover {
        transform: translateX(6px);
        background: rgba(255,255,255,.07)
    }

    .ia-feat .ic {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--grad);
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 1.05rem
    }

    .ia-feat h4 {
        color: #fff;
        font-size: 1.05rem;
        margin-bottom: .2rem
    }

    .ia-feat p {
        color: var(--muted-d);
        font-size: .92rem;
        line-height: 1.5
    }

.ia-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px
}

/* ---------- How it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.6rem;
    counter-reset: s
}

.step {
    position: relative;
    padding: 2rem 1.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius)
}

    .step::before {
        counter-increment: s;
        content: "0" counter(s);
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 2.6rem;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: block;
        margin-bottom: .6rem
    }

    .step h3 {
        font-size: 1.25rem;
        margin-bottom: .5rem
    }

    .step p {
        color: var(--muted);
        font-size: .97rem
    }

/* ---------- Security band ---------- */
.security {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.sec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1.6rem
}

.sec-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start
}

    .sec-item i {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--grad-soft);
        color: var(--brand);
        display: grid;
        place-items: center;
        font-size: 1.05rem
    }

    .sec-item h4 {
        font-size: 1rem;
        margin-bottom: .15rem
    }

    .sec-item p {
        color: var(--muted);
        font-size: .88rem;
        line-height: 1.45
    }

/* ---------- Pricing ---------- */
#tarifs {
    background: linear-gradient(180deg,#eef0f8,var(--paper))
}

.plans {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.4rem;
    align-items: stretch
}

.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2.2rem 1.9rem;
    display: flex;
    flex-direction: column;
    transition: transform .3s,box-shadow .3s
}

    .plan:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow)
    }

    .plan.featured {
        border: 1.5px solid transparent;
        background: linear-gradient(#fff,#fff) padding-box,var(--grad) border-box;
        box-shadow: var(--shadow);
        position: relative
    }

        .plan.featured::after {
            content: "Le plus choisi";
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--grad);
            color: #fff;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .06em;
            padding: .35rem .9rem;
            border-radius: 999px;
            white-space: nowrap
        }

    .plan h3 {
        font-size: 1.5rem;
        margin-bottom: .3rem
    }

    .plan .ptag {
        color: var(--muted);
        font-size: .92rem;
        margin-bottom: 1.3rem;
        min-height: 2.6em
    }

    .plan .price {
        font-family: 'Bricolage Grotesque';
        font-weight: 800;
        font-size: 2.4rem;
        color: var(--text);
        line-height: 1
    }

        .plan .price small {
            font-size: .95rem;
            font-weight: 600;
            color: var(--muted);
            font-family: 'Manrope'
        }

    .plan .price-sub {
        color: var(--muted);
        font-size: .85rem;
        margin: .4rem 0 1.5rem
    }

    .plan ul {
        list-style: none;
        display: grid;
        gap: .7rem;
        margin-bottom: 1.8rem;
        flex: 1
    }

        .plan ul li {
            display: flex;
            gap: .6rem;
            align-items: flex-start;
            font-size: .93rem;
            color: var(--text)
        }

            .plan ul li i {
                color: var(--accent);
                margin-top: .25rem;
                font-size: .85rem
            }

            .plan ul li.muted {
                color: var(--muted)
            }

                .plan ul li.muted i {
                    color: var(--line)
                }

    .plan .btn {
        justify-content: center;
        width: 100%
    }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start
}

.contact-info h2 {
    font-size: clamp(2rem,3.4vw,2.7rem);
    margin: 1rem 0 1rem
}

.contact-info p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem
}

.ci-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.1rem
}

    .ci-item .ic {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        background: var(--grad-soft);
        color: var(--brand);
        display: grid;
        place-items: center;
        font-size: 1.1rem;
        flex-shrink: 0
    }

    .ci-item b {
        display: block;
        font-size: .98rem
    }

    .ci-item span {
        color: var(--muted);
        font-size: .92rem
    }

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow-sm)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.field {
    margin-bottom: 1.1rem
}

    .field label {
        display: block;
        font-size: .85rem;
        font-weight: 600;
        margin-bottom: .4rem;
        color: var(--text)
    }

    .field input, .field textarea, .field select {
        width: 100%;
        padding: .8rem 1rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        font-family: inherit;
        font-size: .95rem;
        background: var(--paper);
        transition: border-color .2s,box-shadow .2s;
    }

        .field input:focus, .field textarea:focus, .field select:focus {
            outline: none;
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(67,97,255,.12);
            background: #fff
        }

    .field textarea {
        resize: vertical;
        min-height: 120px
    }

.form .btn {
    width: 100%;
    justify-content: center
}

.form-note {
    font-size: .82rem;
    color: var(--muted);
    text-align: center;
    margin-top: .9rem
}

/* ---------- CTA band ---------- */
.cta-band {
    padding: 4.5rem 0
}

.cta-inner {
    background: var(--grad);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px -25px rgba(67,97,255,.6)
}

    .cta-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%23ffffff' fill-opacity='0.18'/%3E%3C/svg%3E")
    }

    .cta-inner h2 {
        font-size: clamp(1.9rem,3.4vw,2.7rem);
        position: relative;
        margin-bottom: .8rem
    }

    .cta-inner p {
        position: relative;
        opacity: .92;
        font-size: 1.1rem;
        max-width: 34rem;
        margin: 0 auto 1.8rem
    }

    .cta-inner .btn {
        position: relative
    }

/* ---------- Footer ---------- */
footer {
    background: var(--ink);
    color: var(--muted-d);
    padding: 4rem 0 2rem
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem
}

.foot-brand p {
    margin: 1rem 0 1.3rem;
    max-width: 22rem;
    font-size: .95rem
}

.foot-soc {
    display: flex;
    gap: .7rem
}

    .foot-soc a {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        background: rgba(255,255,255,.05);
        border: 1px solid var(--line-d);
        display: grid;
        place-items: center;
        color: var(--muted-d);
        transition: all .25s
    }

        .foot-soc a:hover {
            background: var(--grad);
            color: #fff;
            transform: translateY(-3px);
            border-color: transparent
        }

.foot-col h5 {
    color: #fff;
    font-family: 'Bricolage Grotesque';
    font-size: 1rem;
    margin-bottom: 1.1rem
}

.foot-col a {
    display: block;
    color: var(--muted-d);
    font-size: .93rem;
    margin-bottom: .7rem;
    transition: color .2s
}

    .foot-col a:hover {
        color: var(--accent-2)
    }

.foot-bottom {
    border-top: 1px solid var(--line-d);
    padding-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem
}

/* ---------- Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1),transform .7s cubic-bezier(.2,.8,.2,1)
}

    [data-reveal].in {
        opacity: 1;
        transform: none
    }

/* ---------- Responsive ---------- */
@media(max-width:980px) {
    .hero-grid, .ia-grid, .sec-grid, .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto
    }

    .values {
        grid-template-columns: repeat(2,1fr)
    }

    .modules, .steps, .plans {
        grid-template-columns: 1fr 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:680px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10,15,30,.97);
        backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 24px 1.5rem;
        border-bottom: 1px solid var(--line-d);
        transform: translateY(-130%);
        transition: transform .35s;
    }

        .nav-links.open {
            transform: translateY(0)
        }

        .nav-links a {
            padding: .9rem 0;
            width: 100%;
            border-bottom: 1px solid var(--line-d)
        }

    .burger {
        display: block
    }

    .nav-cta .btn-ghost {
        display: none
    }

    .values, .modules, .steps, .plans, .sec-list, .form-row, .foot-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 8.5rem 0 4.5rem
    }

    .section-pad {
        padding: 4rem 0
    }

    .cta-inner {
        padding: 2.5rem 1.5rem
    }
}
