* {
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}
p {
    color: oklch(44.6% .03 256.802);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

html,
body {
    margin: 0;
    padding: 0;
    color: #0f172a;
}

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.lp-navbar .navbar-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo img {
    height: 52px;
    display: block;
}

.lp-nav {
    display: flex;
    gap: 32px;
}

.lp-nav .nav-link {
    color: oklch(44.6% .03 256.802);
    text-decoration: none;
    font-weight: 300;
}

.lp-nav .nav-link.active {
    color: #111827;
}

.lp-cta {
    display: flex;
    gap: 12px;
}

.lp-menu-btn {
    display: none;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary {
    background: #007aff;
    color: #fff;
}

.btn-light {
    background: #f3f4f6;
    color: #111827;
}

.lp-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
}

.lp-menu .menu-inner {
    padding: 16px 0 18px;
}

.lp-menu .menu-links {
    display: grid;
    gap: 8px;
    padding: 0 24px;
}

.lp-menu .menu-links a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: #111827;
    text-decoration: none;
}

.lp-menu .menu-links a:hover {
    background: #f3f4f6;
}

.lp-menu .menu-cta {
    display: flex;
    gap: 12px;
    padding: 10px 24px 18px;
}

body.menu-open .lp-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.lp-hero {
    background: #ffffff;
    background-image: radial-gradient(1100px at 85% 0%, #eaf3ff 0%, #eaf3ff 45%, #ffffff 70%);
    padding: 40px 0 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: center;
}

.pretitle {
    color: #007aff;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 72px;
    line-height: 0.95;
    margin: 0 0 16px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: oklch(44.6% .03 256.802);
    max-width: 640px;
    font-weight:300;
}

.hero-media {
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: 200px 240px;
    gap: 16px;
}

.hero-media .shape {
    overflow: hidden;
    background: #fff;
}

.hero-media .shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media .small {
    border-radius: 24px;
    grid-column: 1;
    grid-row: 1;
}

.hero-media .wide {
    border-radius: 24px 24px 80px 24px;
    grid-column: 1;
    grid-row: 2;
}

.hero-media .tall {
    border-radius: 24px;
    grid-column: 2;
    grid-row: 1 / span 2;
}

.lp-video {
    padding: 24px 0 48px;
}

.video-frame {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.lp-services-intro {
    padding: 60px 0 24px;
    text-align: center;
}

.services-title {
    font-size: 40px;
    margin: 0 0 12px;
}

.services-sub {
    font-size: 18px;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.lp-services-band {
    background: #ffffff;
    padding: 12px 0 60px;
}

.services-wrap {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    opacity: 0.08;
}

.services-bg.tl {
    top: 10px;
    left: 10px;
    width: 160px;
    height: auto;
}

.services-bg.br {
    bottom: 10px;
    right: 10px;
    width: 180px;
    height: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 4px;
}

.service-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #eaf2ff;
    margin-bottom: 10px;
    color: #007aff;
}

.service-item .icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.service-item .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

.service-item .desc {
    font-size: 16px;
    line-height: 1.8;
    color: oklch(44.6% .03 256.802);
    font-weight:300;
}

.lp-how {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.how-wrap {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.how-bg {
    position: absolute;
    opacity: 0.08;
}

.how-bg.tl {
    top: 10px;
    left: 10px;
    width: 160px;
    height: auto;
}

.how-bg.br {
    bottom: 10px;
    right: 10px;
    width: 160px;
    height: auto;
}

.how-title {
    text-align: center;
    font-size: 34px;
    margin: 0 0 6px;
}

.how-sub {
    text-align: center;
    color: #4b5563;
    margin-bottom: 18px;
}

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    grid-auto-rows: 130px;
    row-gap: 0;
}

.how-steps:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.step {
    padding: 6px 0 10px;
    position: relative;
}

.step.left {
    grid-column: 1;
}

.step.right {
    grid-column: 2;
}

.step.r1 {
    grid-row: 1;
}

.step.r2 {
    grid-row: 2;
}

.step.r3 {
    grid-row: 3;
}

.step.r4 {
    grid-row: 4;
}

.step.r5 {
    grid-row: 5;
}

.step .hline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e5e7eb;
}

.step.right .hline {
    left: auto;
    right: 0;
    width: 100%;
}

.step.last .hline {
    display: none;
}

.num {
    color: #007aff;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 6px;
}

.stitle {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: #111827;
}

.sdesc {
    color: #4b5563;
    line-height: 1.8;
}

.lp-partners {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    padding: 60px 0;
    text-align: center;
}

.partners-title {
    font-size: 36px;
    margin: 0 0 8px;
}

.partners-sub {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 28px;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    min-width: 200%;
    animation: partners-scroll 35s linear infinite;
    padding: 10px 0;
}

.partners-track img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.lp-map {
    padding: 24px 0 60px;
}

.map-frame {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: block;
}

.lp-contact {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}

.contact-title {
    font-size: 36px;
    margin: 0 0 8px;
}

.contact-sub {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 22px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-field label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    font-size: 16px;
    color: #111827;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.info-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
}

.info-item .label {
    font-weight: 700;
    color: #007aff;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    background: #007aff;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.lp-donate {
    padding: 60px 0;
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.donate-collage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 14px;
}

.donate-collage .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.donate-collage .r1c1 {
    border-radius: 30px 30px 140px 30px;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.donate-collage .r1c2a {
    border-radius: 18px;
    grid-column: 2;
    grid-row: 1;
}

.donate-collage .r1c2b {
    border-radius: 18px;
    grid-column: 2;
    grid-row: 2;
}

.donate-collage .r1c3 {
    border-radius: 30px;
    grid-column: 3;
    grid-row: 1 / span 2;
}

.donate-panel {
    background: #007aff;
    color: #fff;
    border-radius: 30px;
    padding: 40px;
}

.donate-title {
    font-size: 28px;
    margin: 0 0 10px;
}

.donate-sub {
    font-size: 16px;
    line-height: 1.9;
    color: #e6efff;
    margin-bottom: 16px;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    color: #007aff;
    font-weight: 700;
    text-decoration: none;
}

.lp-footer {
    background: #0a2c57;
    color: #e6efff;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-logo {
    height: 40px;
    display: block;
    margin-bottom: 14px;
}

.footer-desc {
    color: #c7d7f7;
    line-height: 1.9;
    font-size: 15px;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #e6efff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-subscribe {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.subscribe-input {
    height: 44px;
    border-radius: 12px;
    border: none;
    padding: 0 14px;
    font-size: 15px;
}

.subscribe-btn {
    height: 44px;
    border-radius: 999px;
    background: #1e6bff;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

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

    .hero-desc {
        max-width: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-wrap {
        padding: 22px;
    }

    .service-item {
        padding: 16px;
    }

    .service-item .title {
        font-size: 20px;
    }

    .service-item .desc {
        font-size: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .donate-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .lp-nav,
    .lp-cta {
        display: none;
    }

    .lp-menu-btn {
        display: inline-flex;
    }

    .lp-container {
        padding: 0 16px;
    }

    .lp-navbar .navbar-inner {
        height: 64px;
    }

    .lp-menu {
        top: 64px;
    }

    .lp-hero {
        padding: 28px 0 44px;
    }

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

    .hero-desc {
        font-size: 16px;
    }

    .hero-media {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 220px 0;
    }

    .hero-media .tall {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-media .wide {
        grid-column: 1;
        grid-row: 3;
        display: none;
    }

    .services-grid {
        gap: 18px;
    }

    .services-bg.tl,
    .services-bg.br {
        width: 120px;
    }

    .video-frame {
        border-radius: 14px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        row-gap: 18px;
    }

    .how-steps:before {
        display: none;
    }

    .step {
        grid-column: 1 !important;
        padding: 8px 0 12px;
    }

    .step.r1,
    .step.r2,
    .step.r3,
    .step.r4,
    .step.r5 {
        grid-row: auto;
    }

    .num {
        font-size: 22px;
    }

    .partners-track {
        gap: 36px;
        animation-duration: 28s;
    }

    .map-frame {
        border-radius: 14px;
    }

    .donate-collage {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
    }

    .donate-panel {
        padding: 28px;
    }

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

    .donate-sub {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .pretitle {
        font-size: 13px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-sub {
        font-size: 16px;
    }

    .service-item .title {
        font-size: 18px;
    }

    .service-item .desc {
        font-size: 14px;
    }

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

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

    .partners-track img {
        max-height: 48px;
    }

    .footer-subscribe {
        grid-template-columns: 1fr;
    }

    .subscribe-btn {
        width: 100%;
    }
}
