:root {
    --red: #cc1433;
    --red-d: #a31029;
    --red-l: #e84060;
    --red-xl: #fdeaed;
    --ink: #14192F;
    --ink2: #2C3350;
    --muted: #646C86;
    --grey: #F3F4F8;
    --line: #E4E7EE;
    --white: #fff;
    --green: #0E9F6E;
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.13;
    color: var(--ink);
    letter-spacing: -.01em
}

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

section {
    scroll-margin-top: 84px
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

.kick {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    font-family: 'Poppins', sans-serif
}

.btn:hover {
    background: var(--red-d);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px rgba(204, 20, 51, .7)
}

.btn.lg {
    font-size: 15px;
    padding: 14px 24px
}

.btn.white {
    background: #fff;
    color: var(--red-d)
}

.btn.white:hover {
    background: var(--red-xl)
}

.btn.ghost {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--ink)
}

.btn.ghost:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: none
}

.btn.ghostw {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff
}

.btn.ghostw:hover {
    background: rgba(255, 255, 255, .14);
    box-shadow: none
}

:is(a,button):focus-visible {
    outline: 3px solid var(--red-l);
    outline-offset: 2px;
    border-radius: 8px
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 18px;
    z-index: 999;
    border-radius: 0 0 10px 0
}

.skip:focus {
    left: 0
}

/* ---------- header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink)
}

.brand-logo {
    height: 70px;
    width: auto;
    display: block
}

.brand .descr {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    border-left: 1px solid var(--line);
    padding-left: 13px
}

.navlinks {
    display: flex;
    gap: 6px;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500
}

.navlinks a {
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
    transition: .15s
}

.navlinks a:hover {
    color: var(--ink);
    background: var(--grey)
}

.navlinks a.active {
    color: var(--red-d);
    background: var(--red-xl)
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: .25s
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobmenu {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 10px 28px 18px;
    flex-direction: column;
    gap: 2px
}

.mobmenu.open {
    display: flex
}

.mobmenu a {
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--ink2)
}

.mobmenu a:hover {
    background: var(--grey)
}

.mobmenu .btn {
    margin-top: 10px
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e0203f 0%, #cc1433 45%, #8f0e24 100%);
    color: #fff;
    overflow: hidden;
    padding: 88px 0 96px
}

.streak {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: .5;
    z-index: 1;
    pointer-events: none
}

.streak span {
    position: absolute;
    height: 150%;
    top: -25%;
    width: 120px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
    transform: skewX(-16deg);
    filter: blur(3px)
}

.cross {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: #fff
}

.cross svg {
    width: 100%;
    height: auto;
    display: block
}

.hero .cross {
    right: -70px;
    top: -90px;
    width: 460px;
    opacity: .1
}

.hero .wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 54px;
    align-items: center
}

.hero .kick {
    color: #ffb3c0
}

.hero h1 {
    font-size: clamp(31px, 4vw, 47px);
    margin: 18px 0 0;
    color: #fff
}

.hero h1 .hl {
    background: rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 0 .12em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone
}

.hero p.sub {
    font-size: clamp(15px, 1.5vw, 17.5px);
    color: #fcc8d0;
    max-width: 54ch;
    margin: 22px 0 30px;
    font-weight: 300
}

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

.reassure {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #ffb3c0;
    margin-top: 22px;
    display: flex;
    gap: 10px 22px;
    flex-wrap: wrap
}

.reassure span {
    display: flex;
    align-items: center;
    gap: 8px
}

.reassure i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    flex-shrink: 0
}

/* cartographie */
.carto {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 34px 80px -30px rgba(80, 7, 20, .55);
    padding: 24px 24px 20px;
    color: var(--ink);
    position: relative
}

.carto .chead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.carto .ct {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink)
}

.carto .cx {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--grey);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap
}

.cgrid {
    display: grid;
    grid-template-columns:minmax(108px, 1.2fr) repeat(4, 1fr);
    gap: 6px;
    align-items: center
}

.cgrid .ch {
    font-family: 'Space Mono', monospace;
    font-size: 9.5px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    font-weight: 700;
    padding-bottom: 2px
}

.cgrid .rl {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink2);
    padding-right: 6px;
    line-height: 1.25
}

.cell {
    height: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .35s ease, transform .35s cubic-bezier(.2, .9, .3, 1.4)
}

.carto.on .cell {
    opacity: 1;
    transform: scale(1)
}

.cell.ok {
    background: #1aaf73
}

.cell.lo {
    background: var(--red)
}

.cell.no {
    background: #e8eaed;
    border: 1.5px dashed #ccc
}

.cell.rd {
    background: #116AF8;
    color: #fff
}

.cell.rd::after {
    content: "×2"
}

.cleg {
    display: flex;
    gap: 8px 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 11px;
    color: var(--muted)
}

.cleg span {
    display: flex;
    align-items: center;
    gap: 6px
}

.cleg i {
    width: 11px;
    height: 11px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0
}

.cleg .iok {
    background: #1aaf73
}

.cleg .ilo {
    background: var(--red)
}

.cleg .ino {
    background: #e8eaed;
    border: 1.5px dashed #ccc
}

.cleg .ird {
    background: #116AF8
}

.cfoot {
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    font-size: 12.5px;
    color: var(--ink2);
    display: flex;
    gap: 8px;
    align-items: baseline;
    flex-wrap: wrap
}

.cfoot b {
    font-family: 'Space Mono', monospace;
    color: var(--red-d);
    font-size: 14px;
    white-space: nowrap
}

/* ---------- sections ---------- */
.s-pad {
    padding: 84px 0
}

.s-head {
    max-width: 62ch;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 42px
}

.s-head h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin: 12px 0 0
}

.s-head p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 14px;
    font-weight: 400
}

/* problème */
.pgrid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: box-shadow .2s, transform .2s, border-color .2s
}

.pcard:hover {
    box-shadow: 0 18px 44px -26px rgba(80, 7, 20, .35);
    transform: translateY(-3px);
    border-color: #ddb8be
}

.pcost {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 14px
}

.pcard h3 {
    font-size: 19px;
    margin-bottom: 10px
}

.pcard p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400
}

/* preuve */
.proof {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 30px 28px;
    box-shadow: 0 18px 44px -30px rgba(80, 7, 20, .32)
}

.proof .extag {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--grey);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 18px
}

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

.pf {
    padding-right: 24px;
    border-right: 1px solid var(--line)
}

.pf:last-child {
    border-right: none
}

.pf .kindt {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px
}

.pf.certain .kindt {
    color: var(--green)
}

.pf.proj .kindt {
    color: var(--red)
}

.pf.struct .kindt {
    color: var(--ink2)
}

.pf .n {
    font-family: 'Space Mono', monospace;
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1px
}

.pf .l {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 400
}

.pnote {
    font-size: 12px;
    color: var(--muted);
    margin-top: 18px;
    font-weight: 400;
    font-style: italic
}

/* différence */
.band {
    background: linear-gradient(135deg, #b8112e, #8f0e24);
    color: #fff;
    position: relative;
    overflow: hidden
}

.band .cross {
    left: -90px;
    bottom: -150px;
    width: 440px;
    opacity: .09
}

.band .wrap {
    padding: 78px 28px;
    position: relative;
    z-index: 3
}

.band .kick {
    color: #ffb3c0
}

.band h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 12px 0 30px;
    max-width: 24ch
}

.vsgrid {
    display: grid;
    grid-template-columns:1fr auto 1fr;
    gap: 0;
    align-items: stretch
}

.vscard {
    padding: 28px 30px;
    border-radius: var(--radius)
}

.vscard h4 {
    font-size: 19px;
    margin-bottom: 11px;
    color: inherit
}

.vscard p {
    font-size: 14.5px;
    line-height: 1.62
}

.vscard.them {
    background: rgba(255, 255, 255, .08);
    color: #fcc8d0;
    border: 1px solid rgba(255, 255, 255, .14)
}

.vscard.them h4 {
    color: #fff
}

.vscard.us {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 24px 60px -28px rgba(40, 2, 8, .7)
}

.vscard.us h4, .vscard.us b {
    color: var(--red-d)
}

.vsx {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    color: #ff99a8;
    padding: 0 16px
}

/* piliers */
.pillars {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.pill {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 27px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden
}

.pill::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
    opacity: 0;
    transition: .2s
}

.pill:hover {
    box-shadow: 0 18px 44px -26px rgba(80, 7, 20, .35);
    transform: translateY(-3px);
    border-color: #ddb8be
}

.pill:hover::before {
    opacity: 1
}

.pill .pnum {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase
}

.pill h3 {
    font-size: 19px;
    margin-bottom: 10px
}

.pill p {
    font-size: 13.7px;
    color: var(--muted);
    font-weight: 400
}

.pill p b {
    color: var(--ink2)
}

/* méthode : timeline */
.steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
    position: relative
}

.steps::before {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: linear-gradient(90deg, var(--red-l), var(--red));
    opacity: .35;
    z-index: 0
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s
}

.step:hover {
    box-shadow: 0 18px 44px -26px rgba(80, 7, 20, .3);
    transform: translateY(-3px)
}

.step .sn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red-xl);
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Space Mono', monospace;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--red-xl)
}

.step:first-child .sn {
    background: var(--red);
    color: #fff
}

.step h3 {
    font-size: 17px;
    margin-bottom: 8px
}

.step p {
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 400;
    flex: 1
}

.tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 16px;
    align-self: flex-start
}

.tag.offert {
    background: var(--green);
    color: #fff
}

.tag.forf {
    background: var(--red-xl);
    color: var(--red-d)
}

.tag.abo {
    background: var(--ink);
    color: #fff
}

/* missions */
.mgrid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.mcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow .2s, transform .2s, border-color .2s
}

.mcard:hover {
    box-shadow: 0 18px 44px -26px rgba(80, 7, 20, .35);
    transform: translateY(-3px);
    border-color: #ddb8be
}

.mcard.lead {
    border: 1.5px solid var(--red);
    background: linear-gradient(180deg, #fff5f7, #fff)
}

.mcard .mn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mcard h3 {
    font-size: 19px;
    margin-bottom: 8px;
    line-height: 1.25
}

.mcard p {
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 400
}

.mcard .liv {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500
}

.mcard .liv b {
    color: var(--red-d)
}

/* bénéfices */
.values {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.val {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px
}

.val .vk {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--red)
}

.val:first-child .vk {
    color: var(--green)
}

.val:last-child .vk {
    color: var(--ink2)
}

.val h3 {
    font-size: 21px;
    margin-bottom: 10px
}

.val p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400
}

/* booking */
.book {
    display: grid;
    grid-template-columns:1fr 1.05fr;
    gap: 46px;
    align-items: start
}

.book .copy h2 {
    font-size: clamp(26px, 3.1vw, 36px)
}

.book .copy > p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 16px;
    font-weight: 400
}

.book .pts {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.book .pt {
    display: flex;
    gap: 12px;
    font-size: 15px
}

.book .pt i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    font-style: normal
}

.bookcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 24px 60px -34px rgba(163, 16, 41, .45);
    position: sticky;
    top: 96px
}

.bookcard .bh {
    font-size: 22px;
    font-weight: 700
}

.bookcard .bs {
    font-size: 14px;
    color: var(--muted);
    margin: 8px 0 20px;
    font-weight: 400
}

.altcontact {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin-top: 18px
}

.altcontact a {
    color: var(--red-d);
    font-weight: 600;
    border-bottom: 1px solid var(--red-l)
}

.calgate {
    min-height: 300px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 34px;
    color: var(--muted);
    font-size: 13.5px;
    background: var(--grey)
}

/* footer */
footer {
    background: #000;
    color: #aaa;
    padding: 52px 0 32px;
    font-size: 13px;
    position: relative;
    overflow: hidden
}

footer .cross {
    right: -60px;
    top: -80px;
    width: 300px;
    opacity: .08
}

footer .frow {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    z-index: 2
}

footer .brand {
    color: #fff
}

footer .brand-logo {
    height: 22px;
}

footer p {
    max-width: 46ch;
    line-height: 1.6;
    margin-top: 14px;
    font-weight: 300
}

footer .legal {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    font-size: 11.5px;
    color: #666;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    font-family: 'Space Mono', monospace
}

footer .legal a {
    border-bottom: 1px solid #444
}

footer .legal a:hover {
    color: #fff
}

/* cookies */
.cookie {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 200;
    background: var(--ink);
    color: #E6EAF5;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .55);
    max-width: 1124px;
    margin: 0 auto
}

.cookie p {
    font-size: 12.8px;
    color: #C7CEE2;
    max-width: 70ch;
    font-weight: 300;
    line-height: 1.55
}

.cookie a {
    color: #fff;
    border-bottom: 1px solid var(--red-l);
    cursor: pointer
}

.cookie .cbtns {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.cookie .btn {
    padding: 10px 18px;
    font-size: 13px
}

.cookie.hide {
    display: none
}

/* modales */
.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(20, 25, 47, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(3px)
}

.modal.open {
    display: flex
}

.modal .mbox {
    background: #fff;
    border-radius: 18px;
    max-width: 700px;
    width: 100%;
    max-height: 86vh;
    overflow: auto;
    padding: 34px 38px
}

.modal h3 {
    font-size: 23px;
    margin-bottom: 4px
}

.modal h4 {
    font-size: 14.5px;
    margin: 20px 0 6px
}

.modal p, .modal li {
    font-size: 13.4px;
    color: var(--ink2);
    font-weight: 400;
    line-height: 1.62
}

.modal ul {
    margin: 6px 0 0 18px
}

.modal li {
    margin-bottom: 4px
}

.modal .mclose {
    float: right;
    cursor: pointer;
    border: none;
    background: var(--grey);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 19px;
    color: var(--ink);
    line-height: 1
}

.modal .warn {
    background: #FFF4E5;
    border: 1px solid #FFD9A6;
    color: #7A5200;
    font-size: 12.3px;
    padding: 13px 15px;
    border-radius: 11px;
    margin-top: 18px;
    line-height: 1.55
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .cell {
        opacity: 1;
        transform: none;
        transition: none
    }

    .streak {
        display: none
    }

    * {
        transition-duration: .01ms !important;
        animation: none !important
    }
}

@media (max-width: 980px) {
    .hero .wrap {
        grid-template-columns:1fr;
        gap: 44px
    }

    .carto {
        max-width: 560px
    }
}

@media (max-width: 900px) {
    .navlinks, .navcta {
        display: none
    }

    .burger {
        display: flex
    }

    .pgrid, .steps, .values, .vsgrid, .book, .mgrid, .pillars, .pfrow {
        grid-template-columns:1fr
    }

    .steps::before {
        display: none
    }

    .pf {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 0 0 16px
    }

    .pf:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .vsx {
        padding: 10px 0
    }

    .hero {
        padding: 64px 0 72px
    }

    .hero .cross {
        opacity: .07;
        width: 320px;
        right: -110px
    }

    .s-pad {
        padding: 58px 0
    }

    .cookie {
        flex-direction: column;
        align-items: flex-start
    }

    .bookcard {
        position: static
    }

    .mcard {
        flex-direction: column;
        gap: 14px
    }
}
