:root {
    --blue: #03a9f5;
    --blue-deep: #237afe;
    --indigo: #3264f5;
    --purple: #7004bc;
    --magenta: #f033b5;
    --pink: #f2a2af;
    --orange: #ff7a3c;
    --bg: #fbfbfe;
    --bg-2: #f3f4fb;
    --card: #ffffff;
    --text: #130f2c;
    --muted: #5b5880;
    --faint: #9b98ba;
    --line: rgba(19, 15, 44, .12);
    --line-soft: rgba(19, 15, 44, .07);
    --surface: #ffffff;
    --shadow: 0 18px 50px -26px rgba(35, 25, 90, .30);
    --shadow-sm: 0 10px 30px -20px rgba(35, 25, 90, .28);
    --grad-spectrum: linear-gradient(110deg, #03a9f5 0%, #3264f5 32%, #7004bc 60%, #f033b5 100%);
    --grad-bg1: linear-gradient(120deg, #3264f5, #7004bc);
    --grad-bg2: linear-gradient(120deg, #237afe, #03a9f5);
    --grad-pink: linear-gradient(120deg, #f033b5, #f2a2af);
    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --body: 'Hanken Grotesk', system-ui, sans-serif;
    --mono: 'Space Mono', ui-monospace, monospace;
    --r: 18px;
    --r-lg: 26px;
    --maxw: 1180px;
}

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

html {
    scroll-behavior: auto
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(640px 540px at 10% -10%, rgba(50, 100, 245, .14), transparent 60%),
    radial-gradient(700px 580px at 94% 2%, rgba(112, 4, 188, .11), transparent 60%),
    radial-gradient(760px 640px at 80% 96%, rgba(240, 51, 181, .09), transparent 62%);
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2
}

section {
    position: relative;
    z-index: 2
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-deep);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 22px
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--blue-deep);
    opacity: .6
}

.spectrum {
    background: var(--grad-spectrum);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.pinkgrad {
    background: var(--grad-pink);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--text)
}

.sec-h {
    font-size: clamp(30px, 4.6vw, 54px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.04
}

.lead {
    color: var(--muted);
    font-size: clamp(16px, 1.55vw, 19px);
    max-width: 60ch
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 100px;
    border: 0;
    cursor: pointer;
    transition: .25s;
    position: relative
}

.btn-primary {
    background: var(--grad-bg2);
    color: #fff;
    box-shadow: 0 12px 30px -10px rgba(3, 169, 245, .55)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px -10px rgba(48, 100, 245, .6)
}

.btn-ghost {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line)
}

.btn-ghost:hover {
    border-color: rgba(19, 15, 44, .3);
    box-shadow: var(--shadow-sm)
}

.btn .arr {
    transition: transform .25s
}

.btn:hover .arr {
    transform: translateX(4px)
}

header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: .3s;
    padding: 18px 0
}

header.nav.scrolled {
    background: rgba(251, 251, 254, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 0
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.nav-logo img {
    height: 42px;
    width: auto
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center
}

.nav-links a {
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 500;
    transition: .2s
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-bg2);
    color: #fff;
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: .25s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(3, 169, 245, .6)
}

.burger {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    color: var(--text);
    font-size: 20px;
    cursor: pointer
}

.hero {
    padding: 170px 0 90px;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 54px;
    align-items: center
}

.hero h1 {
    font-size: clamp(38px, 5.6vw, 72px);
    margin-bottom: 26px
}

.hero .lead {
    margin-bottom: 34px;
    font-size: clamp(16px, 1.7vw, 20px)
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 9px 16px 9px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted)
}

.price-tag b {
    color: var(--text);
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px
}

.price-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1fbd7e;
    box-shadow: 0 0 0 4px rgba(31, 189, 126, .16)
}

.hero-trust {
    display: flex;
    gap: 26px;
    margin-top: 38px;
    flex-wrap: wrap
}

.hero-trust div {
    display: flex;
    flex-direction: column
}

.hero-trust b {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.02em
}

.hero-trust span {
    color: var(--faint);
    font-size: 13px
}

.diag {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--card);
    padding: 26px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.diag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: var(--grad-spectrum);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .9;
    pointer-events: none
}

.diag-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    top: -120px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(3, 169, 245, .12), transparent);
    animation: scan 4.2s ease-in-out infinite
}

@keyframes scan {
    0% {
        top: -120px
    }
    55% {
        top: 100%
    }
    100% {
        top: 100%
    }
}

.diag-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.diag-top .mono {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--faint)
}

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

.diag-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block
}

.diag-body {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-bottom: 22px
}

.gauge {
    --val: 0;
    position: relative;
    width: 124px;
    height: 124px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: conic-gradient(var(--magenta) calc(var(--val) * 1%), #e7e8f3 calc(var(--val) * 1%) 100%);
    transition: --val 1.6s ease
}

.gauge::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: #fff
}

.gauge-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.gauge-num b {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1
}

.gauge-num span {
    font-size: 10.5px;
    color: var(--faint);
    font-family: var(--mono);
    letter-spacing: .1em;
    margin-top: 3px
}

.diag-meta b {
    font-family: var(--display);
    font-size: 15px;
    display: block;
    margin-bottom: 4px
}

.diag-meta p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45
}

.diag-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
    list-style: none
}

.diag-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    opacity: 0;
    transform: translateX(-8px)
}

.diag-list li.on {
    opacity: 1;
    transform: none;
    transition: .5s
}

.diag-list .ic {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 13px;
    flex: 0 0 auto
}

.ic.warn {
    background: rgba(255, 122, 60, .16);
    color: #d9601f
}

.ic.risk {
    background: rgba(240, 51, 181, .14);
    color: #d4218f
}

.ic.ok {
    background: rgba(31, 189, 126, .16);
    color: #159768
}

.diag-list b {
    color: var(--text);
    font-weight: 700
}

.diag-list span {
    color: var(--faint)
}

.constat {
    padding: 24px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
    background: var(--bg-2)
}

.marq {
    display: flex;
    gap: 54px;
    white-space: nowrap;
    width: max-content;
    animation: marq 32s linear infinite
}

.marq span {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--faint);
    display: inline-flex;
    align-items: center;
    gap: 54px;
    letter-spacing: -.01em
}

.marq span::after {
    content: "●";
    color: var(--magenta);
    font-size: 9px;
    opacity: .8
}

@keyframes marq {
    to {
        transform: translateX(-50%)
    }
}

.block {
    padding: 104px 0
}

.head-wrap {
    max-width: 760px;
    margin-bottom: 60px
}

.head-wrap .sec-h {
    margin-bottom: 18px
}

.offer-grid {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 48px;
    align-items: center
}

.offer-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px
}

.offer-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--muted)
}

.offer-points .ck {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: var(--grad-bg2);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    flex: 0 0 auto;
    margin-top: 2px
}

.offer-points b {
    color: var(--text);
    font-weight: 700
}

.pricecard {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    background: var(--card);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.pricecard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: var(--grad-spectrum);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.pricecard .glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--grad-bg1);
    filter: blur(80px);
    opacity: .16;
    top: -90px;
    right: -60px;
    pointer-events: none
}

.pc-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

.pc-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 14px 0 6px
}

.pc-price b {
    font-family: var(--display);
    font-size: 74px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: .9
}

.pc-price .cur {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 800;
    color: var(--magenta)
}

.pc-price .old {
    font-size: 15px;
    color: var(--faint);
    text-decoration: line-through;
    margin-bottom: 10px
}

.pc-sub {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 26px
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px
}

.pc-list li {
    display: flex;
    gap: 11px;
    font-size: 14.5px;
    color: var(--muted)
}

.pc-list i {
    color: var(--blue-deep);
    font-style: normal
}

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

.pc-foot {
    text-align: center;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--faint)
}

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

.step {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 26px;
    background: var(--card);
    transition: .3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.step .idx {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .18em;
    color: var(--blue-deep);
    margin-bottom: 24px;
    display: block
}

.step .ico {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--grad-bg1);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 22px;
    box-shadow: 0 14px 28px -12px rgba(112, 4, 188, .6)
}

.step:nth-child(2) .ico {
    background: var(--grad-bg2);
    box-shadow: 0 14px 28px -12px rgba(3, 169, 245, .5)
}

.step:nth-child(3) .ico {
    background: var(--grad-pink);
    box-shadow: 0 14px 28px -12px rgba(240, 51, 181, .5)
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px
}

.step p {
    color: var(--muted);
    font-size: 15px
}

.nodes-svg {
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none
}

.deliv {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.dcard {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 34px 30px;
    background: var(--card);
    transition: .3s;
    box-shadow: var(--shadow-sm)
}

.dcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.dcard .ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 21px;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    color: var(--blue-deep);
    background: var(--bg-2)
}

.dcard h3 {
    font-size: 21px;
    margin-bottom: 12px
}

.dcard p {
    color: var(--muted);
    font-size: 15px
}

.apres {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 54px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(48, 100, 245, .07), rgba(112, 4, 188, .07), rgba(240, 51, 181, .05));
    box-shadow: var(--shadow-sm)
}

.apres .glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--grad-bg1);
    filter: blur(100px);
    opacity: .12;
    bottom: -160px;
    left: -90px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: .2s
}

.chip:hover {
    box-shadow: var(--shadow-sm);
    color: var(--text)
}

.chip i {
    font-style: normal;
    color: var(--blue-deep)
}

.team {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.tcard {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    display: flex;
    gap: 22px;
    align-items: center;
    background: var(--card);
    transition: .3s;
    box-shadow: var(--shadow-sm)
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.tphoto {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    flex: 0 0 auto
}

.tphoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: var(--bg-2)
}

.tcard h3 {
    font-size: 20px;
    margin-bottom: 3px
}

.tcard .role {
    color: var(--blue-deep);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.tcard .li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13.5px;
    transition: .2s
}

.tcard .li:hover {
    color: var(--text)
}

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

.quote {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 28px;
    background: var(--card);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm)
}

.quote .stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 16px
}

.quote p {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.65;
    flex: 1
}

.quote .who {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft)
}

.quote .who b {
    font-family: var(--display);
    font-size: 16px;
    display: block
}

.quote .who span {
    color: var(--faint);
    font-size: 13px
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 54px
}

.logos .lg {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 22px;
    display: grid;
    place-items: center;
    height: 62px;
    box-shadow: var(--shadow-sm)
}

.logos .lg img {
    max-height: 30px;
    width: auto;
    object-fit: contain
}

.final {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    background: var(--grad-bg1);
    box-shadow: var(--shadow)
}

.final-in {
    display: grid;
    grid-template-columns:1.1fr .9fr
}

.final-l {
    padding: 58px 50px
}

.final-l h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    color: #fff;
    margin-bottom: 18px
}

.final-l p {
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    max-width: 42ch;
    margin-bottom: 30px
}

.final-l .btn-primary {
    background: #fff;
    color: var(--purple)
}

.final-l .btn-primary:hover {
    box-shadow: 0 16px 44px -12px rgba(0, 0, 0, .35)
}

.final-r {
    background: rgba(7, 6, 15, .18);
    padding: 58px 46px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(4px)
}

.cinfo {
    display: flex;
    gap: 15px;
    align-items: flex-start
}

.cinfo .ic {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #fff;
    flex: 0 0 auto
}

.cinfo b {
    display: block;
    color: #fff;
    font-family: var(--display);
    font-size: 15px;
    margin-bottom: 3px
}

.cinfo p, .cinfo a {
    color: rgba(255, 255, 255, .88);
    font-size: 14.5px
}

.cinfo a:hover {
    color: #fff
}

footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line-soft);
    margin-top: 104px
}

.foot-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.foot-in img {
    height: 42px;
    width: auto
}

.foot-in .cr {
    color: var(--faint);
    font-size: 13px
}

.foot-in .soc {
    display: flex;
    gap: 14px
}

.foot-in .soc a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: .2s;
    background: #fff
}

.foot-in .soc a:hover {
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px)
}

.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: .8s cubic-bezier(.2, .7, .2, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

@media (max-width: 920px) {
    .hero-grid, .offer-grid, .final-in {
        grid-template-columns:1fr
    }

    .steps, .deliv, .team, .tg {
        grid-template-columns:1fr
    }

    .nodes-svg {
        display: none
    }

    .nav-links {
        display: none
    }

    .burger {
        display: grid;
        place-items: center
    }

    .hero {
        padding: 140px 0 70px
    }

    .block {
        padding: 74px 0
    }

    .apres {
        padding: 36px 26px
    }

    .final-l, .final-r {
        padding: 40px 30px
    }
}

.mnav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(251, 251, 254, .98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

.mnav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto
}

.mnav a {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
    color: var(--text)
}

.mnav .close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border: 1px solid var(--line);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--text);
    font-size: 22px;
    cursor: pointer
}

/* ===== navbar (logo blanc, dégradé au scroll, liens animés) ===== */
.nav-logo img {
    height: 40px
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    position: relative
}

.nav-links a:hover {
    color: #fff
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: right .32s cubic-bezier(.2, .7, .2, 1)
}

.nav-links a:hover::after {
    right: 0
}

header.nav.scrolled {
    background: linear-gradient(120deg, #7004bc, #3264f5);
    border-bottom: 0;
    box-shadow: 0 12px 30px -16px rgba(48, 16, 120, .7)
}

.burger {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff
}

.nav-cta {
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .45)
}

/* ===== hero : dégradé + formes flottantes + nuage ===== */
.hero-rev {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 96px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #3264f5 0%, #5a36cf 52%, #7004bc 100%)
}

.hero-rev::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(58% 55% at 50% 42%, rgba(240, 51, 181, .20), transparent 70%)
}

.hero-rev-in {
    position: relative;
    z-index: 3;
    max-width: 900px
}

.hero-rev-tag {
    margin: 0 auto 26px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp .9s 0s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-title {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.02;
    font-size: clamp(40px, 6.2vw, 78px);
    color: #fff;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp .9s .14s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-title .pinkgrad {
    background: linear-gradient(120deg, #ffd6ee, #f2a2af 55%, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-rev-lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.7vw, 20px);
    max-width: 62ch;
    margin: 0 auto 36px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp .9s .28s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp .9s .42s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 46px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp .9s .56s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-trust div {
    display: flex;
    flex-direction: column
}

.hero-rev-trust b {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff
}

.hero-rev-trust span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px
}

@keyframes heroUp {
    to {
        opacity: 1;
        transform: none
    }
}

.btn-glass {
    background: rgba(255, 255, 255, .13);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .42)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px)
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none
}

.hero-shapes .cloud {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: min(720px, 86vw);
    opacity: .16;
    animation: floaty 11s ease-in-out infinite
}

.hero-shapes .sh {
    position: absolute;
    width: 64px;
    opacity: .92;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .18))
}

.sh1 {
    top: 17%;
    left: 11%;
    width: 72px;
    animation: spin 19s linear infinite
}

.sh2 {
    top: 23%;
    right: 13%;
    width: 50px;
    animation: sway 6.5s ease-in-out infinite
}

.sh3 {
    bottom: 24%;
    left: 16%;
    width: 74px;
    animation: floaty 7s ease-in-out infinite
}

.sh4 {
    top: 42%;
    right: 19%;
    width: 56px;
    animation: floaty 9s ease-in-out infinite
}

.sh5 {
    bottom: 16%;
    right: 12%;
    width: 44px;
    animation: spin 24s linear infinite reverse
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-13deg)
    }
    50% {
        transform: rotate(13deg)
    }
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(-12px)
    }
    50% {
        transform: translateY(12px)
    }
}

.hero-scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, .9);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 9px
}

.hero-scroll span {
    animation: bob 1.6s ease-in-out infinite
}

@keyframes bob {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(5px)
    }
}

/* ===== section aperçu (carte de diagnostic) ===== */
.preview-grid {
    display: grid;
    grid-template-columns:.82fr 1.18fr;
    gap: 48px;
    align-items: center
}

/* ===== menu plein écran animé ===== */
.mnav {
    background: linear-gradient(150deg, rgba(48, 100, 245, .98), rgba(112, 4, 188, .98))
}

.mnav .close {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .4);
    color: #fff
}

.mnav a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px)
}

.mnav a::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55)
}

.mnav.open a {
    animation: mIn .55s cubic-bezier(.2, .7, .2, 1) forwards
}

.mnav.open a:nth-of-type(1) {
    animation-delay: .06s
}

.mnav.open a:nth-of-type(2) {
    animation-delay: .12s
}

.mnav.open a:nth-of-type(3) {
    animation-delay: .18s
}

.mnav.open a:nth-of-type(4) {
    animation-delay: .24s
}

.mnav.open a:nth-of-type(5) {
    animation-delay: .30s
}

.mnav.open a:nth-of-type(6) {
    animation-delay: .36s
}

@keyframes mIn {
    to {
        opacity: 1;
        transform: none
    }
}

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

    /* En mobile, l'aperçu du rapport (image) passe sous le texte */
    .preview-grid .diag {
        order: 2
    }

    .hero-rev-trust {
        gap: 28px
    }

    .hero-shapes .sh {
        width: 46px !important
    }
}

/* ===== hero deux colonnes + logo nuage + prix barré ===== */
.hero-rev {
    text-align: left
}

.hero-rev-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
    position: relative;
    z-index: 3
}

.hero-rev-in {
    flex: 1;
    max-width: 620px;
    margin: 0
}

.hero-rev-tag {
    margin: 0 0 26px
}

.hero-rev-lead {
    margin: 0 0 36px
}

.hero-rev-cta {
    justify-content: flex-start
}

.hero-rev-trust {
    justify-content: flex-start
}

.hero-rev-visual {
    flex: 0 0 auto;
    width: min(440px, 40vw);
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp 1s .5s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-rev-visual img {
    width: 100%;
    filter: drop-shadow(0 34px 60px rgba(20, 8, 60, .45));
    animation: floaty 9s ease-in-out infinite
}

.price-tag s {
    color: var(--faint);
    text-decoration: line-through;
    font-family: var(--body);
    font-size: 13px;
    margin-left: 3px
}

@media (max-width: 920px) {
    .hero-rev {
        text-align: center
    }

    .hero-rev-wrap {
        flex-direction: column-reverse;
        gap: 36px
    }

    .hero-rev-in {
        max-width: 100%
    }

    .hero-rev-tag, .hero-rev-lead {
        margin-left: auto;
        margin-right: auto
    }

    .hero-rev-cta, .hero-rev-trust {
        justify-content: center
    }

    .hero-rev-visual {
        width: min(280px, 66vw)
    }
}

html {
    scroll-padding-top: 88px
}

.nav-links {
    gap: 24px
}

.price-tag {
    padding: 9px 18px
}

.hero-rev-title {
    font-size: clamp(38px, 5.4vw, 66px);
    animation-delay: 0s
}

.hero-rev-tag {
    animation-delay: .14s
}

.mnav.open a:nth-of-type(7) {
    animation-delay: .42s
}

/* emoji + titre sur la même ligne (déroulé & livrables) */
.step-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.step .ico, .dcard .ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 20px;
    margin-bottom: 0;
    flex: 0 0 auto
}

.step-head h3 {
    margin-bottom: 0
}

.step .idx {
    margin-bottom: 18px
}

/* livrables : même style de panneau que le déroulé */
.dcard {
    padding: 30px 26px
}

.dcard:hover {
    transform: translateY(-6px)
}

.dcard .ico {
    background: var(--grad-bg2);
    color: #fff;
    border: 0;
    box-shadow: 0 14px 28px -12px rgba(3, 169, 245, .5)
}

.deliv .dcard:nth-child(2) .ico {
    background: var(--grad-pink);
    box-shadow: 0 14px 28px -12px rgba(240, 51, 181, .5)
}

/* puces expertise : pastille dégradé uniforme */
.chip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-bg2);
    display: inline-block
}

/* aperçu : carte à gauche (plus étroite), texte à droite */
.preview-grid {
    grid-template-columns:.82fr 1.18fr
}

/* clients : carrousel 3 à la fois */
.carousel {
    overflow: hidden;
    padding: 6px 0
}

.ctrack {
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
    will-change: transform
}

.ctrack .quote {
    flex: 0 0 calc((100% - 48px) / 3)
}

.who-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft)
}

.who-logo {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--line);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 7px
}

.who-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.who-row .who {
    margin: 0;
    padding: 0;
    border: 0
}

.cnav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px
}

.cnav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: .2s
}

.cnav button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.cnav button:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-sm)
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.faq details {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text)
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary .q-ico {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-2);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--blue-deep);
    transition: .3s;
    line-height: 1
}

.faq details[open] summary .q-ico {
    transform: rotate(45deg);
    background: var(--grad-bg2);
    color: #fff
}

.faq .a {
    padding: 0 26px 24px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6
}

/* bouton retour en haut */
.totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 55;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: var(--grad-bg2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 12px 30px -10px rgba(3, 169, 245, .7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .3s
}

.totop.show {
    opacity: 1;
    pointer-events: auto;
    transform: none
}

/* footer */
footer {
    padding: 32px 0 24px;
    margin-top: 90px
}

/* étoiles des recommandations mises en valeur */
.quote .stars {
    font-size: 18px;
    letter-spacing: 5px;
    margin-bottom: 18px;
    line-height: 1;
    background: linear-gradient(120deg, #ffc24a, #ff7a3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 7px rgba(255, 138, 60, .42))
}

@media (min-width: 921px) and (max-width: 1100px) {
    .ctrack .quote {
        flex: 0 0 calc((100% - 24px) / 2)
    }
}

@media (max-width: 920px) {
    .ctrack .quote {
        flex: 0 0 100%
    }

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

/* ===== classes utilitaires (remplacent les style="" inline) ===== */
.pt-0 { padding-top: 0 }
.mt-16 { margin-top: 16px }
.mt-18 { margin-top: 18px }
.c-accent { color: var(--blue-deep) }
.nav-actions { display: flex; align-items: center; gap: 12px }
.apres-body { position: relative; max-width: 640px }
.diag-dots i.d-r { background: #ff5f57 }
.diag-dots i.d-y { background: #febc2e }
.diag-dots i.d-g { background: #28c840 }

.mnav a.c-accent { color: var(--blue-deep) }
