:root {
    --page-bg: #050b11;
    --surface: rgba(5, 11, 17, .3);
    --surface-solid: #0b121b;
    --navy: #0e1726;
    --navy-2: #101a28;
    --ink: #0b1118;
    --ink-soft: rgba(11, 17, 24, .35);
    --scrollbar: rgba(169, 183, 200, .25);
    --gold: #caa567;
    --gold-soft: hsla(38, 48%, 60%, .12);
    --gold-mid: hsla(38, 48%, 60%, .35);
    --gold-border: hsla(38, 48%, 60%, .45);
    --text: #e8edf5;
    --muted: rgba(232, 237, 245, .63);
    --muted-2: rgba(232, 237, 245, .35);
    --danger: #ea5455;
    --radius-lg: 1.8rem;
    --radius-md: 1.2rem;
    --radius-sm: 0.65rem;
    --shadow-hero: 0 28px 80px rgba(0, 0, 0, .55);
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, .2);
    --shadow-border: 0 0 0 1px hsla(38, 48%, 60%, .16);
    --header-h: 72px;
    --section-pad: clamp(3.6rem, 5vw, 6rem);
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    --hero-max: 1180px;
    --liner-1: linear-gradient(135deg, #0d131e, rgba(5, 11, 17, 0));
    --liner-2: radial-gradient(circle at top, hsla(38, 48%, 60%, .2) 0%, hsla(38, 48%, 60%, 0) 55%);
    --liner-3: linear-gradient(140deg, rgba(5, 11, 17, 0), rgba(5, 11, 17, .8) 75%)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px
}

body {
    background: var(--page-bg);
    color: var(--text);
    font-family: var(--font-sans)
}

.header {
    backdrop-filter: blur(14px);
    background: radial-gradient(circle at top, rgba(5, 11, 17, .32) 0, rgba(5, 11, 17, 0) 50%);
    border-bottom: 1px solid rgba(232, 237, 245, .02);
    overflow: clip;
    position: relative;
    z-index: 50
}

.header-topline {
    display: none
}

main:has(.hero) {
    display: flex;
    flex-direction: column
}

.hero {
    order: -2
}

.why-section {
    order: -1
}

.header-container {
    align-items: center;
    display: flex;
    gap: 1.25rem;
    height: var(--header-h);
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 1.2rem
}

.logo {
    align-items: center;
    display: inline-flex;
    gap: .55rem
}

@media (min-width:768px) {
    .logo {
        display: none
    }
}

.logo-image {
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .35));
    width: 150px
}

.nav-desktop {
    display: none
}

.nav-toggle {
    align-items: center;
    background: radial-gradient(circle at top, rgba(14, 23, 38, .9) 0, rgba(14, 23, 38, 0) 60%);
    border: 1px solid rgba(232, 237, 245, .08);
    border-radius: 9px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 36px;
    justify-content: center;
    transition: border .25s ease, transform .25s ease;
    width: 44px
}

.nav-toggle span {
    background: #fff;
    border-radius: 999px;
    height: 2px;
    transition: transform .25s ease, opacity .25s ease;
    width: 20px
}

.nav-toggle:hover {
    border-color: hsla(38, 48%, 60%, .45);
    transform: translateY(-1px)
}

.nav-mobile {
    background: radial-gradient(circle at top, #050b11 0, #0b121b 80%);
    border-left: 1px solid rgba(232, 237, 245, .03);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    inset: 0 0 0 auto;
    position: fixed;
    transform: translateX(150%);
    transition: transform .35s ease;
    width: min(320px, 85vw);
    z-index: 100
}

.nav-mobile.is-open {
    transform: translateX(0)
}

.nav-header {
    align-items: center;
    border-bottom: 1px solid rgba(232, 237, 245, .04);
    display: flex;
    justify-content: space-between;
    padding: 1rem .9rem .5rem
}

.nav-logo-image {
    transform: translateX(-50px);
    width: 150px
}

.nav-mobile a {
    border-bottom: 1px solid rgba(232, 237, 245, .015);
    color: rgba(232, 237, 245, .65);
    display: block;
    font-size: .95rem;
    letter-spacing: .035em;
    padding: .75rem .9rem
}

.nav-mobile a.active,
.nav-mobile a:hover {
    background: radial-gradient(circle at left, hsla(38, 48%, 60%, .08) 0, hsla(38, 48%, 60%, 0) 60%);
    color: #fff
}

.nav-close {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    transition: background .2s ease;
    width: 32px
}

.nav-close:hover {
    background: rgba(232, 237, 245, .08)
}

.nav-mobile-footer {
    margin-top: auto;
    padding: 1rem .9rem 1.4rem
}

.nav-mobile-caption {
    color: rgba(232, 237, 245, .38);
    font-size: .7rem
}

.nav-overlay {
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, .3);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 95
}

.nav-overlay.is-active {
    opacity: 1;
    visibility: visible
}

.badge {
    backdrop-filter: blur(8px);
    background: linear-gradient(120deg, hsla(38, 48%, 60%, .12), rgba(14, 23, 38, .2) 80%);
    border: 1px solid hsla(38, 48%, 60%, .4);
    border-radius: 999px;
    color: #fff;
    font-size: .68rem;
    gap: .5rem;
    letter-spacing: .14em;
    line-height: 1.25;
    padding: .35rem .85rem;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content
}

.badge,
.btn {
    align-items: center;
    display: inline-flex
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    gap: .55rem;
    justify-content: center;
    letter-spacing: .02em;
    max-width: 390px;
    padding: .55rem 1.25rem .6rem;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease
}

.btn-primary {
    background: radial-gradient(circle at top, #caa567 0, #a67c3d 50%, #8a6429 100%);
    box-shadow: 0 12px 35px hsla(38, 48%, 60%, .25);
    color: #050b11
}

.btn-primary:hover {
    box-shadow: 0 15px 40px hsla(38, 48%, 60%, .35);
    transform: translateY(-1px)
}

.btn-outline {
    background: rgba(14, 23, 38, .15);
    border: 1px solid rgba(232, 237, 245, .12);
    color: #fff
}

.btn-outline:hover {
    background: rgba(232, 237, 245, .035)
}

.btn-icon {
    background: rgba(5, 11, 17, .12);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px
}

.btn-icon,
.hero {
    align-items: center
}

.hero {
    display: flex;
    min-height: 80vh;
    overflow: hidden;
    padding: 3.6rem 1.2rem 3.2rem;
    position: relative
}

.hero-background {
    inset: 0;
    position: absolute;
    z-index: -2
}

.hero-bg {
    inset: 0;
    overflow: hidden;
    position: absolute
}

.hero-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 100% 50%;
    object-position: 100% 50%;
    width: 100%
}

@media (min-width:768px) {
    .hero-bg img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 50% 25%;
        object-position: 50% 25%
    }
}

.hero-overlay {
    background: linear-gradient(140deg, rgba(5, 11, 17, .95), rgba(5, 11, 17, .8) 40%, rgba(14, 23, 38, .2) 90%);
    inset: 0;
    mix-blend-mode: normal;
    position: absolute
}

.hero-pattern {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .035) 1px, rgba(5, 11, 17, 0) 0);
    background-size: 150px 100%;
    height: 92%;
    inset: auto -4% -20%;
    opacity: .45;
    pointer-events: none;
    position: absolute
}

.hero-pattern--soft {
    background-size: 120px 100%;
    height: 60%;
    inset: 10% -12% auto;
    opacity: .15
}

.hero-decoration {
    aspect-ratio: 4/3;
    background: radial-gradient(circle, hsla(38, 48%, 60%, .05) 0, hsla(38, 48%, 60%, 0) 65%);
    border: 1px solid hsla(38, 48%, 60%, .06);
    border-radius: 24px;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .28));
    position: absolute;
    width: 190px
}

.decoration-1 {
    right: -60px;
    top: -25px
}

.decoration-2 {
    border-radius: 999px;
    bottom: 15%;
    height: 160px;
    right: -24px;
    width: 140px
}

.decoration-3 {
    left: -45px;
    rotate: -5deg;
    top: 46%;
    width: 110px
}

.decoration-4 {
    bottom: -12%;
    height: 160px;
    left: 15%;
    opacity: .25;
    width: 260px
}

.hero-container {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: var(--hero-max)
}

.hero-content {
    max-width: 690px;
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3rem);
    letter-spacing: -.01em;
    line-height: 1.02;
    margin-bottom: 1rem;
    margin-top: 1.3rem
}

.hero-title .highlight {
    color: var(--gold);
    text-shadow: 0 10px 35px hsla(38, 48%, 60%, .25)
}

.hero-description {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7;
    max-width: 37rem
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.4rem
}

.hero-cta-note {
    color: rgba(232, 237, 245, .32);
    font-size: .72rem
}

.hero-note {
    margin-top: 1.4rem;
    position: relative
}

.hero-note-border {
    border: 1px solid hsla(38, 48%, 60%, .08);
    border-radius: 1.35rem;
    inset: -10px -12px -12px -10px;
    pointer-events: none;
    position: absolute
}

.hero-note-content {
    align-items: center;
    background: rgba(5, 11, 17, .4);
    border: 1px solid rgba(232, 237, 245, .005);
    border-radius: 1.15rem;
    display: flex;
    gap: .75rem;
    padding: .6rem .8rem
}

.hero-note-icon-wrapper {
    background: hsla(38, 48%, 60%, .08);
    border-radius: 999px;
    color: #fff;
    display: grid;
    height: 34px;
    place-items: center;
    width: 34px
}

.hero-note-label {
    font-size: .62rem;
    letter-spacing: .12em;
    opacity: .6;
    text-transform: uppercase
}

.hero-note-text {
    font-size: .75rem
}

.hero-note-amount {
    color: #fff
}

.hero-sidecard {
    display: none
}

@media (min-width:640px) {
    .hero {
        padding-bottom: 4rem;
        padding-top: 4.2rem
    }

    .hero-note-content {
        max-width: 360px
    }
}

@media (min-width:768px) {
    .nav-desktop {
        align-items: center;
        display: flex;
        gap: 2.25rem;
        margin-inline: auto;
        min-width: 60%
    }

    .nav-link {
        color: rgba(232, 237, 245, .6);
        font-size: .7rem;
        letter-spacing: .14em;
        position: relative;
        text-transform: uppercase;
        transition: color .2s ease
    }

    .nav-link:after {
        background: radial-gradient(circle, hsla(38, 48%, 60%, .8) 0, hsla(38, 48%, 60%, 0) 70%);
        content: "";
        height: 2px;
        inset: auto 0 -1.4rem;
        opacity: 0;
        position: absolute;
        transform: scaleX(.2);
        transition: opacity .25s ease, transform .25s ease
    }

    .nav-link.active,
    .nav-link:hover {
        color: #fff
    }

    .nav-link.active:after,
    .nav-link:hover:after {
        opacity: 1;
        transform: scaleX(1)
    }

    .nav-logo-center {
        backdrop-filter: blur(4px);
        background: radial-gradient(circle at top, hsla(38, 48%, 60%, .4) 0, hsla(38, 48%, 60%, 0) 65%), rgba(5, 11, 17, .45);
        border: 1px solid hsla(38, 48%, 60%, .25);
        border-radius: 999px;
        display: grid;
        height: 54px;
        margin-inline: 45px;
        place-items: center;
        width: 54px
    }

    .nav-logo-image {
        height: 30px
    }

    .nav-toggle {
        display: none
    }

    .hero-container {
        align-items: center;
        grid-template-columns: 1.05fr .6fr
    }

    .hero-sidecard {
        display: block;
        position: relative;
        z-index: 2
    }

    .hero-sidecard-inner {
        backdrop-filter: blur(11px);
        background: linear-gradient(150deg, rgba(5, 11, 17, .4), rgba(14, 23, 38, .25) 65%);
        border: 1px solid rgba(232, 237, 245, .019);
        border-radius: 1.4rem;
        box-shadow: 0 18px 55px rgba(0, 0, 0, .14);
        margin-left: auto;
        max-width: 320px;
        padding: 1.1rem 1.2rem 1.2rem
    }

    .sidecard-title {
        font-weight: 600;
        margin-bottom: .7rem
    }

    .sidecard-text {
        color: rgba(232, 237, 245, .45);
        font-size: .75rem;
        margin-bottom: .65rem
    }

    .sidecard-list {
        display: grid;
        gap: .4rem;
        padding-left: 1rem
    }

    .sidecard-list li {
        color: rgba(232, 237, 245, .7);
        font-size: .73rem;
        list-style: disc
    }
}

@media (min-width:992px) {
    .nav-desktop {
        gap: 3.25rem
    }

    .header-container {
        gap: 1.5rem;
        max-width: 1180px
    }

    .hero {
        min-height: 89.5vh;
        padding-bottom: 5.2rem;
        padding-top: 5.2rem
    }

    .hero-description {
        font-size: .95rem
    }

    .hero-note {
        margin-top: 1.6rem
    }

    .hero-bg img {
        transform: scale(1.05)
    }
}

@media (min-width:1200px) {
    .hero-container {
        gap: 3.25rem
    }

    .hero-sidecard-inner {
        max-width: 360px
    }

    .hero-pattern {
        background-size: 180px 100%
    }
}

.image-layer {
    transition: transform .25s ease-out;
    will-change: transform
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: rgba(5, 11, 17, .1)
}

::-webkit-scrollbar-thumb {
    background: hsla(38, 48%, 60%, .5);
    border-radius: 999px
}

.is-hidden {
    display: none !important
}

.text-gold {
    color: var(--gold)
}

.bg-surface {
    background: rgba(5, 11, 17, .45);
    border: 1px solid rgba(232, 237, 245, .014);
    border-radius: 1rem
}

.mission-section.law-slab {
    display: none
}

.mission-section {
    background: radial-gradient(circle at top, #050b11 0, #050b11 55%, #020406 100%);
    overflow: hidden;
    padding: clamp(3.5rem, 5vw, 5.5rem) 1.25rem 3.9rem;
    position: relative;
    z-index: 1
}

.mission-section:before {
    background-image: linear-gradient(130deg, hsla(38, 48%, 60%, .08), hsla(38, 48%, 60%, 0) 40%), linear-gradient(180deg, rgba(24, 37, 56, .12), rgba(5, 11, 17, 0) 80%);
    inset: -35% -5%
}

.mission-section:after,
.mission-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -2
}

.mission-section:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .02) 1px, transparent 0);
    background-size: 130px 100%;
    height: 50%;
    inset: auto -10% -25%;
    opacity: .5
}

.mission-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2
}

.mission-head {
    margin-bottom: 2.6rem;
    max-width: 46rem;
    position: relative;
    text-align: left
}

.mission-head .badge,
.mission-title {
    margin-bottom: 1.1rem
}

.mission-title {
    color: #fff;
    font-size: clamp(1.65rem, 3.4vw, 2.25rem);
    letter-spacing: -.01em;
    line-height: 1.05
}

.mission-accent {
    color: #caa567;
    text-shadow: 0 18px 40px hsla(38, 48%, 60%, .28)
}

.mission-lead {
    color: rgba(232, 237, 245, .66);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 38rem
}

.mission-grid {
    display: grid;
    gap: 2.4rem;
    grid-template-columns: 1fr
}

.mission-left {
    min-height: 330px;
    position: relative
}

.mission-photo-wrap {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .02) 0, hsla(38, 48%, 60%, 0) 55%);
    border: 1px solid rgba(232, 237, 245, .02);
    border-radius: 1.8rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
    isolation: isolate;
    overflow: hidden;
    position: relative
}

.mission-photo-main {
    display: block;
    height: 100%;
    position: relative
}

.mission-photo-main img {
    display: block;
    filter: saturate(.88);
    height: 100%;
    min-height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.mission-photo-overlay {
    background: linear-gradient(160deg, rgba(5, 11, 17, 0), rgba(5, 11, 17, .65));
    inset: 0;
    mix-blend-mode: normal;
    pointer-events: none;
    position: absolute
}

.mission-corner {
    backdrop-filter: blur(2px);
    border: 1px solid hsla(38, 48%, 60%, .35);
    border-radius: 1.6rem;
    height: 90px;
    position: absolute;
    width: 110px
}

.mission-corner--top {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .12) 0, hsla(38, 48%, 60%, 0) 65%);
    right: -14px;
    top: -19px
}

.mission-corner--bottom {
    bottom: -22px;
    height: 70px;
    left: -19px;
    opacity: .65;
    width: 100px
}

.mission-stripe {
    background: linear-gradient(90deg, hsla(38, 48%, 60%, .7), hsla(38, 48%, 60%, 0));
    border-radius: 999px;
    height: 4px;
    left: 1.2rem;
    position: absolute;
    top: 1.3rem;
    width: 60px
}

.mission-experience {
    background: radial-gradient(circle at top, #050b11 0, rgba(5, 11, 17, .15) 85%);
    border: 1px solid hsla(38, 48%, 60%, .5);
    border-radius: 1.25rem;
    bottom: 5.3rem;
    box-shadow: 0 20px 35px rgba(0, 0, 0, .35);
    min-width: 165px;
    padding: .75rem .9rem .7rem;
    position: absolute;
    right: 1.1rem
}

.mission-experience-value {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .25rem
}

.mission-experience-text {
    color: rgba(232, 237, 245, .6);
    font-size: .65rem;
    line-height: 1.35
}

.mission-mini-card {
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(5, 11, 17, .5);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1.2rem;
    display: flex;
    gap: .7rem;
    margin-top: 3.2rem;
    max-width: 280px;
    padding: .85rem .9rem .8rem
}

.mission-mini-icon img {
    display: block;
    height: 46px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 46px
}

.mission-mini-body h3 {
    font-size: .8rem;
    margin-bottom: .25rem
}

.mission-mini-body p {
    color: rgba(232, 237, 245, .47);
    font-size: .68rem
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 1.6rem
}

.mission-block {
    background: rgba(5, 11, 17, .32);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1.2rem;
    padding: 1rem
}

.mission-text {
    color: rgba(232, 237, 245, .7);
    font-size: .86rem;
    line-height: 1.71
}

.mission-text+.mission-text {
    margin-top: .6rem
}

.mission-split {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr
}

.mission-card {
    background: radial-gradient(circle at top, rgba(24, 37, 56, .09) 0, rgba(5, 11, 17, 0) 85%);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1.2rem;
    min-height: 150px;
    padding: .9rem .9rem .85rem
}

.mission-card-title {
    color: #fff;
    font-size: .86rem;
    margin-bottom: .35rem
}

.mission-card-text {
    color: rgba(232, 237, 245, .62);
    font-size: .75rem;
    line-height: 1.55
}

.mission-list-item {
    color: rgba(232, 237, 245, .77);
    font-size: .75rem;
    gap: .6rem;
    line-height: 1.5;
    padding: .55rem .65rem .5rem
}

.mission-list-icon svg {
    height: 19px;
    width: 19px
}

.mission-bottom {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .2rem
}

@media (min-width:600px) {
    .mission-grid {
        gap: 2.1rem
    }

    .mission-left {
        max-width: 420px
    }

    .mission-photo-main img {
        min-height: 340px
    }
}

@media (min-width:768px) {
    .mission-grid {
        align-items: flex-start;
        grid-template-columns: .85fr 1.15fr
    }

    .mission-left {
        position: sticky;
        top: 6.2rem
    }

    .mission-block {
        padding: 1.1rem 1.15rem 1.05rem
    }

    .mission-list,
    .mission-split {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .mission-bottom {
        align-items: center;
        flex-direction: row;
        gap: 1.1rem
    }
}

@media (min-width:992px) {
    .mission-section {
        padding-inline: 1.5rem
    }

    .mission-shell {
        max-width: 1180px
    }

    .mission-head {
        margin-bottom: 3rem
    }

    .mission-lead {
        font-size: .95rem
    }

    .mission-block {
        border: 1px solid hsla(38, 48%, 60%, .06)
    }

    .mission-card {
        border: 1px solid hsla(38, 48%, 60%, .03)
    }

    .mission-list-item {
        gap: .7rem
    }

    .mission-photo-wrap {
        border-radius: 1.9rem
    }
}

@media (min-width:1200px) {
    .mission-grid {
        gap: 3.2rem
    }

    .mission-left {
        max-width: 420px
    }

    .mission-mini-card {
        max-width: 310px
    }
}

.mission-section .will-fade {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease
}

.mission-section .is-visible {
    opacity: 1;
    transform: translateY(0)
}

.mission-section .btn.btn-primary {
    background: radial-gradient(circle at top, #caa567 0, #b27f37 44%, #8e6225 100%);
    box-shadow: 0 18px 40px hsla(38, 48%, 60%, .35);
    color: #050b11
}

.mission-section .btn.btn-primary:hover {
    box-shadow: 0 20px 50px hsla(38, 48%, 60%, .4);
    transform: translateY(-1px)
}

.mission-section .mission-photo-wrap:after {
    background: linear-gradient(180deg, hsla(38, 48%, 60%, .4), hsla(38, 48%, 60%, 0));
    content: "";
    inset: 18% auto 15% -32px;
    opacity: .6;
    pointer-events: none;
    position: absolute;
    width: 1px
}

.mission-section .mission-right:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .12) 0, rgba(5, 11, 17, 0) 70%);
    content: "";
    filter: blur(22px);
    height: 110px;
    opacity: .35;
    pointer-events: none;
    position: absolute;
    right: -80px;
    top: 0;
    width: 110px
}

.mission-section img[alt="Statistiques de réussite"] {
    display: block
}

.mission-list {
    display: grid;
    gap: .55rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.mission-list-item {
    align-items: flex-start;
    background: rgba(5, 11, 17, .15);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1rem;
    display: flex;
    gap: .65rem;
    min-height: 3.3rem;
    padding: .65rem .7rem .6rem
}

.mission-list-icon {
    align-items: center;
    background: hsla(38, 48%, 60%, .09);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 30px;
    justify-content: center;
    width: 30px
}

.mission-list-body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0
}

.mission-list-title {
    color: rgba(232, 237, 245, .8);
    font-size: .73rem;
    line-height: 1.35
}

.mission-list-meta {
    color: rgba(232, 237, 245, .45);
    font-size: .7rem;
    line-height: 1.3
}

.mission-list-meta--strong {
    color: #fff;
    font-weight: 600
}

@media (min-width:768px) {
    .mission-list {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr
}

.testimonials-panel {
    background: rgba(4, 8, 13, .35);
    border: 1px solid rgba(232, 237, 245, .02);
    border-radius: 1.4rem;
    padding: 1rem 1rem 1.05rem
}

.testimonials-panel .badge {
    margin-bottom: .85rem
}

.testimonials-heading {
    color: #fff;
    font-size: clamp(1.45rem, 4vw, 1.75rem);
    line-height: 1.05;
    margin-bottom: .6rem
}

.testimonials-heading .accent {
    color: #caa567
}

.testimonials-intro {
    color: rgba(232, 237, 245, .6);
    font-size: .78rem;
    line-height: 1.6;
    max-width: 26rem
}

.panel-stats {
    background: rgba(4, 8, 13, .13);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1rem;
    display: flex;
    gap: .9rem;
    margin-top: 1rem;
    padding: .45rem .6rem;
    width: -moz-fit-content;
    width: fit-content
}

.panel-stat {
    display: flex;
    flex-direction: column;
    gap: .1rem
}

.panel-stat-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600
}

.panel-stat-label {
    color: rgba(232, 237, 245, .42);
    font-size: .65rem
}

.stat-divider-vertical {
    background: linear-gradient(180deg, rgba(232, 237, 245, .12), rgba(232, 237, 245, 0));
    width: 1px
}

.panel-footer {
    margin-top: 1.1rem
}

.panel-note {
    color: rgba(232, 237, 245, .4);
    font-size: .68rem;
    line-height: 1.5;
    max-width: 21rem
}

.panel-controls {
    align-items: center;
    display: flex;
    gap: .6rem;
    margin-top: 1.05rem
}

.panel-btn {
    align-items: center;
    background: rgba(4, 8, 13, .5);
    border: 1px solid rgba(232, 237, 245, .02);
    border-radius: .85rem;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    transition: background .2s ease;
    width: 38px
}

.panel-btn:hover {
    background: hsla(38, 48%, 60%, .16)
}

.panel-counter {
    color: rgba(232, 237, 245, .4);
    display: inline-flex;
    font-size: .7rem;
    gap: .25rem
}

.panel-counter .current-slide {
    color: #fff;
    font-weight: 600
}

.testimonial-header {
    align-items: center;
    display: flex;
    gap: .75rem;
    justify-content: space-between;
    position: relative
}

.testimonial-header:after {
    background: url(../images/quote02.svg) 50%/contain no-repeat;
    content: "";
    height: 25px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px
}

.client-box {
    align-items: center;
    display: flex;
    gap: .5rem
}

.client-avatar {
    border: 1px solid rgba(232, 237, 245, .04);
    border-radius: 999px;
    height: 46px;
    overflow: hidden;
    width: 46px
}

.client-avatar img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: .1rem
}

.client-name {
    color: #fff;
    font-size: .8rem
}

.client-location {
    color: rgba(232, 237, 245, .35);
    font-size: .62rem
}

.client-rating {
    color: #caa567;
    display: inline-flex;
    gap: 2px
}

.testimonial-footer {
    margin-top: 20px
}

.recovery-pill {
    align-items: center;
    background: radial-gradient(circle at top, #caa567 0, #9d763f 90%);
    border-radius: 999px;
    box-shadow: 0 12px 36px hsla(38, 48%, 60%, .4);
    color: #050b11;
    display: inline-flex;
    gap: .4rem;
    padding: .4rem .75rem .4rem .55rem
}

.pill-label {
    font-size: .6rem;
    letter-spacing: .1em;
    opacity: .8;
    text-transform: uppercase
}

.pill-amount {
    font-size: .78rem;
    font-weight: 600
}

.slider-dots {
    align-items: center;
    display: flex;
    gap: .45rem;
    justify-content: center
}

@media (min-width:768px) {
    .slider-dots {
        justify-content: left
    }
}

.slider-dots .dot {
    background: rgba(232, 237, 245, .08);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    height: 4px;
    transition: background .25s ease, width .25s ease;
    width: 28px
}

.slider-dots .dot.is-active {
    background: #caa567;
    width: 44px
}

@media (min-width:640px) {
    .testimonials-panel {
        padding: 1.25rem 1.2rem
    }

    .testimonial-card {
        padding: 1.25rem 1.2rem 1.1rem
    }

    .testimonial-body {
        padding-right: 3.8rem
    }
}

@media (min-width:992px) {
    .testimonial-text {
        font-size: .8rem
    }

    .testimonials-panel {
        border: 1px solid hsla(38, 48%, 60%, .02)
    }
}

.testimonials-track>.testimonial-card {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    gap: .85rem;
    max-width: 100%;
    min-height: 320px;
    padding: 1.1rem 1rem 1rem
}

@media (max-width:768px) {
    .testimonial-card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem
    }

    .testimonial-text {
        white-space: normal
    }
}

.testimonials-section {
    background: radial-gradient(circle at top, #04080d 0, #04080d 55%, #010203 100%);
    overflow: visible;
    padding: clamp(3.4rem, 5vw, 5rem) 1.2rem;
    position: relative;
    z-index: 1
}

.testimonials-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative
}

.testimonials-slider-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
    width: 100%
}

.testimonials-viewport {
    background: radial-gradient(circle at top, rgba(4, 8, 13, .3) 0, rgba(4, 8, 13, 0) 60%);
    border: 1px solid rgba(232, 237, 245, .02);
    border-radius: 1.3rem;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.testimonials-track {
    display: flex;
    left: 0;
    position: relative;
    transition: transform .45s ease;
    will-change: transform
}

.testimonial-card {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    gap: .85rem;
    max-width: 100%;
    min-width: 100%;
    padding: 1.1rem 1rem 1rem;
    width: 100%
}

.testimonial-body {
    overflow: hidden;
    padding-right: 3.4rem;
    padding-top: 1.1rem;
    position: relative
}

.testimonial-text {
    color: rgba(232, 237, 245, .7);
    font-size: .78rem;
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: break-word
}

@media (min-width:640px) {
    .testimonial-card {
        padding: 1.25rem 1.2rem 1.1rem
    }

    .testimonial-body {
        padding-right: 3.8rem
    }
}

@media (min-width:768px) {
    .testimonials-grid {
        gap: 2.4rem;
        grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr)
    }

    .testimonials-viewport {
        min-height: 360px
    }

    .testimonials-section {
        overflow: hidden
    }
}

@media (min-width:992px) {
    .testimonial-text {
        font-size: .8rem
    }
}

@media (max-width:767px) {

    .testimonials-section:after,
    .testimonials-section:before {
        content: none !important
    }
}

.services-section {
    background: radial-gradient(circle at top, #04080d 0, #04080d 50%, #010203 100%);
    overflow: hidden;
    padding: clamp(3.3rem, 4.5vw, 5.2rem) 1.25rem;
    position: relative;
    z-index: 1
}

.services-section:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .26) 0, rgba(4, 8, 13, 0) 70%);
    height: 380px;
    right: -10%;
    top: -15%;
    width: 380px
}

.services-section:after,
.services-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.services-section:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .02) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 140px 100%;
    height: 45%;
    inset: auto -10% -22%;
    opacity: .45
}

.services-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.05rem
}

.services-header .badge {
    align-items: center;
    background: linear-gradient(140deg, hsla(38, 48%, 60%, .08), rgba(15, 20, 29, .2) 75%);
    border: 1px solid hsla(38, 48%, 60%, .5);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    gap: .45rem;
    letter-spacing: .13em;
    padding: .35rem .95rem .35rem .65rem;
    text-align: center;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content
}

.services-headline {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.services-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.3vw, 2.2rem);
    letter-spacing: -.01em;
    line-height: 1.05;
    max-width: 44rem
}

.services-subtitle {
    color: rgba(232, 237, 245, .6);
    font-size: .8rem;
    line-height: 1.7;
    max-width: 46rem
}

.services-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    list-style: none;
    padding-left: 0
}

.services-meta li {
    background: rgba(4, 8, 13, .2);
    border: 1px solid rgba(232, 237, 245, .03);
    border-radius: 999px;
    color: rgba(232, 237, 245, .55);
    font-size: .64rem;
    padding: .2rem .7rem .25rem
}

.services-body {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
    min-height: 420px
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.services-nav-item {
    align-items: flex-start;
    background: rgba(4, 8, 13, .24);
    border: 1px solid rgba(232, 237, 245, .018);
    border-radius: 1.1rem;
    cursor: pointer;
    display: flex;
    gap: .6rem;
    padding: .55rem .6rem .55rem .55rem;
    text-align: left;
    transition: border .2s ease, background .2s ease, box-shadow .2s ease
}

.services-nav-item:focus-visible {
    outline: 2px solid hsla(38, 48%, 60%, .4);
    outline-offset: 3px
}

.services-nav-item .nav-index {
    align-items: center;
    background: hsla(38, 48%, 60%, .07);
    border-radius: .75rem;
    color: rgba(232, 237, 245, .5);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .68rem;
    height: 32px;
    justify-content: center;
    width: 36px
}

.services-nav-item .nav-content {
    display: flex;
    flex-direction: column;
    gap: .23rem;
    min-width: 0
}

.services-nav-item .nav-title {
    color: #fff;
    font-size: .76rem;
    line-height: 1.2
}

.services-nav-item .nav-text {
    color: rgba(232, 237, 245, .37);
    font-size: .64rem;
    line-height: 1.4
}

.services-nav-item .nav-chevron {
    align-items: center;
    background: rgba(232, 237, 245, .02);
    border-radius: 999px;
    color: rgba(232, 237, 245, .25);
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    justify-content: center;
    margin-left: auto;
    width: 24px
}

.services-nav-item.is-active,
.services-nav-item:hover {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .08) 0, rgba(4, 8, 13, .05) 100%);
    border: 1px solid hsla(38, 48%, 60%, .4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18)
}

.services-nav-item.is-active .nav-index {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .95) 0, hsla(38, 48%, 60%, .28) 100%);
    color: #050b11;
    font-weight: 600
}

.services-nav-item.is-active .nav-chevron {
    background: rgba(232, 237, 245, .16);
    color: #fff
}

.services-panels {
    background: rgba(4, 8, 13, .35);
    border: 1px solid rgba(232, 237, 245, .012);
    border-radius: 1.25rem;
    min-height: 320px;
    overflow: hidden;
    position: relative
}

.service-panel {
    display: none;
    height: 100%
}

.service-panel.is-active {
    display: block
}

.service-panel-inner {
    min-height: 100%;
    padding: 1.1rem 1rem 1.2rem
}

.panel-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .55rem
}

.panel-text {
    color: rgba(232, 237, 245, .6);
    font-size: .78rem;
    line-height: 1.7;
    margin-bottom: .65rem;
    max-width: 38rem
}

.panel-list {
    display: grid;
    gap: .4rem;
    list-style: none;
    margin-bottom: .9rem;
    padding-left: 0
}

.panel-list li {
    color: rgba(232, 237, 245, .7);
    display: flex;
    font-size: .7rem;
    gap: .45rem;
    line-height: 1.5
}

.panel-list li:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .3) 0, rgba(4, 8, 13, 0) 65%);
    border: 1px solid hsla(38, 48%, 60%, .65);
    border-radius: 999px;
    content: "";
    flex: 0 0 auto;
    height: 16px;
    margin-top: .2rem;
    width: 16px
}

.panel-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: auto
}

.panel-note {
    color: rgba(232, 237, 245, .35);
    font-size: .63rem
}

.services-section .btn.btn-primary {
    background: radial-gradient(circle at top, #caa567 0, #b27f37 44%, #8e6225 100%);
    border-radius: 999px;
    box-shadow: 0 18px 40px hsla(38, 48%, 60%, .35);
    color: #050b11
}

.services-section .btn.btn-primary:hover {
    box-shadow: 0 20px 50px hsla(38, 48%, 60%, .4);
    transform: translateY(-1px)
}

@media (min-width:640px) {
    .services-panels {
        min-height: 350px
    }

    .services-nav-item {
        padding: .7rem .75rem .7rem .7rem
    }

    .panel-title {
        font-size: 1.05rem
    }
}

@media (min-width:768px) {
    .services-body {
        align-items: stretch;
        gap: 1.6rem;
        grid-template-columns: .85fr 1.15fr
    }

    .services-nav {
        position: relative
    }

    .services-panels {
        min-height: 380px
    }

    .panel-list {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:992px) {
    .services-header {
        gap: 1.5rem;
        justify-content: space-between
    }

    .services-headline {
        flex: 1 1 auto
    }

    .services-meta {
        flex: 0 0 auto
    }

    .services-body {
        gap: 2rem
    }

    .services-nav {
        gap: .85rem
    }

    .service-panel-inner {
        padding: 1.35rem 1.35rem 1.25rem
    }

    .panel-text {
        max-width: 40rem
    }
}

@media (min-width:1200px) {
    .services-section {
        padding-inline: 1.5rem
    }

    .services-body {
        gap: 2.6rem
    }

    .services-panels {
        min-height: 400px
    }
}

.services-panels:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .14) 0, rgba(4, 8, 13, 0) 70%);
    height: 150px;
    inset: -25% auto auto 55%;
    width: 150px
}

.services-panels:after,
.services-panels:before {
    content: "";
    pointer-events: none;
    position: absolute
}

.services-panels:after {
    background-image: radial-gradient(circle, rgba(15, 20, 29, .13) 0, rgba(15, 20, 29, 0) 75%);
    bottom: -120px;
    height: 260px;
    right: -110px;
    width: 260px
}

.services-section .btn-icon svg {
    display: block
}

@media (max-width:767px) {
    .services-panels {
        max-height: 410px
    }

    .service-panel-inner {
        max-height: 410px;
        overflow-y: auto;
        scrollbar-width: thin
    }

    .service-panel-inner::-webkit-scrollbar {
        width: 4px
    }

    .service-panel-inner::-webkit-scrollbar-track {
        background: rgba(4, 8, 13, .1)
    }

    .service-panel-inner::-webkit-scrollbar-thumb {
        background: rgba(232, 237, 245, .12);
        border-radius: 999px
    }
}

.service-panel .panel-icon {
    align-items: center;
    background: rgba(232, 237, 245, .02);
    border: 1px solid rgba(232, 237, 245, .02);
    border-radius: 1rem;
    display: inline-flex;
    float: left;
    height: 48px;
    justify-content: center;
    margin-bottom: .6rem;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    width: 48px
}

.service-panel .panel-icon:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .25));
    inset: 6px;
    position: absolute
}

.services-panels .service-panel:first-child .panel-icon:after {
    background: url(../icons/serv1.webp) 50%/contain no-repeat
}

.services-panels .service-panel:nth-child(2) .panel-icon:after {
    background: url(../icons/serv2.webp) 50%/contain no-repeat
}

.services-panels .service-panel:nth-child(3) .panel-icon:after {
    background: url(../icons/serv3.webp) 50%/contain no-repeat
}

.services-panels .service-panel:nth-child(4) .panel-icon:after {
    background: url(../icons/serv4.webp) 50%/contain no-repeat
}

@media (max-width:599px) {
    .service-panel .panel-icon {
        height: 44px;
        margin-bottom: .5rem;
        width: 44px
    }
}

.why-section {
    background: radial-gradient(circle at top, #04080d 0, #04080d 55%, #010203 100%);
    overflow: hidden;
    padding: clamp(3.4rem, 4.6vw, 5.4rem) 1.25rem clamp(3rem, 4.2vw, 4.6rem);
    position: relative;
    z-index: 1
}

.why-section:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .16) 0, rgba(4, 8, 13, 0) 70%);
    height: 290px;
    inset: -15% 40% auto
}

.why-section:after,
.why-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.why-section:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .015) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 140px 100%;
    height: 50%;
    inset: auto -15% -20%;
    opacity: .4
}

.why-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2
}

.why-grid {
    align-items: flex-start;
    display: grid;
    gap: 1.8rem;
    grid-template-columns: 1fr
}

.why-column--text {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.why-column--text .badge {
    align-items: center;
    background: linear-gradient(130deg, hsla(38, 48%, 60%, .08), rgba(16, 26, 38, .25) 85%);
    border: 1px solid hsla(38, 48%, 60%, .55);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .63rem;
    gap: .5rem;
    letter-spacing: .14em;
    margin-bottom: .4rem;
    padding: .35rem .9rem .35rem .7rem;
    text-transform: uppercase
}

.why-title {
    color: #fff;
    font-size: clamp(1.55rem, 3.1vw, 2.2rem);
    letter-spacing: -.01em;
    line-height: 1.05;
    max-width: 28rem
}

.why-lead {
    color: rgba(232, 237, 245, .62);
    font-size: .8rem;
    line-height: 1.7;
    max-width: 40rem
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none;
    margin: .35rem 0 0;
    padding: 0
}

.why-point {
    align-items: flex-start;
    background: rgba(4, 8, 13, .25);
    border: 1px solid rgba(232, 237, 245, .018);
    border-radius: 1rem;
    display: flex;
    gap: .65rem;
    padding: .6rem .65rem .55rem
}

.why-icon {
    align-items: center;
    background: hsla(38, 48%, 60%, .1);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 30px;
    justify-content: center;
    width: 30px
}

.why-point-body {
    display: flex;
    flex-direction: column;
    gap: .1rem
}

.why-point-title {
    color: #fff;
    font-size: .76rem;
    line-height: 1.35
}

.why-point-text {
    color: rgba(232, 237, 245, .42);
    font-size: .66rem;
    line-height: 1.5
}

.why-section .btn.btn-primary {
    background: radial-gradient(circle at top, #caa567 0, #b27f37 44%, #8e6225 100%);
    border-radius: 999px;
    box-shadow: 0 18px 40px hsla(38, 48%, 60%, .35);
    color: #050b11
}

.why-section .btn.btn-primary:hover {
    box-shadow: 0 21px 50px hsla(38, 48%, 60%, .45);
    transform: translateY(-1px)
}

.why-column--panel {
    order: -1
}

.why-panel {
    background: radial-gradient(circle at top, rgba(4, 8, 13, .4) 0, rgba(4, 8, 13, .05) 100%);
    border: 1px solid rgba(232, 237, 245, .018);
    border-radius: 1.3rem;
    box-shadow: 0 20px 35px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    max-width: 480px;
    min-height: 300px;
    overflow: hidden
}

.why-panel-media {
    border-bottom: 1px solid rgba(232, 237, 245, .018);
    height: 170px;
    overflow: hidden;
    position: relative
}

.why-panel-media img {
    filter: saturate(.9);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.why-panel-tag {
    background: rgba(4, 8, 13, .7);
    border: 1px solid rgba(232, 237, 245, .05);
    border-radius: 999px;
    bottom: 1.05rem;
    color: #fff;
    font-size: .63rem;
    left: 1.05rem;
    letter-spacing: .12em;
    padding: .25rem .7rem;
    position: absolute;
    text-transform: uppercase
}

.why-panel-body {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: 1.05rem 1rem 1rem
}

.why-panel-title {
    color: #fff;
    font-size: .95rem;
    line-height: 1.2
}

.why-panel-text {
    color: rgba(232, 237, 245, .62);
    font-size: .72rem;
    line-height: 1.55
}

.why-panel-rate {
    align-items: center;
    background: rgba(4, 8, 13, .35);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1rem;
    display: flex;
    gap: .7rem;
    margin-top: .3rem;
    padding: .55rem .6rem .5rem
}

.rate-value {
    background: radial-gradient(circle at top, #caa567 0, #876128 100%);
    border-radius: .75rem;
    color: #050b11;
    min-width: 110px;
    padding: .38rem .7rem .3rem
}

.rate-label {
    font-size: .6rem;
    letter-spacing: .08em;
    opacity: .85;
    text-transform: uppercase
}

.rate-number {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.1
}

.rate-caption {
    color: rgba(232, 237, 245, .5);
    font-size: .62rem;
    line-height: 1.4
}

.why-column--insights {
    display: none;
    flex-direction: column;
    gap: .7rem
}

.why-insight {
    background: rgba(4, 8, 13, .22);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1rem;
    padding: .65rem .7rem .55rem
}

.insight-title {
    color: #fff;
    font-size: .78rem;
    margin-bottom: .25rem
}

.insight-text {
    color: rgba(232, 237, 245, .5);
    font-size: .66rem;
    line-height: 1.55
}

.why-metrics {
    margin-top: 2.1rem
}

.why-metrics-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: -moz-fit-content;
    width: fit-content
}

.why-metric-card {
    background: rgba(4, 8, 13, .22);
    border: 1px solid rgba(232, 237, 245, .01);
    overflow: hidden;
    padding: .8rem .7rem .7rem 1rem;
    position: relative;
    text-align: left;
    width: 250px
}

.why-metric-card:after {
    background: linear-gradient(90deg, rgba(4, 8, 13, 0) 0, hsla(38, 48%, 60%, .2) 70%);
    bottom: auto;
    height: 200px;
    left: 140px;
    pointer-events: none;
    top: -40%;
    width: 234px
}

.why-metric-card:after,
.why-metric-card:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%)
}

.why-metric-card:before {
    height: 46px;
    width: 46px
}

.why-metric-card:first-child:before {
    background: url(../icons/leadership.webp) 50%/contain no-repeat
}

.why-metric-card:nth-child(2):before {
    background: url(../icons/success.webp) 50%/contain no-repeat
}

.why-metric-card:nth-child(3):before {
    background: url(../icons/stars.webp) 50%/contain no-repeat
}

.metric-number {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1.45rem;
    font-weight: 600;
    gap: .25rem;
    line-height: 1;
    margin-bottom: .35rem
}

.metric-number .suffix {
    color: rgba(232, 237, 245, .55);
    font-size: .7rem
}

.metric-label {
    color: rgba(232, 237, 245, .45);
    display: inline-block;
    font-size: .65rem;
    line-height: 1.4;
    max-width: 12rem;
    padding-right: 70px;
    white-space: wrap
}

@media (min-width:600px) {
    .why-grid {
        gap: 1.5rem 1.4rem;
        grid-template-columns: 1.05fr .9fr
    }

    .why-column--panel {
        order: 0
    }

    .why-column--insights {
        flex-direction: row;
        grid-column: 1/-1
    }

    .why-insight {
        flex: 1 1 0
    }
}

@media (min-width:768px) {
    .why-grid {
        gap: 1.5rem 1.4rem;
        grid-template-columns: 1.05fr .9fr
    }

    .why-column--insights {
        flex-direction: column;
        grid-column: auto
    }

    .why-panel {
        height: 100%
    }

    .panel-text {
        max-width: 22rem
    }

    .why-panel-rate {
        display: none
    }
}

@media (min-width:992px) {
    .why-section {
        padding-inline: 1.5rem
    }

    .why-shell {
        max-width: 1180px
    }

    .why-grid {
        gap: 1.75rem 1.75rem
    }

    .why-panel-body {
        padding: 1.1rem 1.15rem 1rem
    }
}

@media (min-width:1200px) {
    .why-grid {
        gap: 2.1rem 2.1rem
    }

    .why-points {
        gap: .55rem
    }

    .why-panel {
        max-width: none
    }

    .why-metrics-grid {
        gap: 1.05rem
    }
}

.why-section .will-fade {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .4s ease
}

.why-section .is-visible {
    opacity: 1;
    transform: translateY(0)
}

.why-section img[alt="Cabinet d’avocats – récupération de fraude"] {
    display: block
}

.why-metric-card .count {
    display: inline-block;
    min-width: 1ch;
    text-align: left
}

.process-section {
    background: radial-gradient(circle at top, #04080d 0, #04080d 50%, #010203 100%);
    overflow: hidden;
    padding: clamp(3.4rem, 4.6vw, 5.1rem) 1.25rem clamp(3.1rem, 4.1vw, 4.5rem);
    position: relative;
    z-index: 1
}

.process-section:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .18) 0, rgba(4, 8, 13, 0) 65%);
    height: 420px;
    right: -12%;
    top: -18%;
    width: 420px
}

.process-section:after,
.process-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.process-section:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .015) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 140px 100%;
    height: 50%;
    inset: auto -10% -22%;
    opacity: .4
}

.process-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2
}

.process-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.1rem
}

.process-header .badge {
    align-items: center;
    background: linear-gradient(140deg, hsla(38, 48%, 60%, .08), rgba(15, 20, 29, .2) 75%);
    border: 1px solid hsla(38, 48%, 60%, .55);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    gap: .45rem;
    letter-spacing: .13em;
    padding: .35rem .95rem .35rem .65rem;
    text-transform: uppercase
}

.process-headline {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.process-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.3vw, 2.25rem);
    letter-spacing: -.01em;
    line-height: 1.03;
    max-width: 38rem
}

.process-lead {
    color: rgba(232, 237, 245, .62);
    font-size: .8rem;
    line-height: 1.75;
    max-width: 45rem
}

.process-grid {
    align-items: flex-start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

.process-overview {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    position: relative
}

.overview-card {
    background: rgba(4, 8, 13, .35);
    border: 1px solid rgba(232, 237, 245, .012);
    border-radius: 1.2rem;
    box-shadow: 0 22px 35px rgba(0, 0, 0, .25);
    padding: 1rem 1rem .95rem
}

.overview-title {
    color: #fff;
    font-size: .9rem;
    margin-bottom: .65rem
}

.overview-text {
    color: rgba(232, 237, 245, .62);
    font-size: .7rem;
    line-height: 1.6;
    margin-bottom: .55rem
}

.overview-list {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    list-style: none;
    margin: 0 0 .7rem;
    padding-left: 0
}

.overview-list li {
    align-items: center;
    color: rgba(232, 237, 245, .68);
    display: flex;
    font-size: .65rem;
    gap: .4rem
}

.overview-list li:before {
    background: radial-gradient(circle, #caa567 0, #8f6327 100%);
    border-radius: 999px;
    content: "";
    flex: 0 0 auto;
    height: 16px;
    opacity: .85;
    width: 16px
}

.overview-btn {
    margin-top: .35rem
}

.overview-foot {
    background: rgba(4, 8, 13, 0);
    border: 1px solid rgba(232, 237, 245, .008);
    border-radius: 1.05rem;
    padding: .5rem 0 0
}

.overview-foot-title {
    color: rgba(232, 237, 245, .5);
    font-size: .62rem;
    margin-bottom: .4rem
}

.overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem
}

.overview-tags .tag {
    background: rgba(4, 8, 13, .45);
    border: 1px solid hsla(38, 48%, 60%, .03);
    border-radius: 999px;
    color: rgba(232, 237, 245, .7);
    font-size: .6rem;
    padding: .3rem .7rem .25rem
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    position: relative
}

.process-timeline:before {
    background: linear-gradient(180deg, hsla(38, 48%, 60%, .35), hsla(38, 48%, 60%, 0));
    content: "";
    height: calc(100% - .5rem);
    left: 18px;
    pointer-events: none;
    position: absolute;
    top: .5rem;
    width: 1px
}

.process-step {
    background: rgba(4, 8, 13, .25);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1.1rem;
    overflow: hidden;
    transition: border .2s ease, background .2s ease, box-shadow .2s ease
}

.process-step.is-active {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .04) 0, rgba(4, 8, 13, .35) 100%);
    border: 1px solid hsla(38, 48%, 60%, .35);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .25)
}

.process-step-head {
    align-items: flex-start;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    gap: .65rem;
    padding: .75rem .7rem;
    text-align: left;
    width: 100%
}

.step-counter {
    align-items: center;
    background: radial-gradient(circle, hsla(38, 48%, 60%, .9) 0, hsla(38, 48%, 60%, .25) 75%);
    border-radius: .85rem;
    color: #050b11;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .68rem;
    font-weight: 600;
    height: 36px;
    justify-content: center;
    width: 36px
}

.step-top {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .1rem;
    min-width: 0
}

.step-title {
    color: #fff;
    font-size: .82rem;
    line-height: 1.25
}

.step-sub {
    color: rgba(232, 237, 245, .4);
    font-size: .6rem
}

.step-arrow {
    align-items: center;
    background: rgba(232, 237, 245, .02);
    border-radius: 999px;
    color: rgba(232, 237, 245, .3);
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    justify-content: center;
    transition: transform .2s ease;
    width: 24px
}

.process-step.is-active .step-arrow {
    color: #fff;
    transform: rotate(90deg)
}

.process-step-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 .95rem 0 3.5rem;
    transition: max-height .28s ease
}

.process-step.is-active .process-step-body {
    max-height: 400px;
    padding: .35rem .95rem .85rem 3.5rem
}

.process-step-body p {
    color: rgba(232, 237, 245, .7);
    font-size: .7rem;
    line-height: 1.6;
    margin-bottom: .5rem
}

.step-points {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    list-style: none;
    padding-left: 0
}

.step-points li {
    color: rgba(232, 237, 245, .58);
    font-size: .65rem;
    padding-left: 1rem;
    position: relative
}

.step-points li:before {
    background: hsla(38, 48%, 60%, .8);
    border-radius: 999px;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: .45rem;
    width: 5px
}

.process-section .btn.btn-primary {
    background: radial-gradient(circle at top, #caa567 0, #b27f37 44%, #8e6225 100%);
    border-radius: 999px;
    box-shadow: 0 18px 40px hsla(38, 48%, 60%, .35);
    color: #050b11
}

.process-section .btn.btn-primary:hover {
    box-shadow: 0 21px 50px hsla(38, 48%, 60%, .45);
    transform: translateY(-1px)
}

@media (min-width:640px) {
    .process-timeline {
        gap: 1rem
    }

    .process-step-body {
        padding-left: 3.7rem
    }
}

@media (min-width:768px) {
    .process-grid {
        align-items: stretch;
        gap: 1.6rem;
        grid-template-columns: .85fr 1.15fr
    }

    .process-overview {
        position: sticky;
        top: 5.5rem
    }

    .process-timeline:before {
        left: 25px
    }

    .process-step-head {
        gap: .75rem;
        padding: .85rem .85rem .85rem .8rem
    }

    .process-step-body {
        padding-right: 1.2rem
    }
}

@media (min-width:992px) {
    .process-header {
        gap: 1.25rem;
        margin-bottom: 2.4rem
    }

    .process-lead {
        max-width: 50rem
    }

    .process-grid {
        gap: 2.1rem
    }

    .overview-card {
        padding: 1.1rem 1.05rem 1rem
    }

    .process-timeline {
        gap: 1.1rem
    }

    .process-step.is-active .process-step-body {
        max-height: 500px
    }
}

@media (min-width:1200px) {
    .process-section {
        padding-inline: 1.5rem
    }

    .process-grid {
        gap: 2.6rem
    }

    .process-step-head {
        padding-right: 1.4rem
    }

    .process-step-body {
        padding-left: 4.1rem
    }
}

.process-timeline .process-step:after {
    background: radial-gradient(circle at top, rgba(232, 237, 245, 0) 0, rgba(232, 237, 245, 0) 100%);
    border-radius: inherit;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute
}

.overview-btn:focus-visible,
.process-step-head:focus-visible {
    outline: 2px solid hsla(38, 48%, 60%, .85);
    outline-offset: 3px
}

.process-section svg {
    display: block
}

.process-header,
.process-overview,
.process-timeline {
    isolation: isolate
}

.faq-suite {
    background: radial-gradient(circle at 0 0, #04080d 0, #04080d 55%, #010203 100%);
    overflow: hidden;
    padding: clamp(3.5rem, 4.8vw, 5.4rem) 1.25rem clamp(3.1rem, 3.6vw, 4.3rem);
    position: relative;
    z-index: 1
}

.faq-suite:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .14) 0, rgba(4, 8, 13, 0) 68%);
    height: 480px;
    inset: -30% auto auto -18%;
    width: 480px
}

.faq-suite:after,
.faq-suite:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.faq-suite:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .015) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 140px 100%;
    height: 60%;
    inset: auto -12% -26%;
    opacity: .4
}

.faq-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2
}

.faq-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.1rem
}

.faq-intro .badge {
    align-items: center;
    background: linear-gradient(145deg, hsla(38, 48%, 60%, .1), rgba(19, 28, 40, .2) 90%);
    border: 1px solid hsla(38, 48%, 60%, .55);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    gap: .4rem;
    letter-spacing: .13em;
    padding: .35rem .95rem .35rem .68rem;
    text-transform: uppercase
}

.faq-title {
    color: #fff;
    font-size: clamp(1.58rem, 3.1vw, 2.25rem);
    letter-spacing: -.012em;
    line-height: 1.02;
    max-width: 40rem
}

.faq-lead {
    color: rgba(232, 237, 245, .62);
    font-size: .8rem;
    line-height: 1.7;
    max-width: 46rem
}

.faq-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.1rem
}

.faq-intro-meta p {
    color: rgba(232, 237, 245, .4);
    font-size: .65rem
}

.faq-layout {
    align-items: flex-start;
    gap: 1.4rem
}

.faq-layout,
.faq-list {
    display: grid;
    grid-template-columns: 1fr
}

.faq-list {
    background: rgba(4, 8, 13, .24);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 1.15rem;
    gap: .45rem;
    min-height: 0;
    padding: .45rem
}

.faq-tab {
    align-items: center;
    background: rgba(4, 8, 13, .02);
    border: 1px solid transparent;
    border-radius: .8rem;
    cursor: pointer;
    display: flex;
    gap: .75rem;
    padding: .45rem .5rem .45rem .45rem;
    text-align: left;
    transition: background .18s ease, border .18s ease
}

.faq-tab:is(:hover, :focus-visible) {
    background: rgba(232, 237, 245, .015)
}

.faq-tab.is-active {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .06) 0, rgba(4, 8, 13, .2) 100%);
    border: 1px solid hsla(38, 48%, 60%, .4);
    box-shadow: 0 18px 25px rgba(0, 0, 0, .15)
}

.faq-tab-num {
    align-items: center;
    background: radial-gradient(circle, #caa567 0, #93652b 90%);
    border-radius: .75rem;
    color: #050b11;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .65rem;
    font-weight: 600;
    height: 34px;
    justify-content: center;
    width: 34px
}

.faq-tab-text {
    color: rgba(232, 237, 245, .75);
    font-size: .7rem
}

.faq-tab.is-active .faq-tab-text {
    color: #fff
}

.faq-panels {
    background: rgba(4, 8, 13, .28);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1.1rem;
    min-height: 320px;
    padding: .95rem .9rem .9rem
}

.faq-panel {
    animation: fadeIn .25s ease;
    display: none;
    max-width: 65ch
}

.faq-panel.is-visible {
    display: block
}

.faq-panel-title {
    color: #fff;
    font-size: .89rem;
    margin-bottom: .35rem
}

.faq-panel-text {
    color: rgba(232, 237, 245, .7);
    font-size: .71rem;
    line-height: 1.58;
    margin-bottom: .5rem;
    max-width: 46rem
}

.faq-panel-list {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    list-style: none;
    margin: 0 0 .55rem;
    padding-left: 0
}

.faq-panel-list li {
    background: rgba(4, 8, 13, .15);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: .75rem;
    color: rgba(232, 237, 245, .65);
    font-size: .66rem;
    line-height: 1.5;
    padding: .35rem .45rem .3rem .5rem
}

.faq-panel-list li strong {
    color: #fff;
    font-weight: 600
}

.faq-panel-foot {
    color: rgba(232, 237, 245, .35);
    font-size: .62rem;
    margin-top: .4rem
}

.faq-panels:before {
    background: linear-gradient(180deg, hsla(38, 48%, 60%, .55), hsla(38, 48%, 60%, 0));
    content: "";
    inset: .8rem auto .8rem -2.3rem;
    opacity: .45;
    pointer-events: none;
    position: absolute;
    width: 1px
}

.faq-panels {
    position: relative
}

@media (min-width:640px) {
    .faq-layout {
        gap: 1.3rem 1.6rem;
        grid-template-columns: minmax(0, .55fr) minmax(0, 1.1fr)
    }

    .faq-list {
        align-self: stretch;
        max-height: none
    }
}

@media (min-width:900px) {
    .faq-layout {
        gap: 1.5rem 1.8rem;
        grid-template-columns: minmax(0, .5fr) minmax(0, 1.2fr)
    }

    .faq-intro {
        max-width: none
    }

    .faq-list {
        position: sticky;
        top: 5.5rem
    }

    .faq-panels {
        min-height: 380px;
        padding: 1.05rem 1.1rem 1.1rem
    }

    .faq-panel-text {
        max-width: none
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.faq-suite .btn,
.faq-suite .btn-primary {
    font-size: .65rem;
    padding: .45rem .7rem
}

.faq-suite strong {
    font-weight: 600
}

.faq-panel .no-wrap {
    white-space: nowrap
}

@media (max-width:639px) {
    .faq-tab {
        min-width: 270px
    }
}

:root {
    --lj-bg: #04080d;
    --lj-surface: rgba(4, 8, 13, .4);
    --lj-surface-soft: rgba(4, 8, 13, .16);
    --lj-border: rgba(232, 237, 245, .02);
    --lj-gold: #caa567;
    --lj-text: #e8edf5;
    --lj-muted: rgba(232, 237, 245, .6);
    --lj-muted-2: rgba(232, 237, 245, .35);
    --lj-radius-lg: 1.25rem;
    --lj-radius-md: 1.05rem;
    --lj-shadow: 0 18px 36px rgba(0, 0, 0, .26)
}

.legal-journal {
    background: radial-gradient(circle at top, #04080d 0, #04080d 55%, #010203 100%);
    overflow: hidden;
    padding: clamp(3.3rem, 4.6vw, 5rem) 1.25rem clamp(3rem, 4.2vw, 4.5rem);
    position: relative;
    z-index: 1
}

.legal-journal:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .16) 0, rgba(4, 8, 13, 0) 70%);
    height: 420px;
    inset: -33% auto auto 44%;
    width: 420px
}

.legal-journal:after,
.legal-journal:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.legal-journal:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .016) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 150px 100%;
    height: 60%;
    inset: auto -18% -30%;
    opacity: .5
}

.legal-journal__shell {
    align-items: flex-start;
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: min(1240px, 100%)
}

.legal-journal__editorial {
    order: -1
}

.editorial__surface {
    background: var(--lj-surface);
    border: 1px solid var(--lj-border);
    border-radius: var(--lj-radius-lg);
    box-shadow: var(--lj-shadow);
    padding: 1.05rem 1rem 1.1rem
}

.legal-badge {
    align-items: center;
    background: linear-gradient(125deg, hsla(38, 48%, 60%, .12), rgba(12, 19, 30, .4));
    border: 1px solid hsla(38, 48%, 60%, .5);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .63rem;
    gap: .45rem;
    letter-spacing: .12em;
    margin-bottom: .75rem;
    padding: .35rem .9rem .35rem .68rem;
    text-transform: uppercase
}

.editorial__title {
    color: #fff;
    font-size: clamp(1.55rem, 3.1vw, 2.2rem);
    letter-spacing: -.012em;
    line-height: 1.03;
    margin-bottom: .6rem
}

.editorial__lead {
    color: rgba(232, 237, 245, .62);
    font-size: .78rem;
    line-height: 1.65;
    margin-bottom: .7rem
}

.editorial__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .85rem;
    margin-bottom: .85rem
}

.meta-item {
    align-items: center;
    color: rgba(232, 237, 245, .3);
    display: inline-flex;
    font-size: .63rem;
    gap: .25rem
}

.meta-item:before {
    background: hsla(38, 48%, 60%, .38);
    border-radius: 999px;
    content: "";
    height: 4px;
    width: 4px
}

.journal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .8rem
}

.journal-filter {
    background: rgba(4, 8, 13, .2);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 999px;
    color: rgba(232, 237, 245, .64);
    cursor: pointer;
    font-size: .62rem;
    padding: .32rem .75rem;
    transition: background .16s ease, border .16s ease, color .16s ease
}

.journal-filter.is-active,
.journal-filter:hover {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .15) 0, rgba(4, 8, 13, .25) 100%);
    border: 1px solid hsla(38, 48%, 60%, .5);
    color: #fff
}

.editorial__footnote {
    color: rgba(232, 237, 245, .35);
    font-size: .62rem;
    line-height: 1.5
}

.legal-journal__content {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr;
    justify-items: center
}

.journal-feature {
    background: radial-gradient(circle at top, rgba(4, 8, 13, .46) 0, rgba(4, 8, 13, .08) 100%);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1.25rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    display: grid;
    grid-template-columns: 1fr;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 250px;
    overflow: hidden
}

.feature__media {
    display: block;
    height: 170px;
    overflow: hidden;
    position: relative
}

.feature__media img {
    display: block;
    filter: saturate(.87);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.feature__label {
    background: rgba(4, 8, 13, .75);
    border: 1px solid rgba(232, 237, 245, .025);
    border-radius: 999px;
    bottom: .7rem;
    color: #fff;
    font-size: .6rem;
    left: .75rem;
    letter-spacing: .12em;
    padding: .22rem .65rem;
    position: absolute;
    text-transform: uppercase
}

.feature__body {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: .9rem .95rem 1.05rem
}

.feature__topline {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.feature__cat {
    color: rgba(232, 237, 245, .53);
    font-size: .62rem
}

.feature__date {
    color: rgba(232, 237, 245, .3);
    font-size: .6rem
}

.feature__title {
    font-size: 1rem;
    line-height: 1.18
}

.feature__title a {
    color: #fff;
    text-decoration: none
}

.feature__title a:hover {
    text-decoration: underline
}

.feature__text {
    color: rgba(232, 237, 245, .62);
    font-size: .73rem;
    line-height: 1.55;
    max-width: 40rem
}

.feature__link {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    gap: .35rem;
    margin-top: .15rem;
    opacity: .85;
    text-decoration: none;
    transition: opacity .12s ease, transform .12s ease
}

.feature__link:hover {
    opacity: 1;
    transform: translateX(2px)
}

.journal-stream {
    display: grid;
    gap: .85rem;
    grid-template-columns: 1fr
}

.stream-card {
    background: rgba(4, 8, 13, .25);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .55rem .65rem .6rem
}

.stream-card__media {
    background: rgba(2, 2, 2, .3);
    border-radius: .8rem;
    display: block;
    height: 155px;
    margin-bottom: .4rem;
    overflow: hidden
}

.stream-card__media img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.stream-card__header {
    align-items: center;
    display: flex;
    gap: .65rem;
    justify-content: space-between
}

.stream-card__badge {
    align-items: center;
    background: rgba(232, 237, 245, .02);
    border-radius: 999px;
    display: inline-flex;
    font-size: .58rem;
    gap: .35rem;
    padding: .23rem .6rem .2rem
}

.stream-card__badge--legal {
    border: 1px solid rgba(232, 237, 245, .01)
}

.stream-card__badge--recovery {
    background: radial-gradient(circle at top, hsla(38, 48%, 60%, .1) 0, rgba(4, 8, 13, 0) 80%);
    border: 1px solid hsla(38, 48%, 60%, .1)
}

.stream-card__date {
    color: rgba(232, 237, 245, .3);
    font-size: .6rem
}

.stream-card__title {
    font-size: .78rem;
    line-height: 1.35;
    margin-top: .15rem
}

.stream-card__title a {
    color: #fff;
    text-decoration: none
}

.stream-card__title a:hover {
    text-decoration: underline
}

.stream-card__excerpt {
    color: rgba(232, 237, 245, .6);
    font-size: .69rem;
    line-height: 1.52
}

.stream-card__footer {
    align-items: center;
    display: flex;
    gap: .55rem;
    justify-content: space-between;
    margin-top: .2rem
}

.stream-card__views {
    color: rgba(232, 237, 245, .35);
    font-size: .58rem
}

.stream-card__link {
    align-items: center;
    background: rgba(232, 237, 245, .03);
    border: 1px solid rgba(232, 237, 245, .01);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .6rem;
    gap: .25rem;
    padding: .25rem .6rem .25rem .55rem;
    text-decoration: none;
    transition: background .12s ease, transform .12s ease
}

.stream-card__link:hover {
    background: rgba(232, 237, 245, .06);
    transform: translateX(1px)
}

.journal-info {
    background: rgba(4, 8, 13, .14);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: .95rem;
    max-width: 500px;
    padding: .85rem .58rem
}

.journal-info__text {
    color: rgba(232, 237, 245, .4);
    font-size: .92rem;
    font-style: italic;
    line-height: 1.75;
    padding: .7rem
}

.journal-post {
    border: 1px solid rgba(232, 237, 245, .15);
    max-width: 500px;
    transition: border .13s ease, background .13s ease, transform .13s ease
}

.journal-post:hover {
    background: radial-gradient(circle at top, rgba(4, 8, 13, .5) 0, rgba(4, 8, 13, .15) 100%);
    border: 1px solid hsla(38, 48%, 60%, .055);
    transform: translateY(-1px)
}

@media (min-width:640px) {
    .journal-feature {
        grid-template-columns: .9fr 1.1fr;
        min-height: 230px
    }

    .feature__media {
        height: 100%;
        min-height: 230px
    }

    .stream-card__media {
        height: 135px
    }
}

@media (min-width:880px) {
    .legal-journal__shell {
        gap: 1.9rem;
        grid-template-columns: minmax(19rem, .7fr) minmax(0, 1.3fr)
    }

    .legal-journal__editorial {
        align-self: flex-start;
        position: sticky;
        top: 5.25rem
    }
}

@media (min-width:1100px) {
    .legal-journal__content {
        gap: 1.3rem;
        grid-template-columns: minmax(0, .85fr) minmax(14rem, .65fr)
    }

    .journal-stream {
        max-height: 570px
    }

    .journal-stream::-webkit-scrollbar {
        width: 4px
    }

    .journal-stream::-webkit-scrollbar-thumb {
        background: rgba(232, 237, 245, .05);
        border-radius: 999px
    }

    .journal-stream::-webkit-scrollbar-track {
        background: rgba(4, 8, 13, .01)
    }
}

@media (min-width:1320px) {
    .legal-journal {
        padding-inline: 0
    }

    .legal-journal__shell {
        max-width: 1300px
    }
}

.feature__link:focus-visible,
.feature__media:focus-visible,
.feature__title a:focus-visible,
.journal-filter:focus-visible,
.stream-card__link:focus-visible,
.stream-card__media:focus-visible,
.stream-card__title a:focus-visible {
    outline: 2px solid hsla(38, 48%, 60%, .85);
    outline-offset: 3px
}

:root {
    --cb-bg: radial-gradient(circle at top, #04080d 0%, #04080d 50%, #010203 100%);
    --cb-surface: rgba(6, 12, 18, .75);
    --cb-surface-2: rgba(5, 10, 16, .25);
    --cb-border: hsla(38, 48%, 60%, .1);
    --cb-border-strong: hsla(38, 48%, 60%, .55);
    --cb-accent: #caa567;
    --cb-text: #eef2f6;
    --cb-muted: rgba(238, 242, 246, .6);
    --cb-muted-2: rgba(238, 242, 246, .3);
    --cb-radius-lg: 1.35rem;
    --cb-radius-md: 0.8rem;
    --cb-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    --cb-input-bg: rgba(10, 17, 25, .9);
    --cb-input-border: rgba(238, 242, 246, .04);
    --cb-input-border-focus: hsla(38, 48%, 60%, .8);
    --cb-input-shadow-focus: 0 0 0 3px hsla(38, 48%, 60%, .2)
}

.contact-block {
    background: var(--cb-bg);
    overflow: hidden;
    padding: clamp(3.5rem, 4.8vw, 5.2rem) 1.25rem clamp(3rem, 4.2vw, 4.6rem);
    position: relative;
    z-index: 1
}

.contact-block:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .35) 0, rgba(4, 8, 13, 0) 75%);
    filter: blur(3px);
    height: 320px;
    right: -6%;
    top: -18%;
    width: 320px
}

.contact-block:after,
.contact-block:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.contact-block:after {
    background-image: linear-gradient(90deg, rgba(232, 237, 245, .018) 1px, rgba(4, 8, 13, 0) 0);
    background-size: 145px 100%;
    height: 50%;
    inset: auto -12% -25%;
    opacity: .35
}

.contact-block__shell {
    display: flex;
    flex-direction: column;
    gap: clamp(1.8rem, 3vw, 2.2rem);
    margin-inline: auto;
    width: min(1080px, 100%)
}

.contact-block__intro {
    max-width: 56rem;
    text-align: left
}

.contact-block__badge {
    align-items: center;
    background: linear-gradient(130deg, hsla(38, 48%, 60%, .12), rgba(9, 13, 21, .42));
    border: 1px solid hsla(38, 48%, 60%, .6);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .6rem;
    gap: .4rem;
    letter-spacing: .14em;
    margin-bottom: .85rem;
    padding: .35rem 1rem .4rem .75rem;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content
}

.contact-block__title {
    color: #fff;
    font-size: clamp(1.6rem, 3.1vw, 2.25rem);
    letter-spacing: -.01em;
    line-height: 1.04;
    margin-bottom: .6rem
}

.contact-block__lead {
    color: var(--cb-muted);
    font-size: .8rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    max-width: 44rem
}

.contact-block__formwrap {
    display: block
}

.contact-form {
    backdrop-filter: blur(10px);
    background: rgba(5, 10, 16, .75);
    border: 1px solid rgba(232, 237, 245, .015);
    border-radius: 1.4rem;
    box-shadow: var(--cb-shadow);
    overflow: hidden;
    padding: 1.2rem 1.15rem 1.35rem;
    position: relative
}

.contact-form:before {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .22) 0, rgba(5, 10, 16, 0) 70%);
    content: "";
    height: 160px;
    inset: -16% auto auto 74%;
    pointer-events: none;
    position: absolute;
    width: 160px
}

.contact-form__head {
    margin-bottom: 1rem
}

.contact-form__title {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: .25rem
}

.contact-form__text {
    color: rgba(232, 237, 245, .56);
    font-size: .68rem;
    max-width: 30rem
}

.contact-form__grid {
    display: grid;
    gap: .65rem .8rem;
    grid-template-columns: 1fr
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.form-field label {
    color: rgba(232, 237, 245, .8);
    font-size: .65rem
}

.form-field input,
.form-field select,
.form-field textarea {
    background: linear-gradient(140deg, rgba(13, 23, 34, .9), rgba(15, 26, 40, .7));
    border: 1px solid rgba(232, 237, 245, .08);
    border-radius: .75rem;
    color: #fff;
    font-family: inherit;
    font-size: .72rem;
    padding: .6rem .65rem .55rem;
    transition: border .15s ease, box-shadow .15s ease, background .15s ease
}

.form-field input::-moz-placeholder,
.form-field textarea::-moz-placeholder {
    color: rgba(232, 237, 245, .25)
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(232, 237, 245, .25)
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: rgba(12, 20, 30, .95);
    border: 1px solid hsla(38, 48%, 60%, .9);
    box-shadow: 0 0 0 3px hsla(38, 48%, 60%, .16);
    outline: none
}

.form-field textarea {
    min-height: 7.6rem;
    resize: vertical
}

.form-field--span2 {
    grid-column: 1/-1
}

.select-wrapper {
    position: relative
}

.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2rem;
    width: 100%
}

.select-wrapper:after {
    border-bottom: 1.6px solid rgba(232, 237, 245, .58);
    border-right: 1.6px solid rgba(232, 237, 245, .58);
    content: "";
    height: 9px;
    pointer-events: none;
    position: absolute;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px
}

.field-meta {
    align-items: center;
    display: flex;
    gap: .5rem;
    justify-content: space-between
}

.field-error {
    color: #ffb4b4;
    display: none;
    font-size: .6rem
}

.char-count {
    color: rgba(232, 237, 245, .35);
    font-size: .6rem
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
    border-color: rgba(234, 84, 85, .9);
    box-shadow: 0 0 0 3px rgba(234, 84, 85, .12)
}

.form-field.is-invalid .field-error {
    display: inline-block
}

.check-row {
    border: 1px solid transparent;
    border-radius: .6rem;
    padding: .45rem .6rem .35rem
}

.check-row.is-invalid {
    background: rgba(234, 84, 85, .04);
    border-color: rgba(234, 84, 85, .85)
}

.check-row .field-error {
    color: #ffb4b4;
    display: none;
    font-size: .6rem
}

.check-row.is-invalid .field-error {
    display: block;
    grid-column: 1/-1
}

.contact-form__consents {
    display: grid;
    gap: .6rem;
    margin-top: .9rem
}

.check-row {
    align-items: flex-start;
    color: rgba(232, 237, 245, .72);
    display: grid;
    font-size: .65rem;
    gap: .45rem .55rem;
    grid-template-columns: auto 1fr
}

.check-row input[type=checkbox] {
    accent-color: #caa567;
    height: 16px;
    margin-top: .1rem;
    width: 16px
}

.check-row a {
    color: rgba(232, 237, 245, .98);
    text-decoration: underline;
    text-underline-offset: 3px
}

.check-row .field-error {
    grid-column: 1/-1
}

.check-row--soft {
    color: rgba(232, 237, 245, .4)
}

.contact-form__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1rem
}

.btn.btn-primary {
    align-items: center;
    background: radial-gradient(circle at top, #caa567 0, #b1813a 50%, #8d6223 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 14px 30px hsla(38, 48%, 60%, .32);
    color: #050b11;
    cursor: pointer;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 600;
    gap: .5rem;
    letter-spacing: .01em;
    padding: .6rem 1.35rem .65rem;
    transition: transform .15s ease, box-shadow .15s ease
}

.btn.btn-primary:hover {
    box-shadow: 0 18px 40px hsla(38, 48%, 60%, .4);
    transform: translateY(-1px)
}

.btn-icon {
    background: rgba(5, 11, 17, .18);
    border-radius: 999px;
    display: grid;
    height: 26px;
    place-items: center;
    width: 26px
}

.submit-caption {
    color: rgba(232, 237, 245, .35);
    font-size: .62rem
}

@media (min-width:640px) {
    .contact-form {
        padding: 1.4rem 1.4rem 1.6rem
    }

    .contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:900px) {
    .contact-block__shell {
        gap: 2.1rem
    }

    .contact-form {
        padding: 1.6rem 1.6rem 1.75rem
    }

    .contact-form__title {
        font-size: 1.12rem
    }
}

@media (min-width:1180px) {
    .contact-block {
        padding-inline: 1.5rem
    }

    .contact-form__grid {
        -moz-column-gap: 1rem;
        column-gap: 1rem
    }
}

.contact-form :is(input, select, textarea, button):focus-visible {
    outline: 2px solid hsla(38, 48%, 60%, .75);
    outline-offset: 3px
}

:root {
    --lf-bg: radial-gradient(circle at top, #04070b 0%, #05070a 35%, #020203 95%);
    --lf-panel: rgba(3, 6, 9, .4);
    --lf-border: hsla(41, 54%, 75%, .12);
    --lf-border-soft: hsla(41, 54%, 75%, .035);
    --lf-gold: #caa567;
    --lf-gold-soft: hsla(38, 48%, 60%, .25);
    --lf-text: #eef1f5;
    --lf-muted: rgba(237, 241, 246, .55);
    --lf-muted-2: rgba(237, 241, 246, .4);
    --lf-muted-3: rgba(237, 241, 246, .22);
    --lf-radius-lg: 1.35rem;
    --lf-radius-md: 0.85rem;
    --lf-radius-sm: 0.5rem;
    --lf-shadow: 0 18px 60px rgba(0, 0, 0, .28);
    --lf-link: hsla(0, 0%, 96%, .9);
    --lf-link-hover: #fff;
    --lf-grid-gap: clamp(1.25rem, 2.8vw, 2.1rem);
    --lf-font-sm: 0.7rem;
    --lf-font-xs: 0.6rem;
    --lf-line: 1px solid rgba(237, 241, 246, .028)
}

.law-footer {
    background: var(--lf-bg);
    overflow: hidden;
    padding: clamp(2.8rem, 4.2vw, 4.1rem) 1.15rem clamp(2.3rem, 3.2vw, 3.1rem);
    position: relative;
    z-index: 1
}

.law-footer__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
    margin-inline: auto;
    width: min(1180px, 100%)
}

.law-footer__top {
    align-items: flex-start;
    background: radial-gradient(circle at top, rgba(6, 9, 13, .55) 0, rgba(2, 3, 4, .25) 70%);
    border: 1px solid rgba(237, 241, 246, .018);
    border-radius: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.2rem);
    padding: .85rem .9rem 1rem
}

.law-footer__brandblock {
    min-width: 14rem
}

@media (min-width:768px) {
    .law-footer__brandblock {
        flex: 1 1 15rem
    }
}

.law-footer__logo {
    align-items: center;
    display: inline-flex;
    gap: .55rem;
    margin-bottom: .45rem
}

.law-footer__logo img {
    display: block;
    filter: drop-shadow(0 3px 11px rgba(0, 0, 0, .25));
    height: 28px;
    width: auto
}

.law-footer__about {
    color: var(--lf-muted);
    font-size: .66rem;
    line-height: 1.6;
    max-width: 30rem
}

.nowrap {
    white-space: nowrap
}

.law-footer__highlights {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.law-footer__badge {
    background: linear-gradient(140deg, hsla(38, 48%, 60%, .05), rgba(4, 6, 9, 0));
    border: 1px solid hsla(38, 48%, 60%, .35);
    border-radius: .8rem;
    min-width: 7.3rem;
    padding: .4rem .7rem .45rem
}

.badge-title {
    color: #fff;
    font-size: .72rem;
    font-weight: 600
}

.badge-meta {
    color: rgba(237, 241, 246, .48);
    display: block;
    font-size: .6rem;
    margin-top: .2rem
}

.law-footer__grid {
    align-items: flex-start;
    display: grid;
    gap: var(--lf-grid-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    min-width: 0
}

.footer-title {
    color: hsla(0, 0%, 100%, .82);
    font-size: .7rem;
    letter-spacing: .08em;
    margin-bottom: .25rem;
    text-transform: uppercase
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none
}

.footer-contact__item {
    align-items: flex-start;
    background: radial-gradient(circle, rgba(5, 8, 11, .12) 0, rgba(5, 8, 11, 0) 80%);
    border: 1px solid transparent;
    border-radius: .6rem;
    display: grid;
    gap: .5rem .45rem;
    grid-template-columns: auto 1fr;
    padding: .45rem .5rem
}

.footer-contact__item:hover {
    background: radial-gradient(circle, rgba(5, 8, 11, .4) 0, rgba(5, 8, 11, 0) 90%);
    border-color: hsla(38, 48%, 60%, .1)
}

.footer-contact__icon {
    background: hsla(38, 48%, 60%, .09);
    border: 1px solid hsla(38, 48%, 60%, .09);
    border-radius: .65rem;
    color: hsla(34, 26%, 88%, .98);
    display: grid;
    height: 1.45rem;
    place-items: center;
    width: 1.45rem
}

.footer-contact__icon svg {
    height: .95rem;
    width: .95rem
}

.footer-contact__body {
    min-width: 0
}

.footer-contact__label {
    color: rgba(237, 241, 246, .4);
    font-size: .58rem;
    letter-spacing: .05em;
    text-transform: uppercase
}

.footer-contact__value {
    color: var(--lf-text);
    font-size: .68rem;
    line-height: 1.4
}

.footer-contact__item--row {
    align-items: center
}

.footer-linkline {
    border-bottom: 1px solid hsla(0, 0%, 100%, .03);
    color: #fff;
    text-decoration: none;
    transition: border .15s ease, color .15s ease
}

.footer-linkline:hover {
    border-bottom-color: hsla(38, 48%, 60%, .6);
    color: #fff
}

.footer-links__rows {
    display: flex;
    gap: 2rem
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    list-style: none
}

.footer-links li a {
    align-items: center;
    color: rgba(237, 241, 246, .62);
    display: inline-flex;
    font-size: .66rem;
    gap: .35rem;
    text-decoration: none;
    transition: color .15s ease, transform .15s ease
}

.footer-links li a:before {
    background: hsla(38, 48%, 60%, 0);
    border-radius: 999px;
    content: "";
    height: 4px;
    transition: background .15s ease;
    width: 4px
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(.06rem)
}

.footer-links li a:hover:before {
    background: hsla(38, 48%, 60%, .75)
}

.footer-links--legal {
    opacity: .9
}

.footer-small-hint {
    color: rgba(237, 241, 246, .35);
    font-size: .6rem;
    line-height: 1.5;
    margin-top: .4rem
}

.footer-col--action {
    background: radial-gradient(circle at top, rgba(10, 12, 16, .1) 0, rgba(2, 3, 4, 0) 100%);
    border: 1px solid rgba(237, 241, 246, .018);
    border-radius: .9rem;
    padding: .7rem .7rem .9rem
}

.footer-action__text {
    color: rgba(237, 241, 246, .55);
    font-size: .66rem;
    line-height: 1.6
}

.footer-btn {
    align-items: center;
    background: radial-gradient(circle at top, #caa567 0, #b1813a 60%, #8f6323 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 13px 30px hsla(38, 48%, 60%, .18);
    color: #04070b;
    cursor: pointer;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 600;
    gap: .45rem;
    margin-top: .55rem;
    padding: .5rem 1.05rem .55rem;
    text-decoration: none;
    transition: transform .13s ease, box-shadow .13s ease
}

.footer-btn:hover {
    box-shadow: 0 16px 32px hsla(38, 48%, 60%, .22);
    transform: translateY(-1px)
}

.footer-btn__icon {
    background: rgba(4, 7, 11, .12);
    border-radius: 999px;
    display: grid;
    height: 22px;
    place-items: center;
    width: 22px
}

.footer-seals {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    list-style: none;
    margin-top: .7rem
}

.footer-seals li {
    background: rgba(5, 8, 11, .25);
    border: 1px solid rgba(237, 241, 246, .015);
    border-radius: .5rem;
    padding: .4rem .45rem
}

.seal-title {
    color: #fff;
    display: block;
    font-size: .63rem
}

.seal-note {
    color: rgba(237, 241, 246, .45);
    display: block;
    font-size: .58rem;
    margin-top: .12rem
}

.law-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(237, 241, 246, .022);
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: space-between;
    padding-top: .6rem
}

.footer-copy {
    color: rgba(237, 241, 246, .4);
    font-size: .58rem
}

.footer-disclaimer {
    color: rgba(237, 241, 246, .23);
    font-size: .58rem
}

.footer-decor {
    pointer-events: none;
    position: absolute
}

.footer-decor--grid {
    background-image: linear-gradient(90deg, rgba(237, 241, 246, .01) 1px, transparent 0);
    background-size: 120px 100%;
    height: 120px;
    inset: auto 0 0;
    opacity: .45
}

.footer-decor--circle {
    background: radial-gradient(circle, hsla(38, 48%, 60%, .34) 0, rgba(4, 7, 11, 0) 70%);
    filter: blur(2px);
    height: 260px;
    right: -140px;
    top: -70px;
    width: 260px
}

@media (max-width:980px) {
    .law-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer-col--action {
        order: 3
    }

    .footer-links__rows {
        gap: 1.2rem
    }
}

@media (max-width:720px) {
    .law-footer {
        padding-inline: .9rem
    }

    .law-footer__top {
        flex-direction: column
    }

    .law-footer__grid {
        grid-template-columns: 1fr
    }

    .footer-col--action {
        padding: .7rem .65rem .8rem
    }

    .law-footer__bottom {
        align-items: flex-start;
        flex-direction: column
    }
}

@media (min-width:1300px) {
    .law-footer {
        padding-inline: 1.5rem
    }
}

.law-footer a:focus-visible,
.law-footer button:focus-visible {
    border-radius: .25rem;
    outline: 2px solid hsla(38, 48%, 60%, .6);
    outline-offset: 3px
}

.footer-contact__item a {
    color: inherit
}

.footer-contact__item svg {
    display: block
}

@media (min-width:1500px) {
    .law-footer {
        background: radial-gradient(circle at 35% 10%, rgba(7, 11, 16, .55) 0, #04070b 50%, #020203 100%)
    }
}

:root {
    --cc-bg: rgba(7, 11, 17, .98);
    --cc-surface: #0f1723;
    --cc-border: hsla(40, 56%, 67%, .2);
    --cc-accent: #d6b472;
    --cc-accent-soft: hsla(40, 55%, 64%, .1);
    --cc-text: #edf1f6;
    --cc-muted: rgba(237, 241, 246, .62);
    --cc-danger: #f97362;
    --cc-radius-lg: 1.15rem;
    --cc-radius-md: 1rem;
    --cc-shadow: 0 30px 60px rgba(0, 0, 0, .4);
    --cc-gap: 1.1rem;
    --cc-transition: 0.15s ease-out;
    --cc-z: 1200
}

.cc-bar {
    backdrop-filter: blur(11px);
    background: radial-gradient(circle at top, rgba(17, 24, 39, .9), #070b11);
    border: 1px solid hsla(40, 55%, 64%, .12);
    border-left-color: hsla(40, 55%, 64%, .38);
    border-radius: 1.25rem;
    bottom: 1.5rem;
    box-shadow: var(--cc-shadow);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateX(-50%);
    transition: opacity .12s ease-out, transform .12s ease-out;
    width: min(1160px, 92vw);
    z-index: var(--cc-z);
    z-index: 800
}

.cc-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.cc-bar__shell {
    align-items: center;
    display: grid;
    gap: 1rem 1.1rem;
    grid-template-columns: auto 1fr auto;
    padding: .85rem 1.4rem .85rem 1rem
}

.cc-bar__icon {
    display: grid;
    height: 3.25rem;
    place-items: center;
    position: relative;
    width: 3.25rem
}

.cc-bar__ring {
    background: radial-gradient(circle, hsla(40, 55%, 64%, .35) 0, hsla(40, 55%, 64%, 0) 76%);
    border-radius: 999px;
    inset: .1rem;
    position: absolute
}

.cc-bar__shield {
    color: #d6b472;
    height: 2.35rem;
    width: 2.35rem
}

.cc-bar__content {
    display: grid;
    gap: .25rem
}

.cc-bar__title {
    color: var(--cc-text);
    font-size: .9rem;
    font-weight: 600
}

.cc-bar__text {
    color: var(--cc-muted);
    font-size: .68rem;
    line-height: 1.5
}

.cc-bar__policy {
    border-bottom: 1px solid hsla(40, 55%, 64%, .2);
    color: rgba(237, 241, 246, .85);
    font-size: .62rem;
    text-decoration: none;
    width: -moz-max-content;
    width: max-content
}

.cc-bar__actions {
    display: flex;
    gap: .4rem
}

.cc-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: .65rem;
    font-weight: 500;
    padding: .4rem .85rem .43rem;
    transition: transform var(--cc-transition), box-shadow var(--cc-transition), border var(--cc-transition);
    white-space: nowrap
}

.cc-btn:focus-visible {
    outline: 2px solid hsla(40, 55%, 64%, .55);
    outline-offset: 2px
}

.cc-btn--ghost {
    background: rgba(237, 241, 246, .02);
    border-color: rgba(237, 241, 246, .04);
    color: rgba(237, 241, 246, .8)
}

.cc-btn--ghost:hover {
    background: rgba(237, 241, 246, .07)
}

.cc-btn--outline {
    background: hsla(40, 55%, 64%, .06);
    border-color: hsla(40, 55%, 64%, .12);
    color: #fff
}

.cc-btn--outline:hover {
    background: hsla(40, 55%, 64%, .12)
}

.cc-btn--primary {
    background: linear-gradient(135deg, #e1bd79, #c49a57);
    border-color: #c7994d;
    box-shadow: 0 8px 20px rgba(193, 146, 73, .35);
    color: #0d1726
}

.cc-btn--primary:hover {
    transform: translateY(-.5px)
}

@media (max-width:820px) {
    .cc-bar__shell {
        grid-template-columns: 1fr;
        text-align: left
    }

    .cc-bar {
        inset: auto 1rem 1rem 1rem;
        transform: translateX(0);
        width: auto
    }

    .cc-bar.is-visible {
        transform: translateY(0)
    }

    .cc-bar__actions {
        justify-content: flex-start
    }
}

.cc-modal {
    display: grid;
    inset: 0;
    opacity: 0;
    place-items: center;
    pointer-events: none;
    position: fixed;
    transition: opacity .15s ease-out;
    z-index: calc(var(--cc-z) + 20)
}

.cc-modal.is-open {
    opacity: 1;
    pointer-events: auto
}

.cc-modal__overlay {
    backdrop-filter: blur(2px);
    background: rgba(4, 6, 9, .5);
    inset: 0;
    position: absolute
}

.cc-modal__dialog {
    background: radial-gradient(circle at top, #0f1723 0, #0a0f16 70%);
    border: 1px solid hsla(40, 55%, 64%, .35);
    border-radius: 1.35rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .55);
    display: flex;
    flex-direction: column;
    gap: .8rem;
    max-height: min(87vh, 680px);
    overflow: hidden;
    padding: 1.05rem 1.15rem;
    position: relative;
    width: min(580px, 94vw)
}

.cc-modal__head {
    align-items: flex-start;
    display: flex;
    gap: .85rem
}

.cc-modal__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600
}

.cc-modal__subtitle {
    color: rgba(237, 241, 246, .6);
    font-size: .68rem;
    line-height: 1.45;
    margin-top: .25rem
}

.cc-modal__close {
    background: rgba(237, 241, 246, .03);
    border: 1px solid rgba(237, 241, 246, .05);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: grid;
    flex-shrink: 0;
    height: 2rem;
    place-items: center;
    width: 2rem
}

.cc-modal__body {
    display: grid;
    gap: .65rem;
    margin-top: .35rem;
    overflow-y: auto;
    padding-right: .35rem
}

.cc-block {
    background: rgba(5, 9, 14, .3);
    border: 1px solid rgba(237, 241, 246, .015);
    border-radius: .85rem;
    display: grid;
    gap: .35rem;
    padding: .65rem .6rem .6rem
}

.cc-block--locked {
    background: radial-gradient(circle, hsla(40, 55%, 64%, .06) 0, rgba(5, 9, 14, .3) 70%);
    border: 1px solid hsla(40, 55%, 64%, .25)
}

.cc-block__head {
    align-items: center;
    display: flex;
    gap: .65rem;
    justify-content: space-between
}

.cc-block__title {
    color: #fff;
    font-size: .72rem
}

.cc-block__text {
    color: rgba(237, 241, 246, .6);
    font-size: .6rem;
    margin-top: .05rem
}

.cc-block__desc {
    color: rgba(237, 241, 246, .55);
    font-size: .58rem;
    line-height: 1.35
}

.cc-block__badge {
    background: hsla(40, 55%, 64%, .08);
    border: 1px solid hsla(40, 55%, 64%, .4);
    border-radius: 999px;
    color: #fff;
    font-size: .5rem;
    letter-spacing: .04em;
    padding: .25rem .5rem;
    text-transform: uppercase
}

.cc-toggle {
    flex: 0 0 auto;
    height: 1.1rem;
    position: relative;
    width: 2.15rem
}

.cc-toggle input {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.cc-toggle__track {
    background: rgba(237, 241, 246, .05);
    border: 1px solid rgba(237, 241, 246, .12);
    border-radius: 999px;
    inset: 0;
    position: absolute;
    transition: background .12s ease-out
}

.cc-toggle__thumb {
    background: #edf1f6;
    border-radius: 999px;
    height: .7rem;
    left: 2px;
    position: absolute;
    top: 3.2px;
    transition: transform .12s ease-out, background .12s ease-out;
    width: .7rem
}

.cc-toggle input:checked+.cc-toggle__track {
    background: hsla(40, 55%, 64%, .4);
    border-color: hsla(40, 55%, 64%, .55)
}

.cc-toggle input:checked~.cc-toggle__thumb {
    background: #fff;
    transform: translateX(.95rem)
}

.cc-modal__foot {
    align-items: center;
    border-top: 1px solid rgba(237, 241, 246, .02);
    display: flex;
    gap: .4rem;
    justify-content: space-between;
    padding-top: .45rem
}

.cc-modal__note {
    color: rgba(237, 241, 246, .45);
    font-size: .58rem;
    max-width: 58%
}

.cc-modal__actions {
    display: flex;
    gap: .4rem
}

@media (max-width:540px) {
    .cc-modal__dialog {
        width: 92vw
    }

    .cc-modal__foot {
        align-items: flex-start;
        flex-direction: column
    }

    .cc-modal__note {
        max-width: 100%
    }
}

:root {
    --se-bg: rgba(7, 11, 17, .95);
    --se-border: hsla(40, 55%, 64%, .22);
    --se-gold: #d6b472;
    --se-muted: rgba(237, 241, 246, .45);
    --se-shadow: 0 14px 34px rgba(0, 0, 0, .35)
}

.scroll-elevator {
    align-items: center;
    bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    pointer-events: none;
    position: fixed;
    right: 1.3rem;
    z-index: 900
}

.scroll-elevator__btn {
    background: radial-gradient(circle, rgba(18, 24, 34, .9) 0, rgba(4, 6, 9, .85) 90%);
    border: 1px solid hsla(40, 55%, 64%, .25);
    border-radius: 999px;
    box-shadow: var(--se-shadow);
    cursor: pointer;
    display: grid;
    height: 3.3rem;
    place-items: center;
    pointer-events: auto;
    position: relative;
    transition: transform .1s ease-out, box-shadow .1s ease-out;
    width: 3.3rem;
    z-index: 900
}

.scroll-elevator__btn:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    transform: translateY(-1px)
}

.scroll-elevator__progress {
    height: calc(100% + 8px);
    inset: -4px;
    position: absolute;
    transform: rotate(-90deg);
    width: calc(100% + 8px)
}

.scroll-elevator__fill,
.scroll-elevator__track {
    fill: none;
    stroke-linecap: round;
    stroke-width: 3.4
}

.scroll-elevator__track {
    stroke: hsla(40, 55%, 64%, .19)
}

.scroll-elevator__fill {
    stroke: var(--se-gold);
    stroke-dasharray: 276;
    stroke-dashoffset: 276;
    transition: stroke-dashoffset .1s linear
}

.scroll-elevator__icon {
    color: #f9fafb;
    display: grid;
    height: 1.35rem;
    place-items: center;
    position: relative;
    width: 1.35rem;
    z-index: 2
}

.scroll-elevator {
    opacity: 0;
    transform: translateY(.6rem);
    transition: opacity .15s ease-out, transform .15s ease-out
}

.scroll-elevator.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

@media (max-width:640px) {
    .scroll-elevator {
        bottom: .8rem;
        right: .8rem
    }
}

:root {
    --ih-bg: #05080c;
    --ih-surface: rgba(10, 14, 20, .28);
    --ih-border: hsla(39, 51%, 67%, .25);
    --ih-border-soft: hsla(39, 51%, 67%, .06);
    --ih-gold: #d5b577;
    --ih-gold2: #c3964b;
    --ih-text: #edf1f6;
    --ih-muted: rgba(237, 241, 246, .5);
    --ih-radius-lg: 1.35rem;
    --ih-radius-md: 1rem;
    --ih-shadow: 0 18px 50px rgba(0, 0, 0, .6);
    --ih-grid: rgba(237, 241, 246, .028);
    --ih-gap: clamp(1.25rem, 2vw, 1.8rem);
    --ih-z: 400
}

.inner-hero {
    background: radial-gradient(circle at 18% 4%, #0b1018 0, #05080c 45%, #05080c 100%);
    display: block;
    isolation: isolate;
    min-height: 240px;
    overflow: hidden;
    position: relative
}

.inner-hero__backdrop {
    pointer-events: none;
    z-index: 0
}

.ih-layer,
.inner-hero__backdrop {
    inset: 0;
    position: absolute
}

.ih-layer--gradient {
    background: radial-gradient(circle at 9% 8%, hsla(39, 52%, 65%, .3), rgba(5, 8, 12, 0) 40%), radial-gradient(circle at 90% 20%, rgba(9, 78, 118, .66), rgba(5, 8, 12, 0) 65%), linear-gradient(120deg, #05080c, rgba(5, 8, 12, .1) 80%)
}

.ih-layer--grid {
    background-image: linear-gradient(90deg, var(--ih-grid) 1px, transparent 1px), linear-gradient(0deg, var(--ih-grid) 1px, transparent 1px);
    background-size: 50px 50px;
    mix-blend-mode: screen;
    opacity: .7
}

.ih-orb {
    border-radius: 999px;
    filter: blur(140px);
    height: 270px;
    opacity: .55;
    position: absolute;
    width: 270px
}

.ih-orb--tl {
    background: hsla(39, 51%, 67%, .85);
    left: -80px;
    top: -90px
}

.ih-orb--br {
    background: rgba(5, 144, 202, .68);
    bottom: -110px;
    right: -140px
}

.ih-line {
    background: radial-gradient(circle, rgba(237, 241, 246, .055) 0, rgba(5, 8, 12, 0) 70%);
    position: absolute
}

.ih-line--v {
    background: linear-gradient(180deg, rgba(237, 241, 246, 0), rgba(237, 241, 246, .08) 50%, rgba(237, 241, 246, 0));
    inset: 0 5.8rem 0 auto;
    opacity: .9;
    width: 1.2px
}

.ih-line--h {
    background: linear-gradient(90deg, rgba(237, 241, 246, 0), rgba(237, 241, 246, .11) 30%, rgba(237, 241, 246, 0));
    height: 1.2px;
    inset: auto 2.2rem 1.35rem 2.2rem;
    opacity: .6
}

.inner-hero__shell {
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.1rem) 0 clamp(1.9rem, 3.2vw, 2.35rem);
    position: relative;
    width: min(1180px, 92vw);
    z-index: 1
}

.inner-hero__layout {
    align-items: center;
    display: grid;
    gap: min(3rem, 4.2vw);
    grid-template-columns: minmax(0, 1.05fr) minmax(180px, .6fr)
}

.inner-hero__content {
    display: grid;
    gap: 1rem;
    min-width: 0
}

.ih-breadcrumbs {
    backdrop-filter: blur(6px);
    background: rgba(5, 8, 12, .25);
    border: 1px solid rgba(237, 241, 246, .015);
    border-radius: 999px;
    display: inline-flex;
    padding: .38rem .6rem .38rem .35rem;
    width: -moz-fit-content;
    width: fit-content
}

.ih-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.ih-breadcrumbs__item,
.ih-breadcrumbs__list {
    align-items: center;
    display: inline-flex;
    gap: .3rem
}

.ih-breadcrumbs__item {
    font-size: .6rem;
    letter-spacing: .02em
}

.ih-breadcrumbs__link {
    align-items: center;
    border-radius: 999px;
    color: rgba(237, 241, 246, .9);
    display: inline-flex;
    gap: .35rem;
    padding: .16rem .6rem .16rem .45rem;
    text-decoration: none;
    transition: background .12s ease-out, color .12s ease-out
}

.ih-breadcrumbs__link:hover {
    background: hsla(39, 53%, 65%, .18);
    color: #fff
}

.ih-breadcrumbs__icon {
    height: 1.05rem;
    width: 1.05rem
}

.ih-breadcrumbs__sep {
    align-items: center;
    color: rgba(237, 241, 246, .35);
    display: inline-flex;
    height: 1.25rem;
    justify-content: center;
    width: 1.25rem
}

.ih-breadcrumbs__item--current {
    color: rgba(237, 241, 246, .6);
    padding: .15rem .35rem .15rem .1rem
}

.inner-hero__title {
    color: #fff;
    font-size: clamp(2.1rem, 3.5vw, 2.5rem);
    letter-spacing: .01em;
    line-height: 1.05;
    max-width: 23rem;
    position: relative;
    text-wrap: balance
}

.inner-hero__title:after {
    background: linear-gradient(135deg, #d5b577, #a4742f 80%);
    border-radius: 999px;
    bottom: -1.05rem;
    box-shadow: 0 8px 20px hsla(39, 53%, 65%, .4);
    content: "";
    height: 3px;
    left: .1rem;
    position: absolute;
    width: 3.15rem
}

.inner-hero__side {
    display: flex;
    justify-content: flex-end;
    min-height: 170px
}

.ih-panel {
    background: radial-gradient(circle at 20% 15%, rgba(237, 241, 246, .02) 0, rgba(9, 12, 16, .3) 55%, rgba(9, 12, 16, 0) 90%), linear-gradient(145deg, rgba(8, 12, 17, .15), rgba(5, 8, 12, .9) 75%);
    border: 1px solid rgba(237, 241, 246, .015);
    border-radius: 1rem;
    border-top-color: hsla(39, 53%, 65%, .18);
    box-shadow: var(--ih-shadow);
    min-height: 170px;
    overflow: hidden;
    position: relative;
    width: clamp(190px, 23.5vw, 230px)
}

.ih-panel__slab {
    background: radial-gradient(circle, hsla(39, 53%, 65%, .15) 0, rgba(5, 8, 12, 0) 60%);
    inset: 50% -40% -18% -40%;
    position: absolute;
    transform: rotate(-9deg)
}

.ih-panel__accent {
    background: linear-gradient(145deg, hsla(39, 53%, 65%, .85), #9c763d 95%);
    border-radius: 999px;
    box-shadow: 0 12px 27px hsla(39, 53%, 65%, .3);
    height: 32px;
    opacity: .9;
    position: absolute;
    right: .55rem;
    top: .55rem;
    width: 32px
}

.ih-panel__ring {
    border: 1px solid hsla(39, 53%, 65%, .15);
    border-radius: 999px;
    position: absolute
}

.ih-panel__ring--1 {
    height: 150px;
    right: -42px;
    top: -50px;
    width: 150px
}

.ih-panel__ring--2 {
    bottom: -110px;
    height: 195px;
    left: -40px;
    opacity: .65;
    width: 195px
}

.inner-hero :is(a, button):focus-visible {
    border-radius: 999px;
    outline: 2px solid hsla(39, 53%, 65%, .6);
    outline-offset: 3px
}

@media (max-width:1040px) {
    .inner-hero__layout {
        gap: 1.5rem;
        grid-template-columns: minmax(0, 1fr)
    }

    .inner-hero__side {
        justify-content: flex-start
    }

    .inner-hero__title {
        max-width: 100%
    }

    .ih-line--v {
        right: 1.25rem
    }
}

@media (max-width:720px) {
    .inner-hero__shell {
        width: min(100%, 94vw)
    }

    .ih-breadcrumbs {
        padding-inline: .4rem
    }

    .inner-hero__title {
        font-size: 1.85rem
    }

    .ih-panel {
        width: min(235px, 72vw)
    }

    .ih-line--h {
        inset: auto 1.25rem 1rem 1.25rem
    }
}

@media (max-width:520px) {
    .inner-hero {
        min-height: 210px
    }

    .inner-hero__title:after {
        bottom: -.85rem
    }

    .ih-breadcrumbs__item {
        font-size: .58rem
    }

    .ih-panel {
        min-height: 150px
    }
}

.inner-hero:after {
    background: radial-gradient(circle, hsla(39, 53%, 65%, .18) 0, rgba(5, 8, 12, 0) 70%);
    content: "";
    filter: blur(35px);
    height: 80px;
    inset: auto 8% -3.2rem 8%;
    pointer-events: none;
    position: absolute
}

.inner-hero__media {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: -3
}

.inner-hero__media img,
.inner-hero__media picture {
    display: block;
    filter: saturate(.35);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

.ih-layer--gradient {
    z-index: -2
}

@media (max-width:540px) {
    .inner-hero__media img {
        -o-object-position: 35% center;
        object-position: 35% center
    }
}

.header-topline {
    background: rgba(5, 11, 17, .28);
    border-bottom: 1px solid hsla(38, 48%, 60%, .04);
    overflow: hidden;
    position: relative
}

.header-topline-inner {
    align-items: center;
    display: flex;
    gap: .75rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1140px;
    padding: .4rem 1.2rem
}

.topline-marquee-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative
}

.topline-marquee {
    align-items: center;
    display: flex;
    gap: 2rem;
    will-change: transform
}

.topline-text {
    color: rgba(232, 237, 245, .55);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap
}

.topline-badge {
    background: hsla(38, 48%, 60%, .15);
    border: 1px solid hsla(38, 48%, 60%, .3);
    border-radius: 999px;
    color: #fff;
    flex-shrink: 0;
    font-size: .65rem;
    padding: .15rem .7rem;
    white-space: nowrap
}

@media (max-width:767px) {
    .header-topline-inner {
        gap: .5rem;
        padding: .4rem .8rem
    }

    .topline-marquee-wrapper:after,
    .topline-marquee-wrapper:before {
        bottom: 0;
        content: "";
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 30px;
        z-index: 1
    }

    .topline-marquee-wrapper:before {
        background: linear-gradient(90deg, #050b11, rgba(5, 11, 17, 0));
        left: 0
    }

    .topline-marquee-wrapper:after {
        background: linear-gradient(270deg, #050b11, rgba(5, 11, 17, 0));
        right: 0
    }
}

@media (min-width:768px) {
    .topline-text:nth-child(n+2) {
        display: none
    }
}

.cc-bar__shield>path:first-child {
    opacity: .3
}

TEAM SECTION — version "cabinet"
   mobile-first
   ========================================= */

.law-team {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  padding: 54px 0 64px;
  overflow: hidden;
}

/* background grid / decor */
.law-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 43, 0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 20, 43, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 1;
}

.law-team::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(73, 114, 156, 0.12), rgba(73, 114, 156, 0));
  filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}

/* shell */
.law-team__shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* INTRO (left block on desktop, top on mobile) */
.law-team__intro {
  background: #0a1727;
  border: 1px solid rgba(219, 230, 246, 0.09);
  border-radius: 12px;
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
}

.law-team__intro::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -35px;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(238, 242, 248, 0.06);
  border-radius: 999px;
}

.law-team__intro::after {
  content: "";
  position: absolute;
  bottom: -42px;
  left: -28px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(246, 247, 248, 0.05), rgba(16, 25, 39, 0));
}

.law-team__badge {
  display: inline-block;
  background: rgba(228, 243, 255, 0.06);
  border: 1px solid rgba(233, 244, 255, 0.15);
  border-radius: 999px;
  padding: 5px 14px 4px;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8f2ff;
}

.law-team__title {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.law-team__text {
  margin-top: 8px;
  color: rgba(227, 236, 248, 0.8);
  font-size: 13.25px;
  line-height: 1.7;
  max-width: 640px;
}

.law-team__facts {
  margin: 14px 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.law-team__facts li {
  background: rgba(1, 5, 12, 0.28);
  border: 1px solid rgba(243, 246, 249, 0.03);
  border-radius: 6px;
  padding: 8px 9px 6px;
}

.law-team__fact-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 238, 246, 0.6);
  margin-bottom: 2px;
}

.law-team__fact-value {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: #ffffff;
}

.law-team__note {
  margin-top: 3px;
  font-size: 11.75px;
  color: rgba(227, 236, 248, 0.6);
  max-width: 580px;
}

/* GRID */
.law-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* CARD */
.law-team__card {
  background: #ffffff;
  border: 1px solid rgba(7, 20, 43, 0.03);
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 25, 47, 0.035);
  position: relative;
}

.law-team__photo-wrap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 60% 40%, #e4eaf2 0%, #c8d5e2 70%);
  min-height: 210px;
}

.law-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.law-team__order {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #14273a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.law-team__ribbon {
  position: absolute;
  right: -46px;
  top: 28px;
  background: rgba(10, 25, 47, 0.9);
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 52px 5px 26px;
  transform: rotate(9deg);
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

.law-team__ribbon--blue {
  background: rgba(69, 120, 178, 0.95);
}

.law-team__ribbon--dark {
  background: rgba(7, 14, 23, 0.9);
}

.law-team__ribbon--gold {
  background: rgba(165, 112, 33, 0.9);
}

.law-team__body {
  padding: 14px 14px 14px;
}

.law-team__name {
  font-size: 16.5px;
  font-weight: 700;
  color: #0a1727;
  letter-spacing: -0.03em;
}

.law-team__role {
  font-size: 12.75px;
  color: #304053;
  margin-top: 3px;
  line-height: 1.45;
}

.law-team__bio {
  margin-top: 8px;
  font-size: 12.7px;
  line-height: 1.55;
  color: #4b5563;
}

.law-team__skills {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.law-team__skills li {
  background: rgba(18, 64, 105, 0.045);
  border: 1px solid rgba(18, 64, 105, 0.045);
  border-radius: 999px;
  padding: 4px 10px 3px;
  font-size: 11.25px;
  color: #2d4c6d;
  text-transform: lowercase;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */

/* >= 540px */
@media (min-width: 540px) {
  .law-team__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .law-team__card {
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 190px;
  }

  .law-team__photo-wrap {
    min-height: 100%;
  }
}

/* >= 680px */
@media (min-width: 680px) {
  .law-team {
    padding: 58px 0 70px;
  }

  .law-team__shell {
    gap: 30px;
  }

  .law-team__intro {
    padding: 20px 18px 18px;
  }

  .law-team__title {
    font-size: 22px;
  }

  .law-team__grid {
    gap: 18px;
  }

  .law-team__card {
    border-radius: 12px;
  }

  .law-team__body {
    padding: 15px 16px 15px;
  }
}

/* >= 820px */
@media (min-width: 820px) {
  .law-team__shell {
    flex-direction: row;
    align-items: flex-start;
  }

  .law-team__intro {
    width: 310px;
    flex: 0 0 310px;
    position: sticky;
    top: 90px;
  }

  .law-team__grid {
    flex: 1 1 auto;
  }

  .law-team__card {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  .law-team__name {
    font-size: 17px;
  }

  .law-team__bio {
    font-size: 13px;
  }

  .law-team__skills li {
    font-size: 11.5px;
  }
}

/* >= 992px */
@media (min-width: 992px) {
  .law-team {
    padding: 70px 0 90px;
  }

  .law-team__shell {
    gap: 40px;
  }

  .law-team__intro {
    border-radius: 14px;
  }

  .law-team__title {
    font-size: 24px;
  }

  .law-team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .law-team__card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .law-team__photo-wrap {
    min-height: 190px;
  }
}

/* >= 1200px */
@media (min-width: 1200px) {
  .law-team {
    padding: 78px 0 110px;
  }

  .law-team__shell {
    max-width: 1240px;
  }

  .law-team__intro {
    width: 330px;
    flex: 0 0 330px;
  }

  .law-team__grid {
    gap: 22px;
  }

  .law-team__card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .law-team__body {
    padding: 16px 18px 16px;
  }

  .law-team__name {
    font-size: 17.6px;
  }

  .law-team__role {
    font-size: 13px;
  }

  .law-team__bio {
    margin-top: 10px;
  }
}

/* >= 1400px */
@media (min-width: 1400px) {
  .law-team__shell {
    max-width: 1300px;
  }

  .law-team__card {
    grid-template-columns: 225px minmax(0, 1fr);
  }

  .law-team__photo-wrap {
    min-height: 210px;
  }

  .law-team__title {
    font-size: 25.5px;
  }
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .law-team__card,
  .law-team__photo-wrap,
  .law-team::before,
  .law-team::after {
    transition: none !important;
  }
}

* ========== CSS (Залишено без змін) ========== */
        .blog__details-area {
            padding: 48px 0 64px;
            background:
                radial-gradient(120% 100% at 10% -10%, rgba(0, 71, 255, .06) 0%, rgba(0, 71, 255, 0) 60%),
                radial-gradient(120% 100% at 110% 110%, rgba(0, 178, 255, .06) 0%, rgba(0, 178, 255, 0) 60%),
                #fff;
        }

        .blog__details-area .container {
            max-width: 960px;
            /* комфортна ширина читання */
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog__details-wrap {
            background: #fff;
            border: 1px solid #e8ecff;
            border-radius: 16px;
            box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
            padding: 22px;
        }

        /* контент */
        .blog__details-content {
            color: var(--tg-body-color, #343c4d);
            font-size: 16px;
            line-height: 1.75;
        }

        .blog__details-content .title {
            font-weight: var(--tg-fw-extra-bold, 800);
            color: var(--tg-heading-color, #01022e);
            font-size: 28px;
            line-height: 1.2;
            margin: 6px 0 14px;
        }

        /* мета: перший абзац з Effective/Updated */
        .blog__details-content>p:first-of-type {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 10px 12px;
            margin-bottom: 14px;
            border: 1px solid #e8ecff;
            border-radius: 10px;
            background: #f6f8ff;
            font-size: 14px;
            color: #5a6475;
        }

        .blog__details-content>p:first-of-type strong {
            color: var(--tg-theme-primary, #0047ff);
            font-weight: 700;
        }

        /* заголовки всередині політики */
        .blog__details-content h3 {
            font-size: 20px;
            line-height: 1.3;
            color: var(--tg-heading-color, #01022e);
            font-weight: 800;
            margin: 18px 0 8px;
            scroll-margin-top: 90px;
            /* компенсує фіксований хедер */
        }

        .blog__details-content h4 {
            font-size: 17px;
            line-height: 1.35;
            color: var(--tg-heading-color, #01022e);
            font-weight: 700;
            margin: 14px 0 8px;
        }

        /* базова типографіка */
        .blog__details-content p {
            margin: 10px 0;
        }

        .blog__details-content a {
            color: var(--tg-theme-primary, #0047ff);
            text-underline-offset: 2px;
        }

        .blog__details-content a:hover {
            text-decoration: underline;
        }

        /* списки */
        .blog__details-content ul,
        .blog__details-content ol {
            padding-left: 20px;
            margin: 8px 0 14px;
        }

        .blog__details-content li+li {
            margin-top: 6px;
        }

        /* таблиця — адаптивна, зі смугастими рядками */
        .blog__details-content table {
            display: block;
            /* дозволяє горизонтальний скрол */
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 12px;
            background: #fff;
            box-shadow: inset 0 0 0 1px #e8ecff;
        }

        .blog__details-content thead tr {
            background: #f7f8ff;
        }

        .blog__details-content th,
        .blog__details-content td {
            font-size: 14px;
            white-space: nowrap;
            /* збереження вузьких колонок; при скролі видно все */
        }

        .blog__details-content tbody tr:nth-child(even) {
            background: #fafbff;
        }

        /* нижній блок з кнопкою */
        .blog__details-bottom {
            margin-top: 18px;
            display: flex;
            justify-content: center;
        }

        .blog__details-btn .tg-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 999px;
            background: var(--tg-theme-primary, #0047ff);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(0, 71, 255, .3);
        }

        .blog__details-btn .tg-btn:hover {
            background: #0039cc;
            transform: translateY(-1px);
        }

        /* ====== breakpoints ====== */
        @media (min-width:768px) {
            .blog__details-area {
                padding: 64px 0 80px;
            }

            .blog__details-wrap {
                padding: 28px;
                border-radius: 18px;
            }

            .blog__details-content .title {
                font-size: 34px;
                margin: 8px 0 16px;
            }

            .blog__details-content h3 {
                font-size: 22px;
                margin: 22px 0 10px;
            }

            .blog__details-content h4 {
                font-size: 18px;
            }
        }

        @media (min-width:992px) {
            .blog__details-wrap {
                padding: 36px;
                border-radius: 20px;
            }

            .blog__details-content .title {
                font-size: 40px;
            }

            .blog__details-content {
                font-size: 17px;
            }
        }

        /* друк — без фону/тіней, оптимальні відступи */
        @media print {
            .blog__details-area {
                background: #fff;
                padding: 0;
            }

            .blog__details-wrap {
                box-shadow: none;
                border: 0;
                padding: 0;
            }

            .blog__details-content a {
                color: #000;
                text-decoration: underline;
            }

            .blog__details-content table {
                box-shadow: none;
                border-radius: 0;
            }
        }
 /* ========== CSS (Залишено без змін) ========== */
        .blog__details-area {
            padding: 48px 0 64px;
            background:
                radial-gradient(120% 100% at 10% -10%, rgba(0, 71, 255, .06) 0%, rgba(0, 71, 255, 0) 60%),
                radial-gradient(120% 100% at 110% 110%, rgba(0, 178, 255, .06) 0%, rgba(0, 178, 255, 0) 60%),
                #fff;
        }

        .blog__details-area .container {
            max-width: 960px;
            /* комфортна ширина читання */
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog__details-wrap {
            background: #fff;
            border: 1px solid #e8ecff;
            border-radius: 16px;
            box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
            padding: 22px;
        }

        /* контент */
        .blog__details-content {
            color: var(--tg-body-color, #343c4d);
            font-size: 16px;
            line-height: 1.75;
        }

        .blog__details-content .title {
            font-weight: var(--tg-fw-extra-bold, 800);
            color: var(--tg-heading-color, #01022e);
            font-size: 28px;
            line-height: 1.2;
            margin: 6px 0 14px;
        }

        /* мета: перший абзац з Effective/Updated */
        .blog__details-content>p:first-of-type {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 10px 12px;
            margin-bottom: 14px;
            border: 1px solid #e8ecff;
            border-radius: 10px;
            background: #f6f8ff;
            font-size: 14px;
            color: #5a6475;
        }

        .blog__details-content>p:first-of-type strong {
            color: var(--tg-theme-primary, #0047ff);
            font-weight: 700;
        }

        /* заголовки всередині політики */
        .blog__details-content h3 {
            font-size: 20px;
            line-height: 1.3;
            color: var(--tg-heading-color, #01022e);
            font-weight: 800;
            margin: 18px 0 8px;
            scroll-margin-top: 90px;
            /* компенсує фіксований хедер */
        }

        .blog__details-content h4 {
            font-size: 17px;
            line-height: 1.35;
            color: var(--tg-heading-color, #01022e);
            font-weight: 700;
            margin: 14px 0 8px;
        }

        /* базова типографіка */
        .blog__details-content p {
            margin: 10px 0;
        }

        .blog__details-content a {
            color: var(--tg-theme-primary, #0047ff);
            text-underline-offset: 2px;
        }

        .blog__details-content a:hover {
            text-decoration: underline;
        }

        /* списки */
        .blog__details-content ul,
        .blog__details-content ol {
            padding-left: 20px;
            margin: 8px 0 14px;
        }

        .blog__details-content li+li {
            margin-top: 6px;
        }

        /* таблиця — адаптивна, зі смугастими рядками */
        .blog__details-content table {
            display: block;
            /* дозволяє горизонтальний скрол */
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 12px;
            background: #fff;
            box-shadow: inset 0 0 0 1px #e8ecff;
        }

        .blog__details-content thead tr {
            background: #f7f8ff;
        }

        .blog__details-content th,
        .blog__details-content td {
            font-size: 14px;
            white-space: nowrap;
            /* збереження вузьких колонок; при скролі видно все */
        }

        .blog__details-content tbody tr:nth-child(even) {
            background: #fafbff;
        }

        /* нижній блок з кнопкою */
        .blog__details-bottom {
            margin-top: 18px;
            display: flex;
            justify-content: center;
        }

        .blog__details-btn .tg-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 999px;
            background: var(--tg-theme-primary, #0047ff);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(0, 71, 255, .3);
        }

        .blog__details-btn .tg-btn:hover {
            background: #0039cc;
            transform: translateY(-1px);
        }

        /* ====== breakpoints ====== */
        @media (min-width:768px) {
            .blog__details-area {
                padding: 64px 0 80px;
            }

            .blog__details-wrap {
                padding: 28px;
                border-radius: 18px;
            }

            .blog__details-content .title {
                font-size: 34px;
                margin: 8px 0 16px;
            }

            .blog__details-content h3 {
                font-size: 22px;
                margin: 22px 0 10px;
            }

            .blog__details-content h4 {
                font-size: 18px;
            }
        }

        @media (min-width:992px) {
            .blog__details-wrap {
                padding: 36px;
                border-radius: 20px;
            }

            .blog__details-content .title {
                font-size: 40px;
            }

            .blog__details-content {
                font-size: 17px;
            }
        }

        /* друк — без фону/тіней, оптимальні відступи */
        @media print {
            .blog__details-area {
                background: #fff;
                padding: 0;
            }

            .blog__details-wrap {
                box-shadow: none;
                border: 0;
                padding: 0;
            }

            .blog__details-content a {
                color: #000;
                text-decoration: underline;
            }

            .blog__details-content table {
                box-shadow: none;
                border-radius: 0;
            }
        }

        .thank-you-section {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
        }

        .thank-you-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 60px 40px;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .thank-you-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #04080d 0%, #c49a57 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease-out;

            position: relative;
        }

        .thank-you-icon::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("images/mail-check.avif");
            background-size: 67%;
            background-position: center;
            background-repeat: no-repeat;


            animation: scaleIn 0.5s ease-out;
        }


        .thank-you-icon i {
            font-size: 50px;
            color: #ffffff;
        }

        .thank-you-card h1 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .thank-you-card h2 {
            font-size: 24px;
            font-weight: 600;
            color: #c49a57;
            margin-bottom: 25px;
        }

        .thank-you-card p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .thank-you-card .lead-text {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 30px 0 20px;
        }

        .info-box {
            background: #f8f9fa;
            border-left: 4px solid #c49a57;
            padding: 25px;
            margin: 30px 0;
            text-align: left;
            border-radius: 8px;
        }

        .info-box h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .info-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-box ul li {
            padding: 8px 0;
            color: #666;
            font-size: 15px;
        }

        .info-box ul li i {
            color: #c49a57;
            margin-right: 10px;
            width: 20px;
        }

        .thank-you-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .thank-you-btn {
            padding: 14px 35px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: #c49a57;
            color: #ffffff;
            border: 2px solid #c49a57;
        }

        .btn-primary:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
            color: #ffffff;
        }

        .btn-outline {
            background: transparent;
            color: #c49a57;
            border: 2px solid #c49a57;
        }

        .btn-outline:hover {
            background: #c49a57;
            color: #ffffff;
        }

        .emergency-contact {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
        }

        .emergency-contact h4 {
            color: #856404;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .emergency-contact p {
            color: #856404;
            margin: 0;
            font-size: 16px;
        }

        .emergency-contact a {
            color: #856404;
            font-weight: 700;
            text-decoration: underline;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .thank-you-card {
                padding: 40px 25px;
            }

            .thank-you-card h1 {
                font-size: 28px;
            }

            .thank-you-card h2 {
                font-size: 20px;
            }

            .thank-you-buttons {
                flex-direction: column;
            }

            .thank-you-btn {
                width: 100%;
            }
        }