:root {
    --ink: #1f2430;
    --muted: #6b7280;
    --soft: #f5f6fb;
    --card: #ffffff;
    --brand: #6a6df6;
    --brand-strong: #5a5fe8;
    --line: #e6e8f2;
    --shadow: 0 12px 30px rgba(26, 33, 66, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: var(--ink);
    background: #ffffff;
}

.landing-page a {
    text-decoration: none;
}

.shell {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

header {
    background: var(--soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0 10px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
}

.logo img {
    width: 10rem;
}

.nav-links {
    display: flex;
    gap: 26px;
    color: #384551;
    font-weight: 500;
}

.nav-cta {
    display: flex;
    gap: 10px;
}

.pill {
    border: 1px solid var(--brand);
    color: var(--brand);
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pill .ph {
    font-weight: 600;
}

.hero {
    padding: 48px 0 70px;
    background: linear-gradient(to bottom, var(--soft) 0%, var(--soft) 75%, var(--soft) 75%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
}

.hero::before {
    width: 560px;
    height: 220px;
    left: -15px;
    bottom: 60px;
    background-image: url(../images/left_bar1.svg), url(../images/left_bar2.svg);
    background-size: 700px 117px, 700px 130px;
    background-position: left 0 bottom 75px, left bottom;
    transform: rotate(-2deg);
}

.hero::after {
    width: 760px;
    height: 280px;
    right: -130px;
    top: 230px;
    background-image: url("../images/right_bar2.svg"), url("../images/right_bar1.svg"), url("../images/right_bar3.svg");
    background-size: 750px 174px, 750px 141px, 750px 141px;
    background-position: right 0 top 66px, right top, right -401px top 89px;
}

.hero-top {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #363b4a;
    margin: 0;
}

.hero h1 span {
    color: var(--brand);
}

.highlight-txt {
    display: inline-block;
    padding: 0.05em 0.3em 0.1em;
    background-image: url("../images/text_bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.store-btn {
    padding: 10px 16px;
    background: #fff;
    font-size: 0.95rem;
    color: #696CFF;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #696CFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
}

.store-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.metrics {
    background: var(--card);
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
    z-index: 2;
}

.metric-card {
    border: 1px solid #696CFF;
    box-shadow: 0px 3px 8px rgba(34, 48, 62, 0.1);
    border-radius: 0.375rem;
    padding: 0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-top {
    padding: 1.5rem 1.5rem 1rem;
}

.metric-bottom {
    padding: 0 1.5rem 1.5rem;
}

.metric-title {
    font-size: 0.95rem;
    color: rgba(34, 48, 62, 0.7);
}

.metric-value {
    font-weight: 500;
    font-size: 1.5rem;
    color: rgba(34, 48, 62, 0.9);
    line-height: 2.375rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.81rem;
    color: #1faa59;
}

.metric-trend.down {
    color: #e24444;
}

.metric-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

.metric-icon.blue {
    background: #e5f2ff;
    color: #2f7cff;
}

.metric-icon.green {
    background: #e9f7ef;
    color: #30b871;
}

.metric-icon.orange {
    background: #ffeae4;
    color: #ff7a45;
}

.metric-chart {}

.section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 12px;
    color: rgba(34, 48, 62, 0.9);
}

.section-lead {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
}

.features {
    background: var(--soft);
    padding: 50px 0 0.25rem;
}

.features h2 {
    margin: 0 0 24px;
    font-size: 2.25rem;
    color: rgba(34, 48, 62, 0.9);
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: #fff;
    border: 1px solid #edf0fb;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 8px 16px rgba(33, 40, 70, 0.05);
    font-size: 0.95rem;
    color: #60656f;
    font-weight: 400;
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    color: rgba(34, 48, 62, 0.9);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eef0ff;
    display: grid;
    place-items: center;
    color: #6367f1;
    font-weight: 600;
    font-size: 14px;
}

.features .hero-actions {
    margin-top: 30px;
}

.benefits {
    padding: 50px 0 20px;
}
.benefits .shell {
        width: min(900px, 92vw);
}

.benefits h2 {
    font-size: 2.25rem;
    color: rgba(34, 48, 62, 0.9);
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-list {
    border-top: 1px solid #CED1D5;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #CED1D5;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(34, 48, 62, 0.9);
}

.benefit-item:last-child {
    border-bottom: none;
}

.check {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 50%;
    border: 1px solid #6a6df6;
    display: grid;
    place-items: center;
    color: #6a6df6;
    font-size: 1rem;
}

.cta {
    background: #1f232b;
    color: #fff;
    padding: 46px 0 24px;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
}

.cta::before {
    width: 520px;
    height: 220px;
    left: 0;
    bottom: 0;
    background-image: url("../images/footer_bg_left.svg");
}

.cta::after {
    width: 248px;
    height: 240px;
    right: 0;
    top: 0;
    background-image: url("../images/footer_bg_right.svg");
}

.cta h3 {
    margin: 0 0 12px;
    font-size: 2.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 1.5rem;
}

.cta .hero-actions {
    margin-bottom: 18px;
    margin-top:2.25rem;
}

footer {
    background: #272C3E;
    color: #ffffff;
    padding: 30px 0 0;
    font-size: 0.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.footer-grid h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.footer-grid a {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.footer-bottom {
    text-align: center;
    margin-top: 18px;
    color: #fff;
    background: #14181C;
    font-size: 0.75rem;
    padding: 1rem;
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: var(--brand);
    color: #ffffff;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 50;
    font-weight: bolder;
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--brand-strong);
}

.scroll-top:focus-visible {
    outline: 2px solid rgba(106, 109, 246, 0.35);
    outline-offset: 3px;
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}
.contact-us-page {
    background-color: var(--soft);
}

.policy-page {
    background-color: var(--soft);
}

.contact-section {
    padding: 1rem 0 4rem;
    background: transparent;
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #edf0fb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-field label {
    display: block;
    font-weight: 600;
    color: #384551;
    margin-bottom: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d7dbea;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(106, 109, 246, 0.18);
}

.contact-actions {
    text-align: center;
    margin-top: 8px;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.contact-submit {
    background: var(--brand);
    color: #ffffff;
    border: 1px solid var(--brand);
    border-radius: 10px;
    padding: 0.75rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
    transform: translateY(-1px);
}

.contact-submit:focus-visible {
    outline: 2px solid rgba(106, 109, 246, 0.35);
    outline-offset: 3px;
}

.policy-section {
    padding: 1rem 0 4rem;
    background: transparent;
}

.policy-header {
    text-align: center;
    margin-bottom: 32px;
}

.policy-meta {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 10px;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #edf0fb;
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.policy-content {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.98rem;
}

.policy-content h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: rgba(34, 48, 62, 0.9);
}

.policy-content p {
    margin: 0 0 16px;
}

.policy-content ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 26px 0;
}

@media (max-width: 980px) {
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero::before {
        left: -300px;
        bottom: -60px;
    }

    .hero::after {
        right: -320px;
        top: 140px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .nav {
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-meta {
        flex-direction: column;
        gap: 8px;
    }

    .cta::before,
    .cta::after {
        width: 280px;
        height: 120px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
    }

    .contact-card {
        padding: 24px;
    }

    .policy-card {
        padding: 24px;
    }
    
}
