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

:root {
    --orange: #fa5e00;
    --orange-dark: #e05200;
    --blue: #428CD7;
    --blue-dark: #3178c6;
    --bg: #f5f7fa;
    --surface: #ffffff;
    --surface2: #f0f2f7;
    --text: #1a1d2e;
    --muted: #6b7280;
    --border: #e2e6ef;
    --radius: 14px;
    --container: 1300px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}


.hero {
    background: #23558d;
    border-bottom: 1px solid var(--border);
}

.hero .container {
    padding-top: 72px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #fff4ee;
    color: var(--orange);
    border: 1px solid #fdd0b3;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 18px;
	color:white;
}

.hero h1 span {
    color: var(--orange);
}

.hero-desc {
    color: var(--surface);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 540px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(250, 94, 0, .28);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(250, 94, 0, .38);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
	color:var(--surface);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
	
    font-size: .78rem;
    color: var(--surface2);
    margin-top: 2px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .12));
}


.section {
    padding: 72px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--muted);
    font-size: .95rem;
}


.info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.info-table thead {
    background: var(--surface2);
}

.info-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.info-table tbody tr {
    border-top: 1px solid var(--border);
    transition: background .12s;
}

.info-table tbody tr:hover {
    background: #fafbff;
}

.info-table td {
    padding: 16px 20px;
    font-size: .93rem;
    vertical-align: middle;
}

.info-table td:first-child {
    color: var(--muted);
    width: 220px;
}

.info-table td:nth-child(2) {
    font-weight: 600;
}

.badge-version {
    display: inline-block;
    background: #fff4ee;
    color: var(--orange);
    border: 1px solid #fdd0b3;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .82rem;
    font-weight: 700;
}

.badge-platform {
    display: inline-block;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .82rem;
    font-weight: 600;
    margin-right: 6px;
    color: var(--text);
}


.content-block {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-block h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 28px;
}

.content-block h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 32px 0 14px;
}

.content-block ol,
.content-block ul {
    padding-left: 22px;
    color: var(--muted);
    font-size: .95rem;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.content-block ol {
    list-style: decimal;
}

.content-block ul {
    list-style: disc;
}

.content-block li {
    padding-left: 4px;
}

.content-block li strong {
    color: var(--text);
}


.download-section {
    background: linear-gradient(135deg, #1a1d2e 0%, #252a45 100%);
    padding: 80px 0;
}

.download-section .section-title h2 {
    color: #fff;
}

.download-section .section-title p {
    color: rgba(255, 255, 255, .55);
}

.dl-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dl-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dl-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dl-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dl-card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.dl-card-icon.android {
    background: var(--orange);
}

.dl-card-icon.ios {
    background: var(--blue);
}

.dl-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.dl-card-subtitle {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    margin-top: 2px;
}

.dl-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.dl-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dl-meta-label {
    color: rgba(255, 255, 255, .45);
}

.dl-meta-value {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transition: transform .15s, filter .2s;
}

.dl-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.dl-btn.android {
    background: var(--orange);
    box-shadow: 0 4px 20px rgba(250, 94, 0, .4);
}

.dl-btn.ios {
    background: var(--blue);
    box-shadow: 0 4px 20px rgba(66, 140, 215, .4);
}

.dl-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}


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

.faq-inner {
    max-width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: .97rem;
    font-weight: 600;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .12s;
}

.faq-question:hover {
    background: var(--surface2);
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .65rem;
    transition: transform .25s, background .2s, color .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 16px 24px 20px;
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
}


footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    color: var(--muted);
    font-size: .83rem;
    text-align: center;
}


.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--text);
    font-size: .88rem;
    font-family: inherit;
    font-weight: 500;
    transition: border-color .2s, background .2s;
}

.lang-btn:hover {
    border-color: var(--blue);
    background: #eef4fc;
}

.lang-btn .flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.lang-btn .arrow {
    font-size: .6rem;
    color: var(--muted);
    transition: transform .2s;
}

.lang-switcher.open .lang-btn .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 180px;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 200;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    cursor: pointer;
    transition: background .12s;
    font-size: .88rem;
    color: var(--text);
}
.lang-option a{
    text-decoration: blink;
    color: black;
}

.lang-option:hover {
    background: var(--surface2);
}

.lang-option.active {
    color: var(--blue);
    font-weight: 600;
}

.lang-option .flag-img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}


@media (max-width: 960px) {
    .container {
        padding: 0 24px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 44px;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-height: 280px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .dl-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .section {
        padding: 52px 0;
    }

    .faq-section {
        padding: 52px 0;
    }

    .download-section {
        padding: 56px 0;
    }
}

@media (max-width: 600px) {
    .info-table td,
    .info-table thead th {
        padding: 12px 14px;
        font-size: .84rem;
    }

    .info-table td:first-child {
        width: 130px;
    }

    .dl-card {
        padding: 28px 24px;
    }
}
