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

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

body {
    background: #000;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
}

a {
    color: #000;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.random-page {
    overflow: hidden;
}

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

.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;
    border-radius: 16px;
    backdrop-filter: blur(9px);
}

.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;
}

/* ============================================================
   About Main — new sections
   ============================================================ */

.about-main {
    padding-top: 64px; /* offset fixed header */
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: Helvetica, Arial, sans-serif;
}
.section-title.light { color: #fff; }
.section-title.dark  { color: #410051; }

/* ---- S1: Hero ---- */
.s1-hero {
    background-image:  url('/images/about-new/icon-shap.png'), url('/images/about-new/s1-bg.jpg');
    background-size: contain, cover;
    background-repeat: no-repeat;
    background-position: right 360px, center;
    padding: 80px 0 60px;
    height: 740px;
}
.s1-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.s1-left {
    flex: 0 0 auto;
}
.s1-video-wrap {
    position: relative;
    width: 500px;
}
.s1-video-bg {
    width: 100%;
    display: block;
    transform: scale(1.33);
    margin-left: -2px;
}
.s1-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 275px;
    height: 490px;
    object-fit: cover;
    border-radius: 16px;
}
.s1-right {
    flex: 1;
    position: relative;
}
.s1-deco {
    position: absolute;
    top: -60px;
    left: 0;
    pointer-events: none;
}
.s1-title {
    font-size: 53px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}
.s1-sub {
    font-size: 22px;
    color: #e01fff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.s1-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ---- S2: Deco ---- */
.s2-deco {
    background: url('/images/about-new/s2-1.png') no-repeat, linear-gradient(130deg, #fa34fb 0%, #b900ff 53%, #3d18df 100%);
    background-size: contain, auto;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 163px;
}
.s2-inner {
    font-size: 68px;
    display: block;
    font-weight: bold;
    width: 960px;
    text-align: right;
    padding-right: 20px;
}

.s2-inner small {
    font-size: 24px;
    vertical-align: middle;
}

/* ---- S3: Why we built ---- */
.s3-why {
    background: #000;
    padding: 80px 40px;
}
.s3-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.s3-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
}
.s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.s3-card {
    background: #1f0827;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.s3-num {
    display: block;
    font-size: 68px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    background: linear-gradient(to bottom, #FF33F0 10%, transparent 74%);

    /* 2. 将背景裁剪为文字形状（关键步骤） */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. 必须将文字本身的颜色设为透明，否则会遮挡背景 */
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.s3-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    margin-top: -20px;
}
.s3-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
.s3-card a {
    color: rgba(255,255,255,0.8);
}
.s3-center-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}
.s3-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- S4: Use cases ---- */
.s4-use {
    background: #f5cdff;
    padding: 80px 40px;
}
.s4-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.s4-sub {
    font-size: 14px;
    color: #410051;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}
.s4-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.s4-list li {
    display: flex;
    align-items: center;
    gap: 29px;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 18px 20px;
}
.s4-list li img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}
.s4-list li span {
    font-size: 13px;
    color: #410051;
    line-height: 1.6;
}
.s4-compare {
    margin: 32px auto 0;
    max-width: 960px;
    border-radius: 20px;
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
}
.s4-compare thead tr {
    background: #eeacff;
}
.s4-compare thead th {
    padding: 24px 16px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.4;
}
.s4-compare thead th:first-child {
    text-align: left;
}
.s4-compare thead th:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.s4-compare tbody tr {
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}
.s4-compare tbody tr:last-child td:first-child {
    border-radius: 0 0 0 20px;
}
.s4-compare tbody tr:last-child td:last-child {
    border-radius: 0 0 20px 0;
}
.s4-compare td {
    padding: 18px 16px;
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.5;
}
.s4-compare td:first-child {
    text-align: left;
}
.s4-compare td:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.s4-compare-note {
    margin: 0 auto;
    margin-top: 16px;
    font-size: 14px;
    color: #410051;
    max-width: 960px;
}

.s4-bottom {
    font-size: 13px;
    color: #410051;
    text-align: center;
    margin: 60px auto 80px;
    line-height: 1.7;
    max-width: 580px;
}

/* ---- S5-A: Reviews ---- */
.s5-container {
    background: #0a0010;
    padding: 80px 40px 0;
    margin-bottom: -150px;
}
.s5a-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.s5a-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.s5a-card {
    background: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.s5a-quote {
    position: relative;
    background: url('/images/about-new/s5-item1.png') no-repeat;
    padding: 24px 20px;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    font-style: normal;
    width: 191px;
    height: 162px;
}
.s5a-quote.dark {
    background-image: url(/images/about-new/s5-item2.png);
}
.s5a-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.s5a-name {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
}
.s5a-stars img {
    height: 20px;
}
.s5a-date {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ---- S5-B: How to start ---- */
.s5b-howto {
    padding: 150px 40px 80px;

}
.s5b-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.s5b-cols {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    flex-direction: column;
}
.s5b-steps {
    display: flex;
    gap: 50px;
}
.s5b-card,
.dark-card {

    width: 460px;
    height: 517px;
    background: #1F0827 url('/images/about-new/s5-1.png') top center no-repeat;
    border-radius: 24px;
    padding: 250px 32px 0;
    text-align: center;
    box-shadow: 0px 17px 32px 11px rgba(242,0,246,0.33);
}
.dark-card {
  background-image: url('/images/about-new/s5-2.png')
}
.s5b-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 43px;
}
.s5b-card p {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
}
.s5b-card a {
    color: #fff;
}

/* ---- S6-A: Global audience ---- */
.s6-container {
    background: #f5cdff url('/images/about-new/s6-bg.png') bottom center no-repeat;
    background-size:  100% auto;
    padding: 150px  40px 80px;
}
.s6a-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}
.s6a-text {
    width: 660px;
    text-align: center;
}
.s6a-text p {
    font-size: 14px;
    color: #410051;
    line-height: 1.8;
}
.s6a-text strong {
    font-weight: 700;
}
.s6a-img img {
    display: block;
}

/* ---- S6-B: FAQ ---- */
.s6b-faq {
    padding: 0 40px;
}
.s6b-inner {
    max-width: 860px;
    margin: 0 auto;
}
.faq-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.48);
}
.faq-item.open {
   background: rgba(204,0,255,0.43);
   box-shadow: 0px 0px 16px 2px rgba(242,0,246,0.36);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #410051;
    text-align: left;
    gap: 16px;
}
.faq-q span:first-child { flex: 1; }
.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: #892DF7;
    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: 300px;
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 13px;
    color: #410051;
    line-height: 1.7;
}

/* ---- S6-C: CTA ---- */
.s6c-cta {
    padding: 64px 40px 400px;
    text-align: center;
}
.s6c-inner {
    max-width: 800px;
    margin: 0 auto;
    background: radial-gradient(closest-side, #f6ceffd9, #f6ceffd9, #ffffff00);
    padding-bottom: 50px;
}
.s6c-text {
    font-size: 18px;
    color: #410051;
    padding: 30px 60px;
    line-height: 1.5;
}
.s6c-btn {
    display: inline-block;
    background: linear-gradient( 129deg, #FA34FB 0%, #B900FF 53.22%, #3D18DF 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 56px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.s6c-btn:hover { opacity: 0.85; }

/* ============================================================
   Mobile — header
   ============================================================ */
@media screen and (max-width: 680px) {
    .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;
    }

    .mobel-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;
    }

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

    .mobel-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;
    }

    .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;
    }

    .mobel-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;
    }

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

    .mobel-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;
    }
}

@media screen and (max-width: 768px) {
    .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;
    }
}

/* ============================================================
   Mobile — about sections
   ============================================================ */
@media (max-width: 767px) {
    .about-main {
        padding-top: 1.33rem;
    }

    .section-title { font-size: 24px; }

    /* S1 */
    .s1-hero { padding: 40px 0 36px; height: auto; }
    .s1-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 110px;
    }
    .s1-video-wrap { width: 100%; max-width: 100%; margin: 0 auto; }
    .s1-video-bg {transform: scale(1.8);}
    .s1-title { font-size: 32px; }
    .s1-sub { font-size: 16px; }
    .s1-deco { width: 8.6rem; top: -50px; }

    /* S2 */
    .s2-deco {  height: 95px; }

    .s2-inner {width: 100%; font-size: 40px;}

    /* S3 */
    .s3-why { padding: 48px 13px; }
    .s3-grid { grid-template-columns: 1fr; gap: 16px; }
    .s3-center-img { order: -1; }
    .s3-center-img img { width: 100%; height: auto; border-radius: 16px; }
    .s3-num { font-size: 40px; }

    /* S4 */
    .s4-use { padding: 48px 13px; }
    .s4-list { grid-template-columns: 1fr; }

    /* S5-A */
    .s5-container {padding: 20px 13px; margin-bottom: 0;}
    .s5a-reviews { padding: 0; }
    .s5a-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .s5a-quote { width: 4.61rem; height: 3.91rem; padding: 10px; display: flex; align-items: center; justify-content: center; }

    /* S5-B */
    .s5b-howto { padding: 48px 0; }
    .s5b-cols { flex-direction: column; gap: 28px; }
    .s5b-steps { flex-direction: column; gap: 20px; }

    .s5b-card  {
        width: 100%;
        height: 11.4rem;
    }

    /* S6-A */
    .s6-container{padding: 40px 13px;}
    .s6a-inner { flex-direction: column; gap: 28px; }
    .s6a-text {width: 100%;}
    .s6a-text .section-title { text-align: center; }
    .s6a-img img { width: 100%; }

    /* S6-B */
    .s6b-faq {padding: 30px 0;}
    .faq-q { font-size: 14px; padding: 16px 18px; }
    .faq-a p { padding: 0 18px 16px; }

    /* S6-C */
    .s6c-cta { padding: 0; }
    .s6c-btn { padding: 14px 36px; font-size: 17px; }
}
