@font-face {
    font-family: "SansOri";
    src: url("../fonts/sans-regular.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "SansOri";
    src: url("../fonts/sans-bold.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "SansOri";
    src: url("../fonts/sans-italic.woff2") format("woff2");
    font-display: swap;
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "SansOri";
    src: url("../fonts/sans-bold-italic.woff2") format("woff2");
    font-display: swap;
    font-style: italic;
    font-weight: 700;
}

:root {
    --ink: #12253a;
    --muted: #607183;
    --line: #d9e1e7;
    --paper: #ffffff;
    --soft: #f5f7f8;
    --cream: #fff6e7;
    --sky: #dff4ff;
    --blue: #26a9ed;
    --blue-dark: #0879b5;
    --orange: #f5a623;
    --orange-soft: #ffedcb;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 400 16px/1.65 "SansOri", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    font-size: clamp(4rem, 7vw, 7.1rem);
    letter-spacing: -.045em;
}

h2 {
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    letter-spacing: -.04em;
}

h3 {
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    letter-spacing: -.025em;
}

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--blue-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-label::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-label-light {
    color: rgba(255, 255, 255, .72);
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 26px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--paper);
    background: var(--ink);
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

.button-white {
    color: var(--ink);
    background: var(--paper);
}

.plain-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.plain-link-light {
    color: var(--paper);
}

.site-header {
    position: relative;
    z-index: 100;
    color: var(--ink);
    background: var(--paper);
}

.topbar {
    background: var(--sky);
}

.topbar-inner {
    display: grid;
    min-height: 38px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    font-size: .72rem;
}

.topbar-inner p {
    margin: 0;
}

.topbar-inner p:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.topbar-inner p:first-child span {
    width: 6px;
    height: 6px;
    background: #2ca36b;
    border-radius: 50%;
}

.topbar-promise {
    color: var(--muted);
}

.topbar-inner a {
    justify-self: end;
    font-weight: 700;
}

.nav-wrap {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.brand {
    width: 240px;
}

.brand img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.6vw, 38px);
    font-size: .88rem;
}

.site-nav > a:not(.nav-cta) {
    padding: 9px 0;
    border-bottom: 1px solid transparent;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
    border-color: currentColor;
}

.language-select {
    position: relative;
    padding-left: 15px;
    border-left: 1px solid var(--line);
}

.language-select__trigger {
    display: inline-flex;
    min-width: 84px;
    height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 11px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    font: inherit;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
}

.language-select__trigger:hover,
.language-select__trigger:focus-visible,
.language-select.is-open .language-select__trigger {
    border-color: var(--blue);
}

.language-select img {
    display: block;
    width: 24px;
    height: 18px;
    flex: 0 0 auto;
    border: 1px solid rgba(18, 37, 58, .12);
    border-radius: 2px;
    object-fit: cover;
}

.language-select__chevron {
    width: 7px;
    height: 7px;
    margin: -4px 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease, margin .2s ease;
}

.language-select.is-open .language-select__chevron {
    margin-top: 4px;
    transform: rotate(225deg);
}

.language-select__menu {
    position: absolute;
    z-index: 110;
    top: calc(100% + 10px);
    right: 0;
    width: 190px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(18, 37, 58, .16);
}

.language-select__menu[hidden] {
    display: none;
}

.language-select__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--ink);
    border-radius: 3px;
    font-size: .82rem;
}

.language-select__menu a:hover,
.language-select__menu a:focus-visible {
    background: var(--blue-soft);
}

.language-select__menu a.active {
    color: var(--paper);
    background: var(--blue-dark);
}

.language-select__code {
    margin-left: auto;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
}

.language-select__menu a.active .language-select__code {
    color: rgba(255, 255, 255, .65);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    color: var(--paper);
    background: var(--ink);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0 48%, rgba(255,255,255,.5) 70%),
        linear-gradient(135deg, #f8fbfc 0%, var(--sky) 100%);
}

.hero::after {
    position: absolute;
    top: -230px;
    right: -170px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(18, 37, 58, .09);
    border-radius: 50%;
    content: "";
}

.hero-word {
    position: absolute;
    bottom: 15px;
    left: 50%;
    color: rgba(18, 37, 58, .035);
    font-size: clamp(7rem, 17vw, 18rem);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: .8;
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-copy {
    padding-bottom: 44px;
}

.hero-copy h1 {
    max-width: 770px;
    margin-bottom: 34px;
}

.hero-copy h1 em {
    color: var(--blue-dark);
    font-weight: 400;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 38px;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.hero-stage {
    position: relative;
    min-height: 550px;
}

.hero-circle {
    position: absolute;
    top: 34px;
    right: 5px;
    display: flex;
    width: 450px;
    height: 450px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--paper);
    background: var(--blue);
    border-radius: 50%;
    text-align: center;
}

.hero-circle::before {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    content: "";
}

.hero-circle p {
    position: relative;
    margin-bottom: 10px;
    font-size: .82rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-circle strong {
    position: relative;
    font-size: 9rem;
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: .9;
}

.hero-circle strong small {
    font-size: .26em;
    letter-spacing: 0;
}

.hero-circle > span {
    position: relative;
    margin-top: 16px;
    font-size: .68rem;
    opacity: .7;
}

.hero-note {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 235px;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(18, 37, 58, .1);
    box-shadow: 0 20px 50px rgba(18, 37, 58, .08);
}

.hero-note span {
    color: var(--blue-dark);
    font-size: .68rem;
    font-weight: 700;
}

.hero-note p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.25;
}

.hero-note-one {
    top: 10px;
    left: -30px;
}

.hero-note-two {
    right: -30px;
    bottom: 120px;
}

.hero-note-three {
    bottom: 22px;
    left: 18px;
}

.hero-seal {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: -2px;
    display: flex;
    width: 138px;
    height: 138px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--ink);
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(18, 37, 58, .15);
    transform: rotate(-8deg);
}

.hero-seal span {
    font-size: .7rem;
}

.hero-seal strong {
    font-size: 1.6rem;
    font-weight: 400;
}

.hero-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    gap: 34px;
    border-top: 1px solid rgba(18, 37, 58, .1);
}

.hero-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-bottom span {
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

.intro-section {
    padding: 130px 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: .36fr 1.64fr;
    gap: 70px;
    margin-bottom: 95px;
}

.intro-layout h2 {
    max-width: 940px;
    margin-bottom: 34px;
}

.intro-text {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.service-list {
    border-top: 1px solid var(--ink);
}

.service-list article {
    display: grid;
    min-height: 146px;
    grid-template-columns: 70px 1fr 1fr 50px;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid var(--line);
    transition: background-color .2s ease, padding .2s ease;
}

.service-list article:hover {
    padding-inline: 20px;
    background: var(--soft);
}

.service-list article > span {
    color: var(--blue-dark);
    font-size: .72rem;
    font-weight: 700;
}

.service-list h3,
.service-list p {
    margin: 0;
}

.service-list p {
    color: var(--muted);
    font-size: .9rem;
}

.service-list a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.process-section {
    padding: 130px 0;
    color: var(--paper);
    background: var(--ink);
}

.process-heading {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 95px;
}

.process-heading h2 {
    margin: 0;
}

.process-heading > p {
    max-width: 480px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .58);
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, .28);
}

.process-list article {
    display: grid;
    grid-template-columns: .35fr 1.65fr;
    gap: 50px;
    padding: 54px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-list article > strong {
    color: var(--orange);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .8;
}

.process-list article > div {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
}

.process-list h3,
.process-list p {
    margin: 0;
}

.process-list p {
    max-width: 630px;
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.notice-section {
    padding: 105px 0;
    background: var(--orange-soft);
}

.notice-layout {
    display: grid;
    grid-template-columns: 100px .4fr 1.1fr;
    align-items: start;
    gap: 55px;
}

.notice-symbol {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    color: var(--paper);
    background: var(--orange);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
}

.notice-layout h2 {
    margin-bottom: 35px;
    font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.notice-layout > div:last-child > p {
    color: #665839;
    font-size: .9rem;
}

.trust-section {
    padding: 130px 0;
}

.trust-heading {
    display: grid;
    grid-template-columns: .36fr 1.64fr;
    gap: 70px;
    margin-bottom: 85px;
}

.trust-heading h2 {
    max-width: 940px;
    margin: 0;
}

.study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.study-grid article {
    min-height: 420px;
    padding: 46px 40px;
    border-right: 1px solid var(--line);
}

.study-grid article:last-child {
    border-right: 0;
}

.study-grid strong {
    display: block;
    margin-bottom: 70px;
    color: var(--blue-dark);
    font-size: clamp(5rem, 9vw, 9rem);
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: .8;
}

.study-grid strong small {
    color: var(--orange);
    font-size: .27em;
}

.study-grid p {
    min-height: 80px;
    margin-bottom: 40px;
    font-size: 1.08rem;
}

.study-grid span {
    color: var(--muted);
    font-size: .72rem;
}

.problems-section {
    padding: 130px 0;
    background: var(--cream);
}

.problems-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 120px;
}

.problems-title {
    align-self: start;
}

.problems-title h2 {
    margin-bottom: 45px;
}

.problems-copy > p {
    max-width: 720px;
    margin-bottom: 50px;
    color: #6b5e48;
    font-size: 1.1rem;
}

.problems-copy ol {
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(18, 37, 58, .22);
    list-style: none;
    counter-reset: problem;
}

.problems-copy li {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
    padding: 25px 0 25px 42px;
    border-bottom: 1px solid rgba(18, 37, 58, .16);
    counter-increment: problem;
}

.problems-copy li::before {
    position: absolute;
    margin-left: -42px;
    color: var(--blue-dark);
    content: "0" counter(problem);
    font-size: .68rem;
    font-weight: 700;
}

.problems-copy li strong {
    font-weight: 700;
}

.problems-copy li span {
    color: #6b5e48;
    font-size: .88rem;
}

.results-section {
    padding: 130px 0 0;
    overflow: hidden;
    background: var(--sky);
}

.results-heading {
    display: grid;
    grid-template-columns: .35fr 1fr .65fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 90px;
}

.results-heading h2,
.results-heading p {
    margin-bottom: 0;
}

.results-heading > p:last-child {
    max-width: 400px;
    color: var(--muted);
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.rate-grid article {
    min-height: 320px;
    padding: 38px 28px;
    border-right: 1px solid rgba(18, 37, 58, .2);
}

.rate-grid article:last-child {
    border-right: 0;
}

.rate-grid span {
    display: block;
    min-height: 50px;
    font-size: .78rem;
    text-transform: uppercase;
}

.rate-grid strong {
    display: block;
    margin: 35px 0 45px;
    font-size: clamp(4.8rem, 8vw, 8rem);
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: .8;
}

.rate-grid strong small {
    color: var(--blue-dark);
    font-size: .28em;
}

.rate-grid i {
    display: block;
    height: 3px;
    background: rgba(18, 37, 58, .15);
}

.rate-grid i b {
    display: block;
    width: var(--rate);
    height: 100%;
    background: var(--blue-dark);
}

.days-result {
    color: var(--paper);
    background: var(--blue);
}

.days-result strong {
    font-size: 10rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    color: var(--paper);
    background: var(--ink);
}

.facts-grid article {
    min-height: 180px;
    padding: 42px 30px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.facts-grid article:last-child {
    border-right: 0;
}

.facts-grid strong {
    display: block;
    margin-bottom: 16px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: 1;
}

.facts-grid span {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.statement-section {
    padding: 130px 0;
}

.statement-layout {
    display: grid;
    max-width: 1050px;
    grid-template-columns: 130px 1fr;
    gap: 50px;
}

.statement-layout > span {
    color: var(--orange);
    font-size: 13rem;
    line-height: .65;
}

.statement-layout blockquote {
    margin: 0;
}

.statement-layout blockquote > p {
    max-width: 860px;
    margin-bottom: 45px;
    font-size: clamp(2.2rem, 4.4vw, 4.6rem);
    line-height: 1.18;
    letter-spacing: -.035em;
}

.statement-layout footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.statement-layout footer strong {
    font-weight: 700;
}

.statement-layout footer small {
    padding-left: 14px;
    border-left: 1px solid var(--line);
    color: var(--muted);
}

.closing-cta {
    padding: 120px 0;
    color: var(--paper);
    background: var(--blue);
}

.closing-cta-inner {
    display: grid;
    grid-template-columns: .3fr 1.1fr .8fr;
    align-items: end;
    gap: 50px;
}

.closing-cta h2 {
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
}

.closing-copy {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
}

.closing-actions {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.site-footer {
    padding: 90px 0 28px;
    background: var(--soft);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .65fr 1fr .8fr;
    gap: 65px;
    padding-bottom: 80px;
}

.footer-logo {
    display: block;
    width: 245px;
    margin-bottom: 28px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-intro > p {
    max-width: 330px;
    color: var(--muted);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 14px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column address {
    color: var(--muted);
    font-size: .78rem;
    font-style: normal;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--blue-dark);
}

.footer-contact address {
    margin-bottom: 10px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .7rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    justify-self: end;
    text-align: right;
}

.legal-hero {
    background: var(--sky);
}

.legal-hero-inner {
    display: grid;
    min-height: 340px;
    grid-template-columns: auto auto 1fr;
    align-content: center;
    gap: 10px;
}

.legal-hero-inner > a,
.legal-hero-inner > span,
.legal-hero-inner > p {
    margin: 0;
    color: var(--muted);
    font-size: .75rem;
}

.legal-hero-inner h1 {
    grid-column: 1 / -1;
    max-width: 1000px;
    margin: 42px 0 0;
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.legal-section {
    padding: 100px 0 140px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    align-items: start;
    gap: 90px;
}

.legal-aside {
    position: sticky;
    top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--ink);
}

.legal-aside nav {
    display: grid;
    gap: 3px;
}

.legal-aside nav a {
    padding: 9px 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
}

.legal-aside nav a:hover,
.legal-aside nav a:focus-visible,
.legal-aside nav a.active {
    color: var(--ink);
}

.legal-aside nav a.active {
    font-weight: 700;
}

.legal-content {
    min-width: 0;
    color: #405266;
    font-size: .94rem;
}

.legal-language-notice {
    margin-bottom: 42px;
    padding: 20px 24px;
    color: #665839;
    background: var(--orange-soft);
    border-left: 3px solid var(--orange);
    font-size: .86rem;
}

.legal-content > :first-child {
    margin-top: 0;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: var(--ink);
}

.legal-content h1 {
    margin: 65px 0 24px;
    font-size: 2.8rem;
}

.legal-content h2 {
    margin: 58px 0 20px;
    font-size: 2.2rem;
}

.legal-content h3 {
    margin: 38px 0 14px;
    font-size: 1.5rem;
}

.legal-content h4 {
    margin: 30px 0 10px;
    font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
    overflow-wrap: anywhere;
}

.legal-content a {
    color: var(--blue-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.3rem;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content details {
    margin: 16px 0;
    padding: 18px 20px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.legal-content summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
}

.legal-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 10px;
    border: 1px solid var(--line);
    text-align: left;
}

@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: 1fr 430px;
        gap: 40px;
    }

    .hero-circle {
        width: 390px;
        height: 390px;
    }

    .hero-circle strong {
        font-size: 7rem;
    }

    .hero-note {
        width: 210px;
    }

    .hero-note-one {
        left: -5px;
    }

    .hero-note-two {
        right: -5px;
    }

    .problems-layout {
        gap: 70px;
    }

    .rate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rate-grid article:nth-child(2) {
        border-right: 0;
    }

    .rate-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(18, 37, 58, .2);
    }

    .footer-main {
        grid-template-columns: 1.1fr .6fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        position: relative;
        z-index: 102;
        display: block;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 40px;
        color: var(--paper);
        background: rgba(18, 37, 58, .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        font-size: 1.7rem;
    }

    .language-select {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .language-select__trigger {
        color: var(--paper);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
    }

    .language-select__menu {
        position: static;
        width: min(100%, 280px);
        margin-top: 8px;
        box-shadow: none;
    }

    .nav-cta {
        margin-top: 18px;
        color: var(--ink);
        background: var(--orange);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding-top: 95px;
    }

    .hero-copy {
        max-width: 760px;
        padding-bottom: 0;
    }

    .hero-stage {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .intro-layout,
    .trust-heading,
    .process-heading,
    .notice-layout,
    .problems-layout,
    .results-heading,
    .closing-cta-inner,
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-list article {
        grid-template-columns: 50px 1fr 1fr 50px;
    }

    .process-list article > div {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .study-grid {
        grid-template-columns: 1fr;
    }

    .study-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .study-grid article:last-child {
        border-bottom: 0;
    }

    .study-grid strong {
        margin-bottom: 35px;
    }

    .study-grid p {
        min-height: 0;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-grid article:nth-child(2) {
        border-right: 0;
    }

    .facts-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .closing-actions {
        grid-column: auto;
    }

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

    .footer-intro {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }

    .legal-aside {
        position: static;
    }

    .legal-aside nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    h1 {
        font-size: clamp(3.35rem, 17vw, 5rem);
    }

    h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .topbar-inner {
        grid-template-columns: 1fr auto;
    }

    .topbar-promise {
        display: none;
    }

    .nav-wrap {
        min-height: 78px;
    }

    .brand {
        width: 205px;
    }

    .hero-layout {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-lead {
        font-size: 1rem;
    }

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

    .hero-stage {
        min-height: 500px;
    }

    .hero-circle {
        top: 45px;
        right: 50%;
        width: 340px;
        height: 340px;
        transform: translateX(50%);
    }

    .hero-circle strong {
        font-size: 6rem;
    }

    .hero-note {
        width: 195px;
        padding: 14px;
    }

    .hero-note-one {
        top: 20px;
        left: 0;
    }

    .hero-note-two {
        right: 0;
        bottom: 92px;
    }

    .hero-note-three {
        bottom: 20px;
        left: 0;
    }

    .hero-seal {
        top: 47%;
        left: 0;
        width: 110px;
        height: 110px;
    }

    .hero-bottom {
        min-height: 100px;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding-block: 22px;
    }

    .intro-section,
    .process-section,
    .trust-section,
    .problems-section,
    .statement-section,
    .closing-cta {
        padding: 86px 0;
    }

    .intro-layout,
    .trust-heading {
        margin-bottom: 58px;
    }

    .service-list article {
        min-height: 180px;
        grid-template-columns: 35px 1fr 42px;
        gap: 16px;
        padding: 25px 0;
    }

    .service-list article:hover {
        padding-inline: 0;
    }

    .service-list p {
        grid-column: 2 / -1;
        grid-row: 2;
    }

    .service-list a {
        grid-column: 3;
        grid-row: 1;
    }

    .process-heading {
        margin-bottom: 60px;
    }

    .process-list article {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        padding: 42px 0;
    }

    .process-list article > strong {
        font-size: 4rem;
    }

    .notice-section {
        padding: 80px 0;
    }

    .notice-layout {
        grid-template-columns: 1fr;
    }

    .notice-symbol {
        width: 58px;
        height: 58px;
    }

    .study-grid article {
        padding: 38px 22px;
    }

    .problems-copy li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .results-section {
        padding-top: 86px;
    }

    .results-heading {
        margin-bottom: 60px;
    }

    .rate-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .rate-grid article,
    .rate-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 37, 58, .2);
    }

    .facts-grid article,
    .facts-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .facts-grid article:last-child {
        border-bottom: 0;
    }

    .statement-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .statement-layout > span {
        font-size: 8rem;
    }

    .statement-layout blockquote > p {
        font-size: 2.2rem;
    }

    .statement-layout footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .statement-layout footer small {
        padding-left: 0;
        border-left: 0;
    }

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

    .footer-main,
    .legal-aside nav {
        grid-template-columns: 1fr;
    }

    .footer-intro {
        grid-column: auto;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-bottom p:last-child {
        justify-self: start;
        text-align: left;
    }

    .legal-hero-inner {
        min-height: 290px;
    }

    .legal-hero-inner h1 {
        font-size: 3.3rem;
    }

    .legal-section {
        padding: 70px 0 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
