:root {
    --bg: #f6f9fd;
    --surface: #ffffff;
    --surface-soft: #eef6ff;
    --ink: #152235;
    --muted: #5f6e82;
    --line: #d9e5f2;
    --blue-900: #061a52;
    --blue-700: #0f3fa5;
    --blue-500: #1f66ff;
    --cyan: #19cad8;
    --emerald: #12a579;
    --gold: #c8a45d;
    --shadow: 0 20px 60px rgba(21, 34, 53, 0.12);
    --container: 1180px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 100;
    transform: translateY(-140%);
    background: var(--blue-700);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}

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

.container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(217, 229, 242, 0.85);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(100% - 40px, 1240px);
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 180px;
}

.brand img {
    width: 244px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2b3b52;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 11px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: #eef5ff;
    color: var(--blue-700);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
}

.language-switcher a {
    min-width: 44px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 6px 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.language-switcher a.is-active {
    background: var(--blue-700);
    color: #fff;
}

.nav-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--blue-900);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.hero-image,
.hero-surface {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center right;
}

.hero-surface {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(246, 249, 253, 0.92));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 96px;
}

.eyebrow,
.kicker {
    margin: 0 0 14px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: #0f1d31;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 900;
}

.hero-lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: #304258;
    font-size: 20px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.button-primary {
    background: var(--blue-700);
    color: #fff;
    box-shadow: 0 16px 30px rgba(15, 63, 165, 0.22);
}

.button-light {
    background: #fff;
    color: var(--blue-900);
    border-color: var(--line);
}

.hero-note {
    max-width: 760px;
    margin: 24px 0 0;
    color: #4f6278;
    font-size: 14px;
}

.metric-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
    padding: 24px 28px;
}

.metric:first-child {
    border-left: 1px solid var(--line);
}

.metric strong {
    color: var(--blue-700);
    font-size: 34px;
    line-height: 1;
}

.metric span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.section {
    padding: 96px 0;
}

.section-white {
    background: #fff;
}

.section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

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

h2 {
    margin: 0;
    color: #122035;
    font-size: 42px;
    line-height: 1.12;
}

h3 {
    margin: 0;
    color: #142338;
    font-size: 19px;
    line-height: 1.28;
}

.section-head p,
.section-copy p,
.about-panel p,
.service-card p,
.market-card p,
.trust-item p,
.principle p,
.flow-step p,
.mind-node p,
.compliance-card p,
.policy-item p,
.insight-list p,
.faq-item p {
    color: var(--muted);
}

.section-head > p:last-child,
.section-copy > p,
.about-panel > p {
    font-size: 18px;
}

.split,
.media-split,
.contact-layout,
.compliance-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.split-reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.partner-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.partner-row strong {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fbff;
    padding: 6px 12px;
    color: var(--blue-900);
    font-size: 13px;
}

.trust-list {
    display: grid;
    gap: 16px;
}

.trust-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.06);
}

.trust-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--blue-700);
    font-weight: 900;
}

.trust-item p,
.principle p,
.service-card p,
.market-card p,
.flow-step p,
.mind-node p,
.compliance-card p,
.policy-item p,
.insight-list p {
    margin: 10px 0 0;
    font-size: 15px;
}

.about-section,
.workflow-section,
.faq-section {
    background:
        linear-gradient(180deg, #f6f9fd 0%, #eef6ff 100%);
}

.about-panel {
    border-left: 4px solid var(--cyan);
    padding: 8px 0 8px 28px;
}

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

.principle,
.service-card,
.market-card,
.compliance-card,
.policy-item,
.faq-item,
.check-panel,
.contact-form,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.05);
}

.principle {
    padding: 24px;
}

.principle span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #e8f8fb;
    color: #068897;
    font-weight: 900;
}

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

.service-card {
    min-height: 260px;
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 102, 255, 0.35);
    box-shadow: var(--shadow);
}

.service-abbr,
.market-code {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #eef5ff;
    color: var(--blue-700);
    font-weight: 900;
}

.media-section {
    background:
        linear-gradient(90deg, #f8fbff 0%, #eef8fb 100%);
    padding: 64px 0;
}

.media-section .media-split {
    gap: 34px;
}

.image-panel {
    overflow: hidden;
    border-radius: 8px;
}

.image-panel img {
    width: 100%;
    max-height: 320px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.media-section .section-copy > p {
    font-size: 16px;
}

.media-section .insight-list {
    gap: 10px;
    margin-top: 20px;
}

.media-section .insight-list article {
    padding-block: 2px;
}

.insight-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.insight-list article {
    border-left: 3px solid var(--cyan);
    padding: 4px 0 4px 18px;
}

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

.market-card {
    min-height: 260px;
    padding: 28px;
}

.market-code {
    background: #f5f0e4;
    color: #7c5d18;
}

.flow-diagram {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

.flow-step {
    position: relative;
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.05);
}

.flow-step::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -12px;
    width: 12px;
    height: 2px;
    background: var(--cyan);
}

.flow-step:last-child::after {
    display: none;
}

.step-index {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
}

.strategy-section {
    overflow: hidden;
}

.mind-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 18px;
    align-items: stretch;
}

.mind-map::before {
    content: "";
    position: absolute;
    inset: 16% 10%;
    border: 1px dashed rgba(31, 102, 255, 0.28);
    border-radius: 8px;
    pointer-events: none;
}

.mind-center,
.mind-node {
    position: relative;
    z-index: 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.05);
}

.mind-center {
    grid-column: 2;
    grid-row: 2;
    min-height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), #168bd8 60%, #16b8c9);
}

.mind-center strong {
    font-size: 22px;
    line-height: 1.25;
}

.mind-node {
    min-height: 142px;
    padding: 22px;
}

.mind-node-1 { grid-column: 1; grid-row: 1; }
.mind-node-2 { grid-column: 2; grid-row: 1; }
.mind-node-3 { grid-column: 3; grid-row: 1; }
.mind-node-4 { grid-column: 1; grid-row: 3; }
.mind-node-5 { grid-column: 2; grid-row: 3; }
.mind-node-6 { grid-column: 3; grid-row: 3; }

.compliance-section {
    background: linear-gradient(180deg, #eef7ff 0%, #f9fbfe 100%);
}

.compliance-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.compliance-card {
    padding: 24px;
}

.check-panel {
    position: sticky;
    top: 106px;
    padding: 28px;
}

.check-panel h3 {
    margin-bottom: 18px;
}

.check-panel ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-panel li {
    position: relative;
    padding-left: 28px;
    color: #304258;
    font-size: 15px;
    font-weight: 700;
}

.check-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(18, 165, 121, 0.13);
}

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

.policy-item {
    padding: 24px;
}

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

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    color: #142338;
    font-weight: 900;
    cursor: pointer;
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
}

.partner-marquee-section {
    overflow: hidden;
    padding: 86px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}

.logo-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
    display: flex;
    flex: 0 0 auto;
    min-width: max-content;
    gap: 18px;
    padding: 6px 9px;
    animation: partner-scroll 34s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.partner-logo-card {
    width: 220px;
    min-height: 112px;
    display: grid;
    grid-template-columns: 78px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    padding: 18px;
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.06);
}

.partner-logo-card:hover,
.partner-logo-card:focus-visible {
    border-color: color-mix(in srgb, var(--partner-accent), #ffffff 48%);
    box-shadow: 0 18px 34px color-mix(in srgb, var(--partner-accent), transparent 78%);
    outline: none;
}

.partner-logo-image {
    grid-row: 1 / 3;
    width: 78px;
    height: 56px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

.partner-logo-card strong {
    color: #13233a;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.05;
}

.partner-logo-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

@keyframes partner-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.contact-section {
    background:
        linear-gradient(90deg, rgba(6, 26, 82, 0.96), rgba(15, 63, 165, 0.92)),
        #0b2b6d;
    color: #fff;
}

.contact-section h2,
.contact-section h3,
.contact-section .kicker {
    color: #fff;
}

.contact-section .section-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-card {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: none;
}

.contact-card span {
    font-weight: 900;
}

.contact-card a {
    color: #bff8ff;
    font-weight: 900;
}

.contact-card small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.privacy-note {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 800;
}

.contact-form {
    padding: 28px;
    background: #fff;
    color: var(--ink);
}

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

.contact-form label,
.contact-form fieldset {
    display: grid;
    gap: 8px;
    margin: 0;
}

.contact-form span,
.contact-form legend {
    color: #263951;
    font-size: 13px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd9e8;
    border-radius: 8px;
    background: #f9fcff;
    color: #122035;
    padding: 12px 13px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(31, 102, 255, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form fieldset {
    border: 0;
    padding: 20px 0 18px;
}

.channel-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel-options label {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: #f8fbff;
    cursor: pointer;
}

.channel-options input {
    width: 16px;
    min-height: auto;
    height: 16px;
    margin: 0 8px 0 0;
}

.form-button {
    width: 100%;
    margin-top: 18px;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    color: #26425f;
    font-size: 14px;
    font-weight: 800;
}

.form-status a {
    color: var(--blue-700);
    text-decoration: underline;
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    color: #33465d;
    padding: 38px 0;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.35fr;
    gap: 28px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footer-brand strong {
    color: #10203a;
    font-size: 18px;
}

.footer-brand p,
.footer-legal p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-address {
    display: grid;
    gap: 4px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.footer-address span:first-child,
.footer-address a {
    color: #122035;
    font-weight: 900;
}

.footer-legal {
    text-align: right;
}

@media (max-width: 1120px) {
    .header-inner {
        gap: 12px;
    }

    .brand img {
        width: 210px;
    }

    .nav-panel {
        gap: 8px;
    }

    .site-nav {
        gap: 2px;
        font-size: 13px;
    }

    .site-nav a {
        padding-inline: 8px;
    }

    .hero h1 {
        font-size: 52px;
    }

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

    .flow-diagram {
        grid-template-columns: repeat(3, 1fr);
    }

    .flow-step:nth-child(3)::after,
    .flow-step:last-child::after {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .header-inner {
        width: min(100% - 24px, 1240px);
        min-height: var(--header-height);
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
    }

    .brand img {
        width: 190px;
        max-height: 48px;
    }

    .nav-toggle {
        display: inline-flex;
        grid-column: 2;
    }

    .nav-panel {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        margin-left: 0;
        padding: 12px 0 16px;
        border-top: 1px solid var(--line);
        gap: 12px;
    }

    .site-header.is-open .nav-panel {
        display: grid;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .site-nav a {
        min-height: 46px;
        padding: 10px 12px;
        justify-content: center;
        border: 1px solid var(--line);
        background: #fff;
    }

    .language-switcher {
        width: 100%;
        justify-content: space-between;
    }

    .language-switcher a {
        flex: 1;
    }

    .hero {
        min-height: auto;
        display: block;
    }

    .hero-image {
        position: relative;
        height: 420px;
        min-height: 0;
        object-position: center right;
    }

    .hero-surface {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.98) 56%, #fff 100%);
    }

    .hero-content {
        position: relative;
        inset: auto;
        width: 100%;
        padding: 34px 0 44px;
        background: #fff;
    }

    .hero h1 {
        max-width: 620px;
        font-size: 42px;
    }

    .hero-lead {
        max-width: 620px;
        font-size: 17px;
        line-height: 1.65;
    }

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

    .metric,
    .metric:first-child {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 72px 0;
    }

    .partner-marquee-section {
        padding: 64px 0;
    }

    h2 {
        font-size: 34px;
    }

    .split,
    .media-split,
    .contact-layout,
    .compliance-layout,
    .split-reverse {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .check-panel {
        position: static;
    }

    .policy-grid,
    .faq-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .mind-map {
        grid-template-columns: 1fr;
    }

    .mind-map::before {
        display: none;
    }

    .mind-center,
    .mind-node,
    .mind-node-1,
    .mind-node-2,
    .mind-node-3,
    .mind-node-4,
    .mind-node-5,
    .mind-node-6 {
        grid-column: auto;
        grid-row: auto;
    }

    .mind-center {
        order: -1;
        min-height: 120px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-legal {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .brand img {
        width: 176px;
    }

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

    .nav-panel {
        gap: 10px;
    }

    .hero-image {
        height: 320px;
    }

    .hero-content {
        padding: 28px 10px 34px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        gap: 10px;
    }

    .button {
        width: 100%;
    }

    .hero-note {
        font-size: 13px;
    }

    .metric-grid,
    .service-grid,
    .market-grid,
    .principle-grid,
    .flow-diagram,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        min-height: 104px;
        padding: 22px 8px;
    }

    .metric strong {
        font-size: 30px;
    }

    .section {
        padding: 58px 0;
    }

    .section + .section,
    .metric-strip + .section {
        border-top: 1px solid rgba(217, 229, 242, 0.65);
    }

    h2 {
        font-size: 29px;
    }

    h3 {
        font-size: 18px;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .trust-item {
        grid-template-columns: 1fr;
    }

    .service-card,
    .market-card {
        min-height: auto;
    }

    .flow-step {
        min-height: auto;
    }

    .flow-step::after {
        left: 26px;
        top: auto;
        right: auto;
        bottom: -12px;
        width: 2px;
        height: 12px;
    }

    .flow-step:nth-child(3)::after {
        display: block;
    }

    .flow-step:last-child::after {
        display: none;
    }

    .contact-form {
        padding: 20px;
    }

    .partner-marquee-section {
        padding: 54px 0;
    }

    .logo-track {
        gap: 12px;
        animation-duration: 26s;
    }

    .partner-logo-card {
        width: 184px;
        min-height: 98px;
        grid-template-columns: 62px 1fr;
        column-gap: 12px;
        padding: 14px;
    }

    .partner-logo-image {
        width: 62px;
        height: 46px;
    }

    .partner-logo-card strong {
        font-size: 17px;
    }

    .channel-options label {
        flex: 1 1 46%;
        justify-content: center;
    }

    .footer-brand {
        align-items: flex-start;
    }
}

@media (max-width: 390px) {
    .brand img {
        width: 142px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .language-switcher a {
        min-width: 0;
        font-size: 11px;
        padding-inline: 5px;
    }

    .channel-options label {
        flex-basis: 100%;
    }
}
