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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    overflow-x: hidden;
    background: #f0f5fb;
    font-family: 'Segoe UI', 'Roboto', 'Inter', system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.5;
    color: #1a2c3e;
    scroll-behavior: smooth;
}

.t1-container-a {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    background: url(img/bg.png) no-repeat 50%;
    background-size: cover;
    height: 950px;
    width: 100%;
}

.t1-hero {
    max-width: 1200px;
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    margin: 0 auto;
    gap: 60px;
}

.t1-hero-content {
    max-width: 750px;
    color: #333;
}

.t1-tag {
    display: inline-block;
    background: rgba(0, 184, 148, 0.1);
    color: #ff7a1b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.t1-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.t1-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.t1-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.t1-feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.t1-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.t1-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.t1-btn-primary {
    background: linear-gradient(145deg, #ffd700, #ffa000);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.t1-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.t1-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.t1-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.t1-hero-desc-card {
    position: absolute;
    top: 75%;
    left: -10%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff7a1b 0%,#d3a300  100%);
    color: white;
    padding: 20px 25px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 0 8px 32px rgba(0, 184, 148, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 250px;
    height: 200px;
}

.t1-btn-store {
    background: #000;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
}

.t1-btn-store:hover {
    background: #333;
}

.t1-hero-image {
    width: 380px;
    display: flex;
    position: relative;
}

.t1-phone-mockup {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 40px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 0 0 12px #2c3e50;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.t1-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #2c3e50;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.t1-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ff7a1b 0%, #d3a300 100%);
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t1-app-header {
    text-align: center;
    margin-bottom: 20px;
}

.t1-app-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ffd700, #ffa000);
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.t1-app-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.t1-loan-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.t1-loan-label {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.t1-loan-amount {
    color: #ff7a1b;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.t1-loan-btn {
    background: linear-gradient(145deg, #ffd700, #ffa000);
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    width: 100%;
}

.t1-loan-features {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.t1-loan-feature {
    text-align: center;
}

.t1-loan-feature-icon {
    width: 30px;
    height: 30px;
    background: #ff7a1b;
    border-radius: 50%;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.t1-loan-feature-text {
    font-size: 10px;
    color: #666;
}

@media (max-width: 968px) {
    .t1-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .t1-hero-content {
        max-width: 100%;
    }

    .t1-features {
        justify-content: center;
    }

    .t1-cta-buttons {
        justify-content: center;
    }

    .t1-phone-mockup {
        width: 260px;
        height: 520px;
    }
}

@media (max-width: 480px) {
    .t1-tag {
        font-size: 12px;
    }
}

.t1-section {
    width: 100%;
    min-height: 870px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.t1-section:nth-child(odd) {
    background: #ffffff;
}
.t1-section:nth-child(even) {
    background: #fefefe;
}

.t1-container-aa {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.t1-content-left, .t1-content-right {
    flex: 1 1 45%;
    min-width: 280px;
}

.t1-badge {
    display: inline-block;
    background: #eef2ff;
    color: #6f5300;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.t1-desc-text {
    font-size: 1.1rem;
    color: #2c3e4e;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.t1-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.t1-feature-item-a {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid #e9eef3;
}

.t1-feature-item-a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: #cbdde9;
}

.t1-alert-card {
    background: #fff6e5;
    border-left: 6px solid #e67e22;
    border-radius: 28px;
    padding: 1.8rem;
    margin: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.t1-slogan-banner {
    background: linear-gradient(135deg, #ff7a1b 0%, #c39200 100%);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 60px;
    display: inline-block;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 14px rgba(183,28,28,0.2);
}

.t1-warning-list {
    list-style: none;
    padding: 0;
}
.t1-warning-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}
.t1-warning-list li::before {
    content: "鈿狅笍";
    font-size: 1.2rem;
}

.t1-do-list {
    list-style: none;
    padding: 0;
}

.t1-do-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.t1-do-list li::before {
    content: "鉁?;
    font-size: 1.2rem;
}

.t1-contact-line {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.t1-channel-card {
    background: #eef4ff;
    border-radius: 32px;
    padding: 1.6rem;
    margin-bottom: 1.2rem;
    border: 1px solid #dce5f2;
}

.t1-channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #cddbec;
}

.t1-channel-item:last-child {
    border-bottom: none;
}

.t1-channel-icon {
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
}

.t1-channel-info {
    font-weight: 500;
}

.t1-verify-tip {
    background: #e9f7ef;
    border-radius: 24px;
    padding: 1rem 1.5rem;
    color: #1f6e43;
    margin-top: 1rem;
}

.t1-btn-outline {
    display: inline-block;
    border: 1.5px solid #6f5300;
    background: transparent;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    color: #6f5300;
    text-decoration: none;
    transition: 0.2s;
    margin-top: 0.8rem;
}

.t1-btn-outline:hover {
    background: #6f5300;
    color: white;
}

.t1-mock-graphic {
    background: linear-gradient(145deg, #f1f9fe, #e6f0f8);
    border-radius: 48px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.08);
}

.t1-shield-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.t1-right-list {
    text-align: left;
    margin-top: 1rem;
}

.t1-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #6c8a9e;
    background: #f0f5fb;
    border-top: 1px solid #e2e8f0;
}

.t1-brand-name {
    font-weight: 700;
    color: #0f3b5f;
}

.tp-alert-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tp-alert-panel {
    position: relative;
    width: min(1120px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 34px 42px 38px;
    border: 1px solid rgba(208, 211, 216, 0.9);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.tp-alert-panel::before,
.tp-alert-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tp-alert-panel::before {
    top: -115px;
    left: -270px;
    width: 520px;
    height: 520px;
    box-shadow:
        0 0 0 1px rgba(215, 218, 223, 0.34),
        0 0 0 24px rgba(221, 224, 229, 0.26),
        0 0 0 48px rgba(225, 228, 233, 0.2),
        0 0 0 72px rgba(229, 232, 236, 0.15),
        0 0 0 96px rgba(232, 235, 239, 0.1);
}

.tp-alert-panel::after {
    top: -85px;
    right: -305px;
    width: 560px;
    height: 560px;
    box-shadow:
        0 0 0 1px rgba(214, 217, 222, 0.3),
        0 0 0 20px rgba(220, 223, 228, 0.22),
        0 0 0 40px rgba(224, 227, 232, 0.16),
        0 0 0 60px rgba(228, 231, 235, 0.12),
        0 0 0 80px rgba(232, 235, 239, 0.08);
}

.tp-alert-header,
.tp-alert-copy,
.tp-alert-emphasis {
    position: relative;
    z-index: 1;
}

.tp-alert-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 22px;
}

.tp-alert-icon {
    width: clamp(64px, 5vw, 96px);
    flex: 0 0 auto;
}

.tp-alert-title {
    color: #111111;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.tp-alert-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.tp-alert-copy-primary {
    max-width: 1050px;
    color: #9a5b55;
    font-size: clamp(17px, 1.65vw, 22px);
    font-weight: 600;
    line-height: 1.65;
}

.tp-alert-emphasis {
    max-width: 760px;
    margin: 20px auto 18px;
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(180deg, #218a4d, #19733f);
    color: #ffffff;
    text-align: left;
    font-size: clamp(18px, 1.55vw, 21px);
    font-weight: 500;
    line-height: 1.7;
    box-shadow: 0 14px 26px rgba(26, 115, 64, 0.24);
}

.tp-alert-copy-secondary {
    max-width: 1040px;
    color: #6f9b8d;
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 600;
    line-height: 1.7;
}

.tp-alert-copy-footer {
    max-width: 1080px;
    margin-top: 26px;
    color: #1e1f21;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 600;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .tp-alert-panel {
        width: min(100%, calc(100vw - 32px));
        padding: 28px 24px 30px;
    }

    .tp-alert-header {
        gap: 14px;
        margin-bottom: 18px;
    }

    .tp-alert-emphasis {
        margin: 18px auto 16px;
        padding: 14px 18px;
    }
}

@media (max-width: 575px) {
    .tp-alert-panel {
        padding: 22px 16px 24px;
        border-radius: 12px;
    }

    .tp-alert-panel::before {
        top: 40px;
        left: -360px;
    }

    .tp-alert-panel::after {
        top: 20px;
        right: -380px;
    }

    .tp-alert-header {
        flex-direction: column;
        gap: 10px;
    }

    .tp-alert-title {
        letter-spacing: 0.12em;
    }

    .tp-alert-emphasis {
        text-align: center;
    }
}

.phoneApp {
    --phoneApp-accent: #ff7a1b;
    --phoneApp-accent-deep: #e1b000;
    --phoneApp-accent-soft: #fff3bf;
    --phoneApp-accent-pale: #fff9e6;
    --phoneApp-accent-text: #6f5300;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0 110px;
    background: linear-gradient(180deg, #ffffff 0%, #fffefc 100%);
}

.phoneApp::before,
.phoneApp::after,
.phoneApp-shell::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.phoneApp::before {
    top: 6px;
    left: 0;
    width: 620px;
    height: 520px;
    background: repeating-radial-gradient(circle at 92% 92%, rgba(254, 208, 52, 0.28) 0 1.2px, transparent 1.2px 15px);
    clip-path: polygon(30% 0, 100% 0, 63% 100%, 0 82%);
    opacity: 0.42;
    z-index: 0;
}

.phoneApp::after {
    top: 12px;
    right: 78px;
    width: 330px;
    height: 360px;
    background: repeating-linear-gradient(118deg, rgba(254, 208, 52, 0.28) 0 1.4px, transparent 1.4px 11px);
    clip-path: polygon(42% 0, 100% 0, 72% 100%, 6% 100%);
    opacity: 0.34;
    z-index: 0;
}

.phoneApp-shell {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.phoneApp-shell::before {
    top: 230px;
    left: 250px;
    width: 900px;
    height: 520px;
    background: repeating-radial-gradient(circle at 0 0, rgba(254, 208, 52, 0.26) 0 1.15px, transparent 1.15px 17px);
    transform: rotate(15deg);
    opacity: 0.5;
    z-index: 0;
}

.phoneApp-content,
.phoneApp-chip-list {
    position: relative;
    z-index: 1;
}

.phoneApp-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: 48px 56px;
}

.phoneApp-copy {
    max-width: 520px;
    padding-top: 18px;
}

.phoneApp-eyebrow {
    margin-bottom: 18px;
    color: var(--phoneApp-accent);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.phoneApp-title {
    margin: 0;
    color: #080808;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(54px, 5.5vw, 76px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.phoneApp-points {
    margin-top: 36px;
    color: #505050;
    font-size: 18px;
    line-height: 1.45;
}

.phoneApp-points span {
    display: block;
}

.phoneApp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 58px;
    margin-top: 28px;
    padding: 0 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--phoneApp-accent) 0%, #ffe07b 100%);
    color: var(--phoneApp-accent-text);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(254, 208, 52, 0.28);
}

.phoneApp-cta:hover {
    color: var(--phoneApp-accent-text);
    transform: translateY(-1px);
}

.phoneApp-download {
    display: flex;
    align-items: center;
    gap: 22px;
    width: min(100%, 438px);
    margin-top: 50px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--phoneApp-accent-soft) 0%, var(--phoneApp-accent) 100%);
    box-shadow: 0 26px 44px rgba(254, 208, 52, 0.22);
}

.phoneApp-qr {
    flex: 0 0 160px;
    width: 160px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.phoneApp-qr-code {
    display: block;
    width: 100%;
    height: auto;
}

.phoneApp-download-copy {
    flex: 1 1 auto;
}

.phoneApp-download-title {
    color: var(--phoneApp-accent-text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.phoneApp-store-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phoneApp-store {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--phoneApp-accent-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 12px 20px rgba(111, 83, 0, 0.08);
}

.phoneApp-store-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.phoneApp-store-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.phoneApp-store-icon--google {
    color: var(--phoneApp-accent-text);
}

.phoneApp-store-icon--apple {
    color: var(--phoneApp-accent-text);
}

.phoneApp-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 28px 0 112px;
}

.phoneApp-device {
    position: relative;
    z-index: 2;
    width: 332px;
    padding: 12px 12px 16px;
    border: 2px solid var(--phoneApp-accent);
    border-radius: 30px;
    background: linear-gradient(180deg, var(--phoneApp-accent-pale) 0%, #ffffff 100%);
    box-shadow: 0 34px 56px rgba(254, 208, 52, 0.2);
}

.phoneApp-statusbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    padding: 0 10px 10px;
    color: #222222;
    font-size: 12px;
    font-weight: 700;
}

.phoneApp-status-time {
    justify-self: start;
}

.phoneApp-status-notch {
    width: 86px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe58f 0%, var(--phoneApp-accent) 100%);
}

.phoneApp-status-icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phoneApp-status-cell,
.phoneApp-status-wifi,
.phoneApp-status-battery {
    display: inline-block;
}

.phoneApp-status-cell {
    width: 13px;
    height: 9px;
    background: linear-gradient(90deg, transparent 0 15%, #242424 15% 30%, transparent 30% 45%, #242424 45% 60%, transparent 60% 75%, #242424 75% 100%);
}

.phoneApp-status-wifi {
    width: 12px;
    height: 9px;
    border: 2px solid #242424;
    border-color: #242424 transparent transparent transparent;
    border-radius: 50%;
    transform: translateY(2px);
}

.phoneApp-status-battery {
    position: relative;
    width: 19px;
    height: 10px;
    border: 1.6px solid #242424;
    border-radius: 3px;
}

.phoneApp-status-battery::after {
    content: "";
    position: absolute;
    top: 2px;
    right: -3px;
    width: 2px;
    height: 4px;
    border-radius: 0 1px 1px 0;
    background: #242424;
}

.phoneApp-brandbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 6px 14px;
}

.phoneApp-brandmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--phoneApp-accent-text);
}

.phoneApp-brandmark-symbol {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.phoneApp-brandmark-copy {
    font-size: 13px;
    color: #555555;
}

.phoneApp-credit-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--phoneApp-accent-pale);
    color: var(--phoneApp-accent-text);
    font-size: 12px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(254, 208, 52, 0.45);
}

.phoneApp-balance-card {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--phoneApp-accent) 0%, var(--phoneApp-accent-deep) 100%);
    color: var(--phoneApp-accent-text);
    box-shadow: 0 18px 30px rgba(254, 208, 52, 0.24);
}

.phoneApp-balance-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 4px;
    width: 120px;
    height: 120px;
    border-radius: 28px 44px 22px 44px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(18deg);
}

.phoneApp-balance-card::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: -14px;
    width: 56px;
    height: 92px;
    border-radius: 28px 28px 18px 18px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    border-top-width: 12px;
}

.phoneApp-balance-label,
.phoneApp-balance-sub {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 11px;
    opacity: 0.88;
}

.phoneApp-balance-number {
    position: relative;
    z-index: 1;
    display: block;
    margin: 4px 0 10px;
    font-size: 24px;
    letter-spacing: 0.04em;
}

.phoneApp-balance-dots {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.phoneApp-balance-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(111, 83, 0, 0.68);
}

.phoneApp-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px 8px;
    padding: 20px 4px 12px;
}

.phoneApp-action {
    text-align: center;
    color: #373737;
}

.phoneApp-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    border-radius: 14px;
    border: 1px solid rgba(254, 208, 52, 0.45);
    background: var(--phoneApp-accent-pale);
    color: var(--phoneApp-accent-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.phoneApp-action-label {
    display: block;
    font-size: 11px;
    line-height: 1.35;
}

.phoneApp-promo-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    min-height: 92px;
    margin-top: 4px;
    padding: 12px 14px 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--phoneApp-accent) 0%, var(--phoneApp-accent-deep) 100%);
    box-shadow: 0 16px 26px rgba(254, 208, 52, 0.24);
    overflow: hidden;
}

.phoneApp-promo-copy,
.phoneApp-promo-art {
    position: relative;
    z-index: 1;
}

.phoneApp-promo-title {
    color: var(--phoneApp-accent-text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.phoneApp-promo-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--phoneApp-accent-text);
    font-size: 18px;
    font-weight: 800;
}

.phoneApp-promo-art {
    flex: 0 0 112px;
    height: 80px;
}

.phoneApp-promo-circle {
    position: absolute;
    right: -8px;
    bottom: -16px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.phoneApp-promo-coin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 244, 199, 0.98);
    box-shadow: inset 0 0 0 3px rgba(225, 176, 0, 0.3);
}

.phoneApp-promo-coin--one {
    top: 8px;
    left: 16px;
}

.phoneApp-promo-coin--two {
    top: 22px;
    left: 48px;
}

.phoneApp-promo-person-head {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff6e8;
}

.phoneApp-promo-person-body {
    position: absolute;
    right: 10px;
    bottom: -4px;
    width: 40px;
    height: 60px;
    border-radius: 24px 24px 10px 10px;
    background: linear-gradient(180deg, #fff8ef 0%, #fff0cc 100%);
}

.phoneApp-navbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3ecdf;
}

.phoneApp-nav-item {
    text-align: center;
    color: #6b6b6b;
    font-size: 9px;
    line-height: 1.3;
}

.phoneApp-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    border-radius: 50%;
    color: #555555;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.phoneApp-nav-item--active,
.phoneApp-nav-item--focus {
    color: var(--phoneApp-accent-text);
    font-weight: 700;
}

.phoneApp-nav-item--focus .phoneApp-nav-icon {
    background: var(--phoneApp-accent);
    color: var(--phoneApp-accent-text);
}

.phoneApp-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--phoneApp-accent-pale) 0%, var(--phoneApp-accent-soft) 100%);
    border: 1px solid rgba(254, 208, 52, 0.55);
    box-shadow: 0 18px 28px rgba(254, 208, 52, 0.18);
    color: var(--phoneApp-accent-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.phoneApp-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--phoneApp-accent);
    color: var(--phoneApp-accent-text);
    font-size: 21px;
    line-height: 1;
    flex: 0 0 auto;
}

.phoneApp-badge--quick {
    top: 24px;
    right: -6px;
    width: 170px;
}

.phoneApp-badge--auto {
    top: 278px;
    left: 46px;
    width: 146px;
    transform: translateX(-100%);
}

.phoneApp-badge--easy {
    right: 18px;
    bottom: 48px;
    width: 154px;
}

.phoneApp-chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 34px;
    padding-right: 30px;
}

.phoneApp-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--phoneApp-accent-soft) 0%, var(--phoneApp-accent-pale) 100%);
    color: var(--phoneApp-accent-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 12px 22px rgba(254, 208, 52, 0.16);
}

@media (max-width: 1199px) {
    .phoneApp-shell {
        width: min(1180px, calc(100% - 40px));
    }

    .phoneApp-shell::before {
        top: 250px;
        left: 180px;
        width: 780px;
        height: 440px;
    }

    .phoneApp-visual {
        padding-left: 88px;
    }

    .phoneApp-badge--auto {
        left: 54px;
    }
}

@media (max-width: 991px) {
    .phoneApp {
        padding: 84px 0 96px;
    }

    .phoneApp::before {
        left: -120px;
        opacity: 0.32;
    }

    .phoneApp::after {
        right: 0;
        opacity: 0.28;
    }

    .phoneApp-shell {
        width: min(100%, calc(100% - 40px));
    }

    .phoneApp-shell::before {
        top: 350px;
        left: 120px;
        width: 760px;
        height: 420px;
        opacity: 0.34;
    }

    .phoneApp-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .phoneApp-copy {
        max-width: 620px;
        margin: 0 auto;
        text-align: center;
    }

    .phoneApp-download {
        margin: 46px auto 0;
    }

    .phoneApp-visual {
        min-height: 640px;
        padding: 14px 60px 0;
    }

    .phoneApp-badge--quick {
        top: 24px;
        right: 44px;
    }

    .phoneApp-badge--auto {
        top: 276px;
        left: 50px;
        transform: none;
    }

    .phoneApp-badge--easy {
        right: 26px;
        bottom: 56px;
    }

    .phoneApp-chip-list {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .phoneApp {
        padding: 66px 0 80px;
    }

    .phoneApp::before {
        width: 460px;
        height: 420px;
        left: -70px;
        top: 22px;
    }

    .phoneApp::after {
        width: 250px;
        height: 280px;
        right: -20px;
    }

    .phoneApp-shell {
        width: calc(100% - 32px);
    }

    .phoneApp-shell::before {
        display: none;
    }

    .phoneApp-title {
        font-size: clamp(42px, 10vw, 56px);
    }

    .phoneApp-points {
        margin-top: 28px;
    }

    .phoneApp-download {
        flex-direction: column;
        width: min(100%, 360px);
        padding: 22px;
        text-align: center;
    }

    .phoneApp-store {
        justify-content: center;
    }

    .phoneApp-visual {
        min-height: 566px;
        padding: 10px 0 0;
    }

    .phoneApp-device {
        width: 292px;
    }

    .phoneApp-badge {
        padding: 10px 14px;
        font-size: 15px;
    }

    .phoneApp-badge-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .phoneApp-badge--quick {
        top: 10px;
        right: 4px;
        width: 148px;
    }

    .phoneApp-badge--auto {
        top: 246px;
        left: 0;
        width: 132px;
    }

    .phoneApp-badge--easy {
        right: 0;
        bottom: 54px;
        width: 142px;
    }

    .phoneApp-chip {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .phoneApp-shell {
        width: calc(100% - 24px);
    }

    .phoneApp-title {
        letter-spacing: -0.04em;
    }

    .phoneApp-cta {
        min-width: 160px;
        height: 54px;
        font-size: 17px;
    }

    .phoneApp-download {
        gap: 18px;
        padding: 20px 18px;
    }

    .phoneApp-qr {
        width: 148px;
        flex-basis: 148px;
    }

    .phoneApp-download-title {
        font-size: 16px;
    }

    .phoneApp-device {
        width: 274px;
        padding: 12px 10px 14px;
    }

    .phoneApp-action-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .phoneApp-action-label {
        font-size: 10px;
    }

    .phoneApp-navbar {
        gap: 2px;
    }

    .phoneApp-nav-item {
        font-size: 8px;
    }

    .phoneApp-badge {
        font-size: 14px;
        gap: 10px;
    }

    .phoneApp-badge-icon {
        width: 34px;
        height: 34px;
    }

    .phoneApp-badge--quick {
        top: 10px;
        right: 0;
        width: 138px;
    }

    .phoneApp-badge--auto {
        top: 232px;
        left: 0;
        width: 124px;
    }

    .phoneApp-badge--easy {
        right: 0;
        bottom: 56px;
        width: 138px;
    }

    .phoneApp-chip-list {
        margin-top: 28px;
        gap: 10px;
    }

    .phoneApp-chip {
        min-height: 36px;
        padding: 7px 14px;
        font-size: 13px;
    }
}

/* yellow theme refinements for custom sections */
.t1-tag {
    background: rgba(254, 208, 52, 0.14);
    border-color: rgba(254, 208, 52, 0.4);
    color: #6f5300;
}

.t1-btn-primary,
.t1-app-logo,
.t1-loan-btn {
    background: linear-gradient(145deg, #ff7a1b, #d3a300);
    color: #5a4200;
    box-shadow: 0 4px 15px rgba(254, 208, 52, 0.35);
}

.t1-btn-primary:hover,
.t1-loan-btn:hover {
    box-shadow: 0 6px 20px rgba(254, 208, 52, 0.42);
}

.t1-hero-desc-card {
    color: #5a4200;
    box-shadow: 0 8px 32px rgba(254, 208, 52, 0.28);
}

.t1-phone-screen {
    background: linear-gradient(180deg, #ff7a1b 0%, #d3a300 100%);
}

.t1-app-title,
.t1-loan-feature-icon {
    color: #5a4200;
}

.t1-loan-amount {
    color: #6f5300;
}

.t1-badge {
    background: #fff6d8;
    color: #6f5300;
}

.t1-feature-item-a:hover {
    border-color: rgba(254, 208, 52, 0.5);
}

.t1-alert-card {
    background: #fff8df;
    border-left-color: #ff7a1b;
}

.t1-slogan-banner {
    color: #5a4200;
    box-shadow: 0 6px 14px rgba(254, 208, 52, 0.2);
}

.t1-channel-card {
    background: #fff8df;
    border-color: #f3df94;
}

.t1-channel-item {
    border-bottom-color: #efdfae;
}

.t1-verify-tip {
    background: #fff4c9;
    color: #6f5300;
}

.t1-btn-outline {
    border-color: #6f5300;
    color: #6f5300;
}

.t1-btn-outline:hover {
    background: #6f5300;
    color: #fff;
}

.t1-mock-graphic {
    background: linear-gradient(145deg, #fff8df, #fff1b8);
}

