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

html,
body {
    min-height: 100%;
}


a {
    color: #000;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.page-box .side-bar {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 31;
    top: 0;
}

.page-box .side-bar .nav {
    display: flex;
    color: black;
    list-style-type: none;
    flex: 1;
    margin-left: 40px;
}

.page-box .side-bar .nav li {
    margin-right: 30px;
    font-size: 16px;
    line-height: 20px;
}

.page-box .side-bar .nav li a {
    color: #fff;
    list-style-type: none;
    text-decoration: unset;
    opacity: 0.8;
}

.page-box .side-bar .nav li .active {
    opacity: 1;
    font-weight: bold;
    position: relative;
}

.page-box .side-bar .nav li .active::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.page-box .side-bar .home-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 18px;
    width: 100%;
    max-width: 1300px;
    height: 64px;
}

.page-box .side-bar .home-head .logo {
    font-size: 0;
    margin: 0 20px 0 0 !important;
}

.page-box .side-bar .home-head .logo img {
    display: block;
    height: 34px;
}

.page-box .side-bar .home-head .number {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.page-box .side-bar .home-head .number .btn-login-pc {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 10px 28px;
    border-radius: 46px;
    background: #fff;
    cursor: pointer;
}

.page-box .side-bar .home-head .number .btn-login-pc:hover {
    opacity: 0.8;
}

.page-box .side-bar .home-head .number .btn-login-pc span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 20px;
}

.page-box .side-bar .home-head .btn-menu-x {
    display: none;
}

.page-box .side-bar .home-head .btn-menu,
.page-box .side-bar .home-head .btn-login {
    display: none;
}

.lang-cs {
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 100px;
    height: 38px;
    gap: 4px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
    display: none;

}

.lang-cs svg {
    display: block;
    width: 24px;
    height: 24px;
}

.lang-list {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2000;
    display: none;
    max-width: 1300px;
}

.lang-list .inner {
    background: #fff;
    position: absolute;
    right: 120px;
    top: 78px;
    border-radius: 20px;
    padding: 20px 10px;
    width: 240px;
    display: flex;
    font-size: 12px;
    font-weight: bold;
    flex-wrap: wrap;
    line-height: 2;
}

.lang-list .inner a {
    min-width: 49%;
    display: block;
    text-align: center;
    color: #000;
}

.lang-list .inner a.cur {
    color: red;
}

.animate__down {
    display: inline-block;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1), cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50px);
    opacity: 0;
    transition-duration: 2s, 1s;
}

.animate__down.animated {
    transition-delay: 400ms;
    transform: translateY(0px) scale(1);
    opacity: 1;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #5B21B6;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #888;
    --white: #fff;
    --max-width: 1200px;
    background: var(--white);
    color: var(--text-dark);
    border-top: 1px solid #eee;
    padding: 60px 0 40px;
    position: relative;
    font-family: Helvetica, sans-serif;
    line-height: 1.6;
}

.site-footer a {
    text-decoration: none;
}

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

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

.site-footer .footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.site-footer .footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.site-footer .footer-col a:hover {
    color: var(--purple);
}

.site-footer .social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.site-footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    color: var(--white);
    font-size: 16px;
    transition: background 0.2s;
}

.site-footer .social-icons a:hover {
    background: var(--purple);
}

.site-footer .social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer .footer-app {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.site-footer .footer-app h4 {
    font-size: 20px;
    font-weight: 700;
}

.site-footer .footer-app .gplay-badge {
    height: 40px;
    width: auto;
}

.site-footer .footer-description {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.site-footer .footer-logo {
    padding: 20px 0;
}

.site-footer .footer-logo img {
    display: block;
    margin: 0 auto;
    height: 42px;
}

.site-footer .footer-copyright {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   Download Page — Main Sections
   ============================================================ */

.download-page {
    font-family: Helvetica, Arial, sans-serif;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #000;
    line-height: 1.2;
    margin-bottom: 60px;
}

.section-heading--light {
    color: #fff;
}

/* ---- S1: Hero ---- */
.hero-section {
    background-color: #933cfb;
    background-image: url('/images/downlonad-new/s1-bg.jpg');
    background-size: cover;
    background-position: center top;
    padding: 240px 40px 100px;
    text-align: center;
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-title {
    font-size: 53px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 32px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 52px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 202px;
    padding: 0 28px 0 10px;
    height: 64px;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 0 19px 11px rgba(183, 123, 255, 1);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-hero:hover { opacity: 0.85; }

.btn-hero__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-hero__icon--web {
    background-image: url('/images/downlonad-new/icon-1.png');
}

.btn-hero__icon--android {
    background-image: url('/images/downlonad-new/icon-2.png');
}

/* ---- S2: Quick Answer ---- */
.quick-answer-section {
    padding: 80px 0;
    background: radial-gradient(95% 52% at 64% 50%, #fcc7ff 0%, rgba(233, 39, 252, 0.07) 100%);
}

.quick-answer-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.qa-card {
    border-radius: 57px;
    padding: 16px;
    width: 487px;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.53);
    background: linear-gradient(180deg, #c87cfd 0%, #8623ff 100%);
}

.qa-card__img-wrap {
    background: #ffe2e2;
    border-radius: 44px;
    overflow: hidden;
    margin-bottom: 28px;
    height: 202px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qa-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    padding-left: 22px;
}

.qa-card__list {
    list-style: none;
    padding: 0;
    padding-left: 22px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.qa-card__list li {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding-left: 18px;
    position: relative;
    line-height: 36px;
}

.qa-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(204, 0, 255, 0.43);
    border: 1px solid #fff;
    box-shadow: 0 0 16px 2px rgba(242, 0, 246, 0.36);
}

/* ---- S3: Web reasons ---- */
.web-reasons-section {
    background: #faf3ff;
    padding: 86px 0 80px;
}

/* ---- S4: App reasons ---- */
.app-reasons-section {
    background: #933cfb;
    padding: 86px 0 80px;
}

/* ---- Shared reason-row layout ---- */
.reason-list {
    display: flex;
    flex-direction: column;
}

.reason-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-row--text-right {
    flex-direction: row-reverse;
}

.reason-row__media {
    flex: 0 0 48%;
    max-width: 48%;
}

.reason-row__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 48px;
}

.reason-row__text {
    flex: 1;
    max-width: 400px;
}

.reason-row__index {
    display: block;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -30px;
    background: linear-gradient(180deg, #dd8eff 0%, rgba(255,255,255,0) 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-row__index--light {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 65%);
    -webkit-background-clip: text;
    background-clip: text;
}

.reason-row__title {
    font-size: 31px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 18px;
}

.reason-row__title--light {
    color: #fff;
}

.reason-row__desc {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
}

.reason-row__desc--light {
    color: #fff;
}

.reason-row__desc a,
.reason-row__desc em {
    color: inherit;
}

/* ---- S5: Parity / Differences / How-to ---- */
.parity-section {
    background: #faf3ff;
    padding: 83px 0 80px;
}

.parity-features {
    max-width: 860px;
    margin: 0 auto 80px;
}

.parity-features__label {
    background: #9746fa;
    border-radius: 20px 20px 0 0;
    border: 1px solid #933cfb;
    padding: 0 31px;
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.parity-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.parity-features__list li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 32px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #f0e8fa;
}

.parity-features__list li:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.parity-features__list li::before {
    content: '✓';
    color: #23AC00;
    font-size: 19px;
    font-weight: 700;
    flex-shrink: 0;
}

.parity-features__note {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 18px;
}

/* Diff cards */
.diff-section {
    margin-bottom: 60px;
}

.diff-section__header {
    margin-bottom: 34px;
    text-align: center;
}

.diff-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.15;
    margin-bottom: 12px;
}

.diff-section__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.diff-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.diff-card {
    border-radius: 25px;
    padding: 20px 21px 20px 35px;
    min-height: 142px;
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #933cfb;
    background: #fff;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(151, 70, 250, 0.08);
}

.diff-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    width: 150px;
}

.diff-card__badge {
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    background: #933cfb;
    color: #fff;
}


.diff-card__label {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}


.diff-card__divider {
    width: 1px;
    height: 83px;
    margin: 0 21px;
    flex-shrink: 0;
    background: rgba(151, 151, 151, 0.5);
}
.diff-card__body {
    font-size: 12px;
    line-height: 1.6;
    flex: 1;
}


/* Session note */
.session-note {
    margin-bottom: 60px;
}

.session-note__title {
    font-size: 36px;
    font-weight: 700;
    color: #9746fa;
    margin-bottom: 16px;
    text-align: center;
}

.session-note__body {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    text-align: center;
    max-width: 953px;
    margin: 0 auto;
}

.session-note__img-wrap {
    display: block;
    margin: 40px auto 0;
    max-width: 960px;
    width: 100%;
}

.session-note__img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* How-to */
.howto-section {
    max-width: 900px;
    margin: 60px auto 0;
}

.howto-section__title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 24px;
}

.howto-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.howto-col__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.howto-col__icon {
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

.howto-col__label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

.howto-col__steps {
    display: flex;
    flex-direction: column;
}

.howto-step {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 0;
    position: relative;
}

.howto-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    color: rgba(241, 186, 255, 1);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    margin-top: 4px;
}

.howto-step .howto-step__num::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    border-left: 1px dashed rgba(0, 0, 0, 0.25);
    height: calc(100%);
}

.howto-step__text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.howto-step__text a,
.howto-step__text em {
    color: #000;
}

/* ---- S6: FAQ ---- */
.faq-section {
    background: url('/images/downlonad-new/s6-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.faq-section__inner {
    max-width: 860px;
}

.faq-section .section-heading {
    color: #fff;
}

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

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(99, 28, 164, 0.14);
}

.faq-item.open {
    background: #631CA4;
}

.faq-item.open .faq-q {
    background: transparent;
    padding-bottom: 10px;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    gap: 16px;
    color: #fff;
}

.faq-q h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    margin: 0;
}

.faq-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #E1BAFF;
    border-radius: 2px;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
}

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

.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #E1BAFF;
}

.faq-a p a,
.faq-a p em {
    color: #E1BAFF;
    font-style: italic;
}

/* ---- S7: CTA ---- */
.cta-section {
    background: #933cfb;
    padding: 80px 0 100px;
}

.cta-section__inner {
    text-align: center;
    margin-top: 50px;
}

.cta-section__eyebrow {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.cta-section__title {
    font-size: 53px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-section__subtitle {
    font-size: 32px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 42px;
}

.cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 27px;
}

.cta-section__hints {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff78;
    border-radius: 4px;
    max-width: 796px;
    margin: 0 auto;
    padding: 0 24px;
    height: 48px;
}

.cta-section__hints span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hint-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: center/contain no-repeat;
}

.hint-icon--clock  { background-image: url('/images/downlonad-new/icon-3.svg'); }
.hint-icon--free   { background-image: url('/images/downlonad-new/icon-4.svg'); }
.hint-icon--payment { background-image: url('/images/downlonad-new/icon-5.svg'); }


/* ============================================================
   Mobile — header
   ============================================================ */
@media screen and (max-width: 767px) {
    .lang-cs {
        display: none;
    }

    .page-box .side-bar .home-head {
        width: 100%;
        height: 1.33rem;
        margin: 0;
        border-radius: unset;
        position: relative;
    }

    .page-box .side-bar .home-head .nav {
        display: none;
        margin: 0;
    }

    .page-box .side-bar .home-head .number {
        justify-content: space-between;
        width: 100%;
        flex-direction: row-reverse;
    }

    .page-box .side-bar .home-head .number .btn-login-pc {
        height: 0.85rem;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        padding: 0 0.5rem;
        font-size: 0.42rem;
    }

    .page-box .side-bar .home-head .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .page-box .side-bar .home-head .logo img {
        height: 0.7rem;
    }

    .page-box .side-bar .home-head .number .btn-login-pc span {
        font-size: 0.42rem;
    }

    .page-box .side-bar .home-head .btn-menu-x {
        display: flex;
        width: 0.85rem;
        color: #fff;
    }

    .page-box .side-bar .home-head .btn-menu-x svg {
        width: 100%;
    }

    .page-box .side-bar .home-head .btn-menu-x img {
        width: 100%;
        margin-top: 0.06rem;
    }

    .mobile-nav-box {
        position: fixed;
        z-index: 10;
        width: 75% !important;
        left: 0;
        top: 0 !important;
        height: 100% !important;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 0.64rem !important;
        text-align: left;
        border: unset !important;
    }

    .mobile-nav-box .logo {
        width: 1.25rem;
        padding-left: 0.74rem;
        margin-top: .25rem;
    }

    .mobile-nav-box .close {
        position: absolute;
        right: 0.48rem;
        top: 0.6rem;
        width: 0.97rem;
    }

    .lang-cs-mb {
        display: flex;
        position: absolute;
        left: 2.2rem;
        top: .56rem;
        background: #F8F6FA;
        font-size: 12px;
        display: none;
    }

    .lang-cs-mb svg {
        width: 20px;
        height: 20px;
    }

    .lang-list .inner {
        background: #fff;
        position: absolute;
        right: auto;
        left: .6rem;
        top: 2rem;
        border-radius: .4rem;
        padding: .4rem .2rem;
        width: 63%;
        font-size: .37rem;
        box-shadow: 0 0 .2rem #00000020;
        line-height: 2.5;
    }

    .lang-list .inner a {
        min-width: 50%;
        display: block;
        font-weight: normal;
        text-align: center;
        color: #1A42FA;
        text-decoration: none;
    }

    .mobile-nav {
        padding-left: 0.74rem;
        padding-right: 0.74rem;
        display: block !important;
        margin: 0 !important;
        margin-top: .8rem !important;
        margin-bottom: 1.1rem !important;
        background: #fff;
        z-index: 10;
        width: 100%;
        list-style: none;
    }

    .mobile-nav li {
        font-size: 0.37rem !important;
        border-bottom: .5px solid rgba(0, 0, 0, .14);
        height: 40px;
        line-height: 40px;
    }

    .mobile-nav li a {
        color: #000;
        text-decoration: unset;
    }

    .mobil-login {
        border-radius: 0.67rem;
        background: linear-gradient(129deg, #FA34FB 0%, #B900FF 53%, #3D18DF 100%);
        font-size: 0.39rem;
        font-weight: bold;
        color: #fff;
        display: inline;
        width: 210px;
        margin-top: 100px;
        position: absolute;
        bottom: 15%;
        left: 30px;
        height: 50px;
        text-align: center;
        line-height: 50px;
    }

    .site-footer {
        padding: 40px 0 32px;
    }

    .site-footer .footer-columns {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .site-footer .container {
        padding: 0 16px;
    }

    .site-footer .social-icons {
        justify-content: center;
    }

    .site-footer .footer-app {
        justify-content: center;
    }

    .site-footer .footer-description {
        font-size: 12px;
        text-align: center;
    }

    .site-footer .footer-logo img {
        height: 24px;
    }


    /* ---- S1: Hero ---- */
    .hero-section {
        background-image: url('/images/downlonad-new/s1-bg-m.jpg');
        padding: 7.85rem 20px 56px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

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

    .btn-hero {
        font-size: 18px;
        height: 54px;
        padding: 0 30px 0 8px;
        max-width: 320px;
        justify-content: center;
    }

    .btn-hero__icon {
        width: 40px;
        height: 40px;
    }

    /* ---- S2: Quick Answer ---- */
    .quick-answer-section {
        padding: 48px 0;
    }

    .quick-answer-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .qa-card {
        width: 100%;
        border-radius: 32px;
        padding: 20px 24px 32px;
    }

    .qa-card__title {
        font-size: 20px;
    }

    .qa-card__list li {
        font-size: 15px;
        line-height: 32px;
    }

    /* ---- S3 / S4: Reason rows ---- */
    .web-reasons-section,
    .app-reasons-section {
        padding: 48px 0 40px;
    }

    .section-inner {
        padding: 0 20px;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .reason-list {
        gap: 48px;
    }

    .reason-row,
    .reason-row--text-right {
        flex-direction: column-reverse;
        gap: 0;
    }

    .reason-row__media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .reason-row__index {
        font-size: 60px;
        margin-bottom: -12px;
    }

    .reason-row__title {
        font-size: 22px;
    }

    .reason-row__desc {
        font-size: 14px;
    }

    /* ---- S5: Parity ---- */
    .parity-section {
        padding: 48px 0 40px;
    }

    .parity-features {
        margin-bottom: 48px;
    }

    .parity-features__label {
        font-size: 16px;
        height: auto;
        padding: 14px 20px;
        border-radius: 16px 16px 0 0;
    }

    .parity-features__list li {
        font-size: 14px;
        height: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .diff-section__title {
        font-size: 24px;
    }

    .diff-section__subtitle {
        margin-left: 0;
        font-size: 14px;
    }

    .diff-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .diff-card {
        min-height: unset;
        padding: 16px 16px 16px 20px;
        flex-wrap: wrap;
    }


    .diff-card__divider {
        display: none;
    }

    .diff-card__head {
        flex-direction: row;
        width: 100%;
        gap: 12px;
        margin-bottom: 8px;
        align-items: center;
    }

    .diff-card__badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .diff-card__label {
        font-size: 15px;
        text-align: left;
    }

    .diff-card__body {
        width: 100%;
        margin-top: 0;
        font-size: 12px;
    }

    .session-note__title {
        font-size: 22px;
    }

    .session-note__body {
        font-size: 14px;
    }

    .howto-section {
        margin-top: 32px;
    }

    .howto-section__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .howto-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .howto-col {
        margin-bottom: 24px;
    }

    .howto-col__header {
        margin-bottom: 12px;
    }

    .howto-col__label {
        font-size: 16px;
    }

    .howto-step__text {
        font-size: 13px;
    }

    /* ---- S6: FAQ ---- */
    .faq-section {
        padding: 48px 0 56px;
    }

    .faq-q {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-q h3 {
        font-size: 14px;
    }

    .faq-a p {
        padding: 0 18px 16px;
        font-size: 13px;
    }

    /* ---- S7: CTA ---- */
    .cta-section {
        padding: 48px 0 64px;
    }

    .cta-section__eyebrow {
        font-size: 18px;
    }

    .cta-section__title {
        font-size: 32px;
    }

    .cta-section__subtitle {
        font-size: 18px;
    }

    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-section__hints {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 16px;
        gap: 12px 24px;
        font-size: 13px;
        border-radius: 12px;
    }
}
