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

:root {
    --bg: #F4F6FB;
    --panel: #FFFFFF;
    --glass: rgba(255, 255, 255, .72);
    --text: #182033;
    --muted: #68758A;
    --line: rgba(31, 41, 55, .12);
    --brand: #2563EB;
    --brand-strong: #1E3A8A;
    --brand-soft: #EFF6FF;
    --accent: #0EA5E9;
    --dark: #111827;
    --cta-height: 56px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'ALKATIP Basma Tom', system-ui, -apple-system, 'Segoe UI', 'Inter', 'SF Pro Text', 'Noto Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

body[data-lang="ug"] {
    direction: rtl;
}

body[data-lang="zh"] {
    direction: ltr;
}

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

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

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(255 255 255);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.main-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: rgba(17, 24, 39, .08);
    box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
}

.header-inner {
    width: min(100% - 32px, 1180px);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--brand);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
}

.logo-icon span {
    color: #FFFFFF;
    font-size: 28px;
    height: 26px;
    line-height: 26px;
    font-family:  system-ui, -apple-system, 'Segoe UI', 'Inter', 'SF Pro Text', 'Noto Sans', 'Helvetica Neue', sans-serif;
}

.logo-text h1 {
    margin: 0;
    color: var(--brand-strong);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.logo-text p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.right-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--brand-strong);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.nav-toggle:hover,
.nav-toggle.is-open {
    border-color: rgba(37, 99, 235, .32);
    color: var(--brand);
    background: var(--brand-soft);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--brand);
}

.lang-switch {
    display: inline-flex;
    gap: 0;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, .58);
    overflow: hidden;
    border-radius: 25px;
}

.lang-option {
    position: relative;
    min-width: 44px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-strong);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: color .2s ease;
    overflow: hidden;
    border-radius: 25px;
}



.lang-option span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.lang-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transform: skewX(0deg) scaleX(.92);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    z-index: 0;
}

.lang-option.active {
    color: #FFFFFF;
}

.lang-option.active::before {
    background: var(--brand);
    box-shadow: 0 6px 14px rgba(37, 99, 235, .2);
    transform: skewX(-9deg) scaleX(1.08);
}

body[data-lang="zh"] .lang-option.active::before {
    transform: skewX(9deg) scaleX(1.08);
}

.lang-option:not(.active):hover {
    color: var(--brand-strong);
}

.lang-option:not(.active):hover::before {
    background: rgba(37, 99, 235, .08);
}

.main-flex {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 28px;
    align-items: stretch;
    padding: 42px 0 28px;
}

.app-info-section,
.app-screenshot,
.about-company {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--glass);
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
}

.app-info-section {
    padding: 34px;
}

.app-screenshot {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 30px;
    background: rgba(255, 255, 255, .6);
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 0 14px;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: 14px;
    font-weight: 900;
}

.download-badge i {
    color: var(--brand);
    font-size: 17px;
    line-height: 1;
}

.app-title {
    max-width: 700px;
    color: var(--text);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.app-desc {
    max-width: 640px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1F2937;
    font-size: 15px;
    line-height: 1.8;
}

.feature-list i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
    border-radius: 8px;
    background: var(--brand);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--cta-height);
    min-height: var(--cta-height);
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #FFFFFF;
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .2);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.download-btn i {
    font-size: 20px;
    line-height: 1;
}

.download-btn:hover {
    transform: translateY(-1px);
    background: var(--brand-strong);
    box-shadow: 0 10px 22px rgba(37, 99, 235, .24);
}

.cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.qr-panel {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 14px;
    height: var(--cta-height);
    min-height: var(--cta-height);
    margin-top: 0;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .62);
    cursor: pointer;
    user-select: none;
}

.qr-code {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    width: 82px;
    height: 82px;
    overflow: hidden;
    border-radius: 8px;
    background: #FFFFFF;
    border: 8px solid #FFFFFF;
    box-shadow: inset 0 0 0 1px var(--line), 0 14px 28px rgba(17, 24, 39, .16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px) scale(.92);
    transform-origin: bottom center;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 4;
}

.qr-panel:hover .qr-code,
.qr-panel:focus-within .qr-code,
.qr-panel.is-open .qr-code {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.qr-code::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid var(--brand);
    border-radius: 6px;
}

.qr-code::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(14, 165, 233, .45);
    animation: qrScan 2.2s ease-in-out infinite;
}

.qr-code span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--brand);
    box-shadow:
            28px 0 0 var(--text),
            0 28px 0 var(--text),
            28px 28px 0 var(--brand),
            14px 42px 0 var(--text),
            42px 14px 0 var(--brand);
}

.qr-code span:nth-child(1) {
    top: 8px;
    left: 8px;
}

.qr-code span:nth-child(2) {
    top: 8px;
    right: 8px;
    box-shadow:
            -28px 0 0 var(--text),
            0 28px 0 var(--text),
            -28px 28px 0 var(--brand);
}

.qr-code span:nth-child(3) {
    bottom: 8px;
    left: 8px;
    box-shadow:
            28px 0 0 var(--text),
            0 -28px 0 var(--text),
            28px -28px 0 var(--brand);
}

.qr-copy {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.qr-copy i {
    grid-row: 1 / 3;
    color: var(--brand);
    font-size: 20px;
    line-height: 1;
}

.qr-copy strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.2;
}

.qr-copy small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

@keyframes qrScan {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(54px);
    }
}

.screen-mock {
    width: min(100%, 300px);
    padding: 12px;
    border-radius: 26px;
    background: rgba(17, 24, 39, .9);
    box-shadow: 0 16px 30px rgba(15, 23, 42, .2);
}

.mock-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 4px 0 12px;
}

.mock-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--brand);
}

.mock-dot:nth-child(2) {
    background: var(--accent);
}

.mock-dot:nth-child(3) {
    background: #FFFFFF;
}

.mock-screen {
    position: relative;
    min-height: 240px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(248, 250, 252, .94);
    text-align: center;
}

.preview-slide {
    grid-area: 1 / 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}

.preview-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.movie-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 44px;
    line-height: 1;
}

.mock-screen p {
    color: var(--brand-strong);
    font-size: 17px;
    font-weight: 900;
}

.mock-screen small {
    color: var(--muted);
    font-weight: 800;
}

.app-caption {
    max-width: 320px;
    color: var(--brand-strong);
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

.app-caption i {
    color: var(--brand);
    font-size: 16px;
    vertical-align: -2px;
}

.screenshots-section {
    margin: 6px 0 34px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--glass);
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.section-head h2 {
    color: var(--text);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.section-head p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(180px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.app-shot {
    min-width: 180px;
    aspect-ratio: 9 / 16;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
}

.shot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    color: #FFFFFF;
    background: var(--dark);
}

.shot-top i {
    font-size: 20px;
}

.shot-top span {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 800;
    opacity: .72;
}

.shot-body {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    align-content: stretch;
    gap: 8px;
    padding: 10px;
    color: var(--text);
    background: rgba(248, 250, 252, .94);
}

.shot-body img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 12px;
    background: #FFFFFF;
    cursor: zoom-in;
}

.shot-body strong {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.shot-body small {
    color: var(--brand);
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.modal-open {
    overflow: hidden;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, .72);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.image-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-content {
    position: relative;
    width: min(100%, 420px);
    max-height: min(88vh, 760px);
    display: grid;
    justify-items: center;
}

.image-modal-img {
    width: 100%;
    max-height: min(88vh, 760px);
    object-fit: contain;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .34);
}

.image-modal-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: rgba(15, 23, 42, .86);
    color: #FFFFFF;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.image-modal-close:hover {
    background: var(--brand);
}

.about-company {
    margin: 4px 0 34px;
    padding: 30px 34px;
}

.about-company h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.about-company h3::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--brand);
}

.about-company p {
    max-width: 980px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.95;
}

.agreement-section {
    margin: 4px 0 34px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--glass);
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
}

.agreement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.agreement-card {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    color: var(--text);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.agreement-card:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, .28);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .1);
}

.agreement-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 22px;
    line-height: 1;
}

.agreement-info {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.agreement-info strong {
    overflow: hidden;
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agreement-info small {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agreement-card > .ri-arrow-left-line {
    color: var(--brand);
    font-size: 20px;
}

.agreement-empty {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

.logo-area,
.back-home {
    color: inherit;
    text-decoration: none;
}

.back-home {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--brand-strong);
    font-size: 14px;
    font-weight: 900;
}

.back-home i {
    color: var(--brand);
    font-size: 18px;
}

.agreement-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agreement-page {
    padding: 34px 0;
}

.agreement-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
}

.agreement-detail-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.agreement-detail-head h1 {
    color: var(--text);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
}

.agreement-detail-head p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.agreement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.agreement-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
}

.agreement-meta i {
    color: var(--brand);
    font-size: 15px;
}

.agreement-content {
    color: #1F2937;
    font-size: 16px;
    line-height: 2;
}

.agreement-content h1,
.agreement-content h2,
.agreement-content h3,
.agreement-content h4 {
    margin: 22px 0 10px;
    color: var(--text);
    line-height: 1.35;
    font-weight: 900;
}

.agreement-content p {
    margin: 10px 0;
}

.footer {
    margin-top: 24px;
    padding: 30px 16px 26px;
    background: var(--dark);
    color: #CBD5E1;
}

.footer-content {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-col {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-agreements {
    min-width: min(100%, 360px);
}

.footer-agreement-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.lang-zh {
    display: none;
}

body[data-lang="zh"] .lang-ug {
    display: none;
}

body[data-lang="zh"] .lang-zh {
    display: inline;
}

.agreement-content.lang-zh {
    display: none;
}

body[data-lang="zh"] .agreement-content.lang-zh {
    display: block;
}

.footer-links a {
    color: var(--panel);
    text-decoration: none;
    font-weight: 800;
}

.footer-agreement-links a,
.footer-empty {
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.footer-agreement-links a:hover,
.footer-links a:hover {
    color: #67E8F9;
}

.footer-copyright {
    width: min(100% - 32px, 1180px);
    margin: 22px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, .22);
    color: #94A3B8;
    text-align: center;
    font-size: 12px;
}

[data-i18n] {
    transition: opacity .1s ease;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 70px;
        padding: 10px 0;
        position: relative;
        align-items: center;
        gap: 12px;
    }

    .right-header {
        margin-inline-start: auto;
        gap: 10px;
    }

    .nav-toggle {
        display: inline-grid;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        border: 0 solid var(--line);
        border-radius: 8px;
        background: #FFFFFF;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
        opacity: 0;
        pointer-events: none;
        transition: max-height .24s ease, padding .24s ease, opacity .2s ease, border-width .2s ease;
    }

    .nav-links a {
        min-height: 42px;
        display: grid;
        align-items: center;
        padding: 0 14px;
        border: 0;
        border-radius: 6px;
        background: rgba(37, 99, 235, .05);
        font-size: 14px;
    }

    .main-header.nav-open .nav-links {
        max-height: 260px;
        padding: 10px;
        border-width: 1px;
        opacity: 1;
        pointer-events: auto;
    }

    .main-flex {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

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

@media (max-width: 620px) {
    .container,
    .header-inner,
    .footer-content,
    .footer-copyright {
        width: min(100% - 24px, 1180px);
    }

    .logo-area {
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-icon span {
        font-size: 24px;
    }

    .logo-text h1 {
        font-size: 19px;
    }

    .logo-text p {
        font-size: 11px;
    }

    .right-header {
        flex: 0 0 auto;
    }

    .agreement-header-actions {
        gap: 8px;
    }

    .agreement-header-actions .back-home {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .lang-switch {
        flex: 0 0 auto;
    }

    .lang-option {
        min-width: 38px;
        min-height: 32px;
        padding: 0 10px;
    }

    .app-info-section,
    .app-screenshot,
    .about-company,
    .agreement-section,
    .agreement-detail {
        padding: 22px;
    }

    .app-title {
        font-size: 34px;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .qr-panel {
        width: 100%;
        height: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        padding: 14px;
    }

    .download-btn {
        width: 100%;
    }

    .qr-code {
        position: relative;
        left: auto;
        bottom: auto;
        width: 92px;
        height: 92px;
        flex: 0 0 auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        z-index: 1;
    }

    .qr-panel:hover .qr-code,
    .qr-panel:focus-within .qr-code,
    .qr-panel.is-open .qr-code {
        transform: none;
    }

    .qr-copy {
        width: 100%;
        min-width: 0;
    }

    .qr-copy strong,
    .qr-copy small {
        overflow-wrap: anywhere;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

    .screenshots-grid {
        grid-template-columns: repeat(7, minmax(150px, 1fr));
        gap: 14px;
    }

    .app-shot {
        min-width: 150px;
    }

    .screenshots-section {
        padding: 22px;
    }

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

    .agreement-detail-head {
        align-items: flex-start;
    }

    .agreement-detail-head h1 {
        font-size: 23px;
    }

    .footer-content {
        display: grid;
    }
}
