:root {
    --navy-950: #051326;
    --navy-900: #071a35;
    --navy-800: #0c2b52;
    --blue-700: #0757c8;
    --blue-600: #0874e8;
    --blue-500: #1596ff;
    --blue-100: #e7f3ff;
    --gold-500: #f6b73c;
    --gold-400: #ffd16d;
    --ink-900: #10233e;
    --ink-700: #40536d;
    --ink-500: #67778d;
    --line: #dfe7f0;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 8px 28px rgba(18, 48, 84, 0.09);
    --shadow-lg: 0 22px 60px rgba(4, 25, 53, 0.18);
    --shell: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink-900);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--blue-700);
    text-decoration: none;
}

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

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

h1,
h2,
h3 {
    color: var(--ink-900);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.16;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 4.4vw, 4.3rem);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 3.2vw, 3.05rem);
}

h3 {
    font-size: 1.18rem;
}

.site-shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.section--compact {
    padding: 80px 0 96px;
}

.section--soft {
    background: var(--surface-soft);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.2;
}

.section-kicker::before {
    width: 28px;
    height: 3px;
    margin-right: 10px;
    border-radius: 4px;
    background: var(--gold-500);
    content: "";
}

.section-kicker--light {
    color: #b8dcff;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 46px;
}

.section-heading p,
.lead {
    color: var(--ink-700);
    font-size: 1.08rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    transform: translateY(-160%);
    border-radius: 6px;
    background: #fff;
    color: var(--navy-950);
    font-weight: 700;
}

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

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

.notice-bar {
    background: linear-gradient(90deg, #0468d8, #0787f5);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.notice-bar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.notice-bar .dashicons {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    font-size: 18px;
    vertical-align: text-bottom;
}

.notice-bar a {
    flex: 0 0 auto;
    color: #fff;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(211, 224, 239, 0.9);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 6px 24px rgba(9, 32, 62, 0.06);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--navy-950);
}

.brand__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px 5px 12px 5px;
    background: linear-gradient(145deg, var(--blue-600), #073675);
    box-shadow: 0 8px 18px rgba(8, 116, 232, 0.26);
    color: #fff;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.brand__word {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.brand__word span {
    color: var(--blue-600);
}

.main-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.45vw, 24px);
}

.main-nav > a,
.nav-item {
    align-self: stretch;
}

.main-nav > a,
.nav-parent {
    display: inline-flex;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    position: relative;
    color: #233b58;
    font-size: 0.88rem;
    font-weight: 750;
    white-space: nowrap;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    border-radius: 3px;
    background: var(--blue-600);
    content: "";
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.submenu-toggle {
    display: inline-flex;
    width: 24px;
    height: 30px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #4d627a;
    cursor: pointer;
}

.submenu-toggle .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    transition: transform 180ms ease;
}

.nav-item.is-open .submenu-toggle .dashicons {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    z-index: 110;
    top: 100%;
    left: -16px;
    display: none;
    min-width: 224px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(9, 32, 62, 0.16);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu,
.nav-item.is-open .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    color: #29415e;
    font-size: 0.86rem;
}

.submenu a::after {
    display: none;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: var(--surface-soft);
    color: var(--blue-700);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button--ghost {
    border-color: #ccd9e8;
    background: #fff;
    color: var(--navy-800);
}

.button--gold {
    background: linear-gradient(135deg, #ffd36f, #f3a91d);
    box-shadow: 0 9px 20px rgba(218, 146, 15, 0.24);
    color: #10233e;
}

.button--light {
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 25, 70, 0.2);
    color: var(--blue-700);
}

.button--primary {
    background: var(--blue-600);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--navy-900);
}

.hero {
    position: relative;
    min-height: clamp(430px, 46vw, 650px);
    overflow: hidden;
    background: var(--navy-950);
}

.hero > img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

.hero__shade {
    position: absolute;
    background: linear-gradient(180deg, rgba(2, 12, 31, 0.05) 45%, rgba(2, 13, 34, 0.92) 100%);
    inset: 0;
}

.hero__content {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    color: #fff;
}

.hero__content .eyebrow {
    margin-bottom: 8px;
    color: var(--gold-400);
}

.hero__content p {
    margin-bottom: 0;
    color: #dcecff;
    font-weight: 650;
}

.intro__inner {
    text-align: center;
}

.intro .lead {
    max-width: 900px;
    margin: 0 auto 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.trust-card {
    display: flex;
    min-height: 148px;
    align-items: flex-start;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.trust-card > .dashicons {
    width: 48px;
    height: 48px;
    padding: 11px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 26px;
}

.trust-card h2 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.trust-card p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.92rem;
    line-height: 1.55;
}

.feature-strip {
    background: linear-gradient(115deg, #0b2b58, #0874e8 58%, #08a1ee);
    color: #fff;
}

.feature-strip__inner {
    display: flex;
    min-height: 284px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-block: 52px;
}

.feature-strip__inner > div {
    max-width: 760px;
}

.feature-strip h2,
.why-section h2,
.responsible h2,
.promo-panel--primary h2 {
    color: #fff;
}

.feature-strip p,
.why-section p,
.responsible p,
.promo-panel--primary p {
    margin-bottom: 0;
    color: #dcecff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: steps;
}

.steps article {
    position: relative;
    padding: 32px 24px 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.steps article::after {
    position: absolute;
    top: 20px;
    right: -12px;
    width: 70px;
    height: 70px;
    border: 16px solid var(--blue-100);
    border-radius: 50%;
    content: "";
}

.steps article > span {
    display: block;
    margin-bottom: 26px;
    color: var(--blue-600);
    font-size: 1.65rem;
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 10px;
}

.steps p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.92rem;
}

.why-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(21, 150, 255, 0.25), transparent 34%),
        linear-gradient(135deg, #06152b, #0b2f5a);
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 90px;
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gold-400);
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.metric-grid div {
    padding: 25px;
    border: 1px solid rgba(181, 216, 255, 0.18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.metric-grid strong,
.metric-grid span {
    display: block;
}

.metric-grid strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 2.3rem;
    line-height: 1;
}

.metric-grid span {
    color: #bcd1e9;
    font-size: 0.88rem;
    font-weight: 700;
}

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.category-card > div {
    padding: 24px;
}

.category-card > div > span {
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.category-card h3 {
    margin: 6px 0 10px;
    font-size: 1.45rem;
}

.category-card p {
    min-height: 52px;
    margin-bottom: 18px;
    color: var(--ink-500);
    font-size: 0.94rem;
    line-height: 1.55;
}

.category-card a {
    color: var(--blue-700);
    font-size: 0.9rem;
    font-weight: 850;
}

.mini-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.mini-categories article {
    padding: 22px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.mini-categories .dashicons {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
    color: var(--blue-600);
    font-size: 34px;
}

.mini-categories h3 {
    margin-bottom: 7px;
    font-size: 1rem;
}

.mini-categories p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.85rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.promo-panel {
    min-height: 390px;
    padding: clamp(32px, 4vw, 55px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.promo-panel--primary {
    background:
        radial-gradient(circle at 88% 15%, rgba(51, 186, 255, 0.48), transparent 34%),
        linear-gradient(145deg, #07295b, #086bd5);
}

.promo-panel--primary .button {
    margin-top: 18px;
}

.promo-panel > .dashicons {
    width: 60px;
    height: 60px;
    margin-bottom: 26px;
    color: var(--blue-600);
    font-size: 58px;
}

.promo-panel li {
    margin-bottom: 8px;
    color: var(--ink-700);
}

.safety-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.safety-grid > div:first-child p {
    color: var(--ink-700);
}

.safety-list {
    display: grid;
    gap: 15px;
}

.safety-list article {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.safety-list .dashicons {
    width: 46px;
    height: 46px;
    padding: 9px;
    flex: 0 0 46px;
    border-radius: 12px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 27px;
}

.safety-list h3 {
    margin-bottom: 6px;
}

.safety-list p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.92rem;
}

.responsible {
    padding: 70px 0;
    background: linear-gradient(115deg, #07182f, #103b67);
    color: #fff;
}

.responsible__inner {
    display: flex;
    max-width: 980px;
    align-items: center;
    gap: 36px;
}

.responsible__inner > div:last-child {
    flex: 1;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.age-badge strong {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid #ffcc66;
    border-radius: 50%;
    color: #ffcc66;
}

.age-badge span {
    color: #b8c9dd;
    font-size: 0.82rem;
    font-weight: 700;
}

.age-badge--large {
    margin-top: 0;
}

.age-badge--large strong {
    width: 92px;
    height: 92px;
    font-size: 1.8rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    padding: 23px 0;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: var(--ink-900);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 800;
    text-align: left;
}

.faq-item button .dashicons {
    flex: 0 0 auto;
    color: var(--blue-600);
    transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .dashicons {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 42px 22px 0;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--ink-700);
}

.page-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: var(--navy-950);
}

.page-hero > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 18, 45, 0.94) 0%, rgba(2, 18, 45, 0.72) 48%, rgba(2, 18, 45, 0.28) 100%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 360px;
    padding-block: 56px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.page-hero h1 {
    max-width: 760px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 1.02;
}

.breadcrumb {
    display: flex;
    margin-bottom: 34px;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #b9cbe0;
    font-size: 0.82rem;
}

.breadcrumb a {
    color: #fff;
    font-weight: 750;
}

.page-section {
    min-height: 420px;
    background: var(--surface-soft);
}

.page-content-card {
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.page-status {
    display: flex;
    padding: clamp(24px, 4vw, 40px);
    align-items: flex-start;
    gap: 18px;
    border: 1px solid #d5e3f2;
    border-radius: 14px;
    background: #f5f9fd;
}

.page-status > .dashicons {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--blue-600);
    font-size: 34px;
}

.page-status h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.page-status p {
    margin: 0;
    color: var(--ink-700);
}

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

.entry-content > :last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 80px 0 24px;
    background: #041226;
    color: #9fb2c9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.72fr 1fr;
    gap: 50px;
}

.brand--footer {
    margin-bottom: 20px;
}

.brand--footer .brand__word {
    color: #fff;
}

.footer-grid h2 {
    margin: 6px 0 20px;
    color: #fff;
    font-size: 1rem;
}

.footer-grid p {
    font-size: 0.88rem;
}

.footer-grid > div > a:not(.brand) {
    display: block;
    margin-bottom: 11px;
    color: #b5c8dd;
    font-size: 0.88rem;
}

.footer-bottom {
    display: flex;
    margin-top: 58px;
    padding-top: 22px;
    justify-content: space-between;
    border-top: 1px solid rgba(177, 205, 235, 0.14);
    color: #71879f;
    font-size: 0.78rem;
}

.footer-bottom a {
    color: #a8c3df;
}

.content-shell {
    max-width: 860px;
}

.content-card {
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.error-page {
    min-height: 60vh;
    background: var(--surface-soft);
    text-align: center;
}

@media (max-width: 1080px) {
    .site-header__inner {
        gap: 15px;
    }

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    .submenu-toggle {
        width: 20px;
    }

    .header-actions .button {
        padding-inline: 14px;
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 0.8fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        z-index: 99;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        display: none;
        max-height: calc(100dvh - 76px);
        padding: 28px 24px;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #fff;
        box-shadow: 0 18px 36px rgba(9, 32, 62, 0.16);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .main-nav > a,
    .nav-item {
        width: 100%;
        align-self: auto;
    }

    .main-nav > a,
    .nav-parent {
        display: block;
    }

    .nav-item {
        display: block;
    }

    .nav-parent {
        padding-right: 52px !important;
    }

    .submenu-toggle {
        position: absolute;
        z-index: 2;
        top: 8px;
        right: 0;
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .main-nav .nav-item .submenu {
        position: static;
        display: none;
        min-width: 0;
        padding: 6px 0 10px 18px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: #f7faff;
        box-shadow: none;
    }

    .main-nav .nav-item.is-open .submenu {
        display: block;
    }

    .submenu a {
        padding: 12px 14px;
        border-bottom: 0;
        font-size: 0.9rem;
    }

    .main-nav a::after {
        display: none;
    }

    .why-grid,
    .safety-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .category-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        justify-self: center;
    }

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

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

    .promo-panel {
        min-height: 320px;
    }

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

@media (max-width: 680px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: 72px 0;
    }

    .section--compact {
        padding: 58px 0 72px;
    }

    .notice-bar__inner {
        min-height: 34px;
        justify-content: center;
        text-align: center;
    }

    .notice-bar a {
        display: none;
    }

    .notice-bar .dashicons {
        display: none;
    }

    .site-header__inner {
        min-height: 68px;
        padding-block: 12px;
        flex-wrap: wrap;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand__word {
        font-size: 1.3rem;
    }

    .header-actions {
        position: static;
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        order: 3;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .main-nav {
        max-height: calc(100dvh - 128px);
        padding-bottom: 30px;
    }

    .page-hero,
    .page-hero__inner {
        min-height: 300px;
    }

    .page-hero__inner {
        padding-block: 42px;
    }

    .page-hero__shade {
        background: linear-gradient(90deg, rgba(2, 18, 45, 0.94) 0%, rgba(2, 18, 45, 0.76) 70%, rgba(2, 18, 45, 0.5) 100%);
    }

    .breadcrumb {
        margin-bottom: 26px;
    }

    .page-status {
        flex-direction: column;
    }

    .hero {
        min-height: 390px;
    }

    .hero > img {
        object-position: 44% center;
    }

    .hero__content {
        bottom: 24px;
    }

    .hero__content p {
        max-width: 330px;
        font-size: 0.88rem;
        line-height: 1.45;
    }

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

    .trust-grid,
    .steps,
    .category-grid,
    .mini-categories,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .feature-strip__inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding-block: 50px;
    }

    .why-section {
        padding: 72px 0;
    }

    .why-grid {
        gap: 44px;
    }

    .metric-grid {
        gap: 10px;
    }

    .metric-grid div {
        padding: 20px;
    }

    .metric-grid strong {
        font-size: 1.9rem;
    }

    .promo-panel {
        min-height: 0;
    }

    .responsible__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .age-badge--large strong {
        width: 72px;
        height: 72px;
        font-size: 1.35rem;
    }

    .faq-layout {
        gap: 20px;
    }

    .faq-item button {
        gap: 15px;
        font-size: 0.96rem;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-bottom: 0;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
