@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600;800&display=swap');

body {
    margin: 0;
    font-family: 'Sen', Arial, sans-serif;
    background: #f7fafc;
    color: #1a2233;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
    width: 156px;
    height: auto;
    display: block;
    margin-right: 12px;
}
.brand {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2233;
    letter-spacing: 1px;
}
.brand-accent {
    color: #3ecf8e;
}
.nav {
    display: flex;
    gap: 24px;
}
.nav-link {
    text-decoration: none;
    color: #1a2233;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-link.active, .nav-link:hover {
    background: #e6f9f0;
    color: #3ecf8e;
}

.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    /* background: linear-gradient(135deg, #7DF3AC 0%, #E5FDEE 100%); */
}
.hero {
    text-align: center;
    margin-bottom: 48px;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 28px;
}
.appstore-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    transition: background 0.2s;
    margin-top: 10px;
    cursor: not-allowed;
    opacity: 0.7;
}
.features {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}
.feature {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(62,207,142,0.07);
    padding: 32px 24px;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 24px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}
.feature h2 {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 8px;
}
.feature p {
    color: #4a5568;
    font-size: 1rem;
}
.footer {
    background: #0F172A;
    color: #f1f5f9;
    text-align: center;
    padding: 24px 0 18px 0;
    margin-top: 0;
    box-shadow: none;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 18px;
}
.footer-link {
    color: #f1f5f9;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px 28px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
    border: 2px solid transparent;
    display: inline-block;
}
.footer-link:hover {
    background: #3ecf8e;
    color: #0F172A;
    border-color: #3ecf8e;
}
.footer-desc {
    margin: 0 auto 18px auto;
    max-width: 520px;
    font-size: 1.08rem;
    color: #cbd5e1;
    line-height: 1.5;
}
.footer-copy {
    color: #64748b;
    font-size: 1rem;
    display: block;
    margin-top: 8px;
}
@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    .footer-desc {
        font-size: 0.98rem;
        padding: 0 8px;
    }
}

.section-hero--bg {
    background: url('section1bg.png') center center/cover no-repeat;
    width: 100%;
    min-height: 520px;
    padding: 0;
}
.section-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 56px 40px 56px 56px;
}
.section-hero__content {
    flex: 1 1 480px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.section-hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #101828;
    line-height: 1.08;
    margin-bottom: 28px;
}
.section-hero__highlight {
    background: #C6F7DF;
    border-radius: 6px;
    padding: 0 8px 2px 8px;
    display: inline-block;
    font-weight: 800;
}
.section-hero__subtitle {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 36px;
    font-weight: 500;
    max-width: 440px;
}
.section-hero__buttons {
    display: flex;
    gap: 18px;
}
.section-hero__btn {
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: none;
    border: 2px solid transparent;
}
.appstore-btn.section-hero__btn {
    background: #101828;
    color: #fff;
    border: 2px solid #101828;
}
.appstore-btn.section-hero__btn:hover {
    background: #2563eb;
    border-color: #2563eb;
}
.contact-btn.section-hero__btn {
    background: #fff;
    color: #101828;
    border: 2px solid #101828;
}
.contact-btn.section-hero__btn:hover {
    background: #e6f0ff;
    color: #2563eb;
    border-color: #2563eb;
}
.section-hero__image-wrap {
    flex: 1 1 380px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 260px;
    height: auto;
    max-width: 420px;
}
.section-hero__image-original {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 1100px) {
    .section-hero__container {
        padding: 40px 16px 40px 16px;
    }
    .section-hero__image-wrap {
        max-width: 300px;
    }
}
@media (max-width: 900px) {
    .section-hero__container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding: 32px 4vw 32px 4vw;
    }
    .section-hero__content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .section-hero__image-wrap {
        justify-content: center;
        margin-bottom: 24px;
    }
}

.section-hero__container,
.main {
    padding-left: 150px;
    padding-right: 150px;
}

@media (max-width: 1100px) {
    .section-hero__container,
    .main {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 600px) {
    .section-hero__container,
    .main {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.stats-section {
    width: 100%;
    background: #fff;
    padding: 48px 0 32px 0;
}
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 150px;
    padding-right: 150px;
    gap: 24px;
}
.stat-block {
    flex: 1 1 0;
    text-align: center;
    min-width: 180px;
}
.stat-value {
    font-size: 2.6rem;
    font-weight: 800;
    color: #101828;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.stat-value small {
    font-size: 1.2rem;
    font-weight: 500;
    color: #101828;
}
.stat-label {
    font-size: 1.15rem;
    color: #232b36;
    font-weight: 500;
    margin-bottom: 18px;
}
.stat-underline {
    width: 80%;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #7DF3AC 0%, #3ecf8e 100%);
    opacity: 0.5;
}
@media (max-width: 1100px) {
    .stats-container {
        padding-left: 40px;
        padding-right: 40px;
        gap: 12px;
    }
    .stat-block {
        min-width: 120px;
    }
}
@media (max-width: 700px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .stat-block {
        min-width: 0;
    }
}

.feature-section {
    width: 100%;
    background: #fff;
    padding: 64px 0 64px 0;
}
.feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 150px;
    padding-right: 150px;
    gap: 48px;
}
.feature-image {
    flex: 1 1 420px;
    max-width: 420px;
}
.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}
.feature-content {
    flex: 1 1 420px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}
.feature-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #101828;
    margin-bottom: 18px;
}
.feature-subtitle {
    font-size: 1.15rem;
    color: #232b36;
    font-weight: 500;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .feature-container {
        padding-left: 40px;
        padding-right: 40px;
        gap: 24px;
    }
    .feature-image, .feature-content {
        max-width: 320px;
    }
}
@media (max-width: 900px) {
    .feature-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 16px;
        padding-right: 16px;
    }
    .feature-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .feature-image {
        margin-bottom: 32px;
    }
}

.feature-section--reverse {}
.feature-container--reverse {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
    .feature-container--reverse {
        flex-direction: column;
    }
}

.faq-section {
    width: 100%;
    background: #fcfcfe;
    padding: 64px 0 0 0;
    padding-bottom: 0 !important;
}
.faq-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 150px;
    padding-right: 150px;
    gap: 48px;
    padding-bottom: 0 !important;
}
.faq-image {
    flex: 1 1 420px;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}
.faq-content {
    flex: 1 1 520px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
}
.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #101828;
    margin-bottom: 32px;
}
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
}
.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(62,207,142,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
    margin-bottom: 0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a2233;
    padding: 22px 32px 22px 24px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f4f8;
    position: relative;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.2rem;
    transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 32px 22px 24px;
    font-size: 1.05rem;
    color: #232b36;
    font-weight: 500;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    display: block;
}
@media (max-width: 1100px) {
    .faq-container {
        padding-left: 40px;
        padding-right: 40px;
        gap: 24px;
    }
    .faq-image, .faq-content {
        max-width: 320px;
    }
}
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 16px;
        padding-right: 16px;
    }
    .faq-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .faq-image {
        margin-bottom: 32px;
    }
    .faq-list {
        gap: 12px;
    }
} 