.lp-top-slider-section {
    padding: 64px 0 70px;
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 205, 190, .22), transparent 28rem),
        linear-gradient(135deg, #0a397c 0%, #115bb8 52%, #0b8fa1 100%);
}

.lp-top-slider-section .container {
    width: min(1280px, calc(100% - 64px));
}

.lp-slider {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.lp-slider.is-dragging {
    cursor: grabbing;
}

.lp-slider-track {
    display: flex;
    gap: 18px;
    width: 100%;
    will-change: transform;
}

.lp-slider-slide {
    flex: 0 0 100%;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
}

.lp-slider-slide a {
    display: block;
    height: 100%;
}

.lp-slider-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.lp-top-slider .lp-slider-track {
    gap: 18px;
}

.lp-top-slider .lp-slider-slide {
    aspect-ratio: 16 / 9;
    border-radius: 30px;
}

.lp-hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 205, 190, .22), transparent 28rem),
        linear-gradient(135deg, #0a397c 0%, #115bb8 52%, #0b8fa1 100%);
    color: #fff;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: 42px;
    align-items: center;
    padding: 54px 0 44px;
}

.lp-hero-copy h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: 0;
}

.lp-hero-copy p {
    max-width: 610px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.75;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.lp-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn svg {
    width: 17px;
    height: 17px;
}

.lp-btn-primary {
    background: #10b981;
    color: #fff;
    box-shadow: 0 14px 34px rgba(16,185,129,.24);
}

.lp-btn-light {
    background: rgba(255,255,255,.96);
    color: #0c4a8f;
}

.lp-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.lp-hero-visual::before {
    display: none;
}

.lp-hero-visual img {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    max-height: 610px;
    object-fit: contain;
    filter: drop-shadow(0 26px 48px rgba(6, 23, 52, .35));
}

.lp-year-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-width: 156px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    color: #0f397b;
    box-shadow: 0 18px 44px rgba(6,23,52,.2);
}

.lp-year-card span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.lp-year-card strong {
    display: block;
    margin-top: 2px;
    font-size: 20px;
}

.lp-quick {
    margin-top: 0;
    padding: 28px 0 12px;
    position: relative;
    z-index: 3;
    background: #fff;
}

.lp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.lp-quick-grid a,
.lp-quick-grid button {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #dbe8f6;
    border-radius: 14px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.lp-quick-grid a:hover,
.lp-quick-grid button:hover,
.lp-quick-grid a:focus-visible,
.lp-quick-grid button:focus-visible {
    border-color: #92c5ff;
    box-shadow: none;
    transform: translateY(-2px);
}

.lp-quick-grid a:focus-visible,
.lp-quick-grid button:focus-visible {
    outline: 3px solid rgba(15, 95, 181, .18);
    outline-offset: 2px;
}

.lp-quick-grid img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 3.7 / 1;
    object-fit: cover;
    object-position: center;
}

.lp-section {
    padding: 64px 0;
    background: #fff;
}

.lp-flow-section {
    padding-top: 54px;
}

.lp-split {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.lp-copy-block {
    position: relative;
    max-width: 530px;
    overflow: hidden;
    padding: 32px 34px 30px 40px;
    border: 1px solid #dce8f7;
    border-radius: 24px;
    background:
        repeating-linear-gradient(34deg, rgba(15, 95, 181, .035) 0 1px, transparent 1px 9px),
        linear-gradient(135deg, rgba(255,255,255,.99), rgba(249,253,248,.98));
    box-shadow: 0 18px 45px rgba(15, 57, 123, .06);
}

.lp-copy-block::before {
    content: "";
    position: absolute;
    inset: 22px auto 22px -1px;
    width: 12px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, #0f5fb5, #10b981);
}

.lp-copy-block h2,
.lp-section-head h2,
.lp-app-card h2 {
    margin: 0;
    color: #102033;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.12;
}

.lp-copy-block h2::after {
    content: "";
    display: block;
    width: 118px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f5fb5, #10b981);
}

.lp-copy-block p,
.lp-section-head p,
.lp-app-card p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.lp-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.lp-mini-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.lp-mini-list svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.lp-process-slider {
    padding: 4px 0;
}

.lp-process-slider .lp-slider-track {
    gap: 18px;
    width: max-content;
}

.lp-process-slider .lp-slider-slide {
    flex-basis: clamp(250px, 26vw, 360px);
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.lp-process-slider .lp-slider-slide img {
    object-fit: cover;
}

@media (min-width: 961px) {
    .lp-process-slider {
        overflow: hidden;
        cursor: grab;
    }

    .lp-process-slider .lp-slider-track {
        display: flex;
        gap: 18px;
        width: 100%;
    }

    .lp-process-slider .lp-slider-slide {
        display: block;
        flex: 0 0 calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
        aspect-ratio: 4 / 5;
        border-radius: 16px;
    }
}

.lp-program-section {
    background: #f6f9fd;
}

.lp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.lp-section-head a {
    color: #0f5fb5;
    font-size: 13px;
    font-weight: 800;
}

.lp-program-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 26px;
    max-width: 900px;
}

.lp-program-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 34px;
    color: #102033;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.lp-program-item i {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #10b981;
    color: #fff;
}

.lp-program-item i::before {
    content: "";
    width: 8px;
    height: 5px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateY(-1px) rotate(-45deg);
}

.lp-program-item:hover,
.lp-program-item:focus-visible {
    color: #0f5fb5;
}

.lp-app-section {
    background: #fff;
}

.lp-app-card {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(310px, .78fr);
    gap: 30px;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(135deg, #1559b7 0%, #078b95 100%);
    padding: 30px 34px 30px 28px;
    color: #fff;
    box-shadow: 0 22px 48px rgba(15, 57, 123, .16);
}

.lp-app-card img {
    width: 100%;
    max-height: 390px;
    align-self: center;
    object-fit: contain;
    filter: drop-shadow(0 20px 34px rgba(0,0,0,.2));
}

.lp-app-card div {
    max-width: 620px;
}

.lp-app-card h2 {
    color: #fff;
    max-width: 460px;
    font-size: clamp(24px, 2.65vw, 36px);
    line-height: 1.1;
}

.lp-app-card p {
    max-width: 530px;
    color: rgba(255,255,255,.9);
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.62;
}

.lp-app-card .lp-btn-primary {
    background: #18c28d;
    box-shadow: 0 16px 34px rgba(12, 27, 54, .18);
}

@media (max-width: 960px) {
    .lp-hero {
        min-height: auto;
    }

    .lp-hero-grid,
    .lp-split,
    .lp-app-card {
        grid-template-columns: 1fr;
    }

    .lp-hero-grid {
        gap: 18px;
        padding: 34px 0 26px;
    }

    .lp-hero-copy h1 {
        font-size: 31px;
    }

    .lp-hero-copy p {
        font-size: 13px;
    }

    .lp-top-slider-section {
        padding: 54px 0 58px;
    }

    .lp-top-slider-section .container {
        width: min(1280px, calc(100% - 56px));
    }

    .lp-top-slider .lp-slider-slide {
        aspect-ratio: 16 / 9;
        border-radius: 22px;
    }

    .lp-top-slider .lp-slider-track {
        gap: 14px;
    }

    .lp-hero-visual {
        min-height: 330px;
    }

    .lp-hero-visual img {
        max-height: 390px;
    }

    .lp-quick {
        margin-top: 0;
        padding: 18px 0 0;
        background: #fff;
    }

    .lp-quick-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .lp-quick-grid::-webkit-scrollbar {
        display: none;
    }

    .lp-quick-grid a,
    .lp-quick-grid button {
        flex: 0 0 min(78vw, 330px);
        scroll-snap-align: start;
    }

    .lp-quick-grid img {
        aspect-ratio: 3.15 / 1;
    }

    .lp-program-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
    }

    .lp-process-slider {
        margin-right: 0;
        padding-bottom: 0;
    }

    .lp-process-slider .lp-slider-track {
        gap: 12px;
    }

    .lp-process-slider .lp-slider-slide {
        flex-basis: min(68vw, 255px);
    }

    .lp-copy-block {
        max-width: none;
        padding: 24px 24px 23px 34px;
        border-radius: 22px;
    }

    .lp-section {
        padding: 42px 0;
    }

    .lp-flow-section {
        padding-top: 34px;
    }
}

@media (max-width: 640px) {
    .lp-section {
        padding: 40px 0;
    }

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

    .lp-hero-copy h1 {
        font-size: 28px;
        line-height: 1.08;
        max-width: 360px;
    }

    .lp-hero-copy p,
    .lp-copy-block p,
    .lp-section-head p,
    .lp-app-card p {
        line-height: 1.5;
    }

    .lp-copy-block {
        padding: 22px 18px 21px 34px;
        border-radius: 20px;
        box-shadow: 0 14px 30px rgba(15, 57, 123, .055);
    }

    .lp-copy-block::before {
        inset: 16px auto 16px -1px;
        width: 13px;
    }

    .lp-copy-block h2 {
        max-width: 250px;
        font-size: 19px;
        line-height: 1.08;
    }

    .lp-copy-block h2::after {
        width: 76px;
        height: 3px;
        margin-top: 8px;
    }

    .lp-copy-block p {
        max-width: 305px;
        margin-top: 13px;
        padding-left: 14px;
        color: #667085;
        font-size: 11.4px;
        line-height: 1.42;
    }

    .lp-mini-list {
        gap: 5px;
        margin-top: 18px;
        padding-left: 14px;
    }

    .lp-mini-list div {
        align-items: flex-start;
        gap: 7px;
        font-size: 11.5px;
        line-height: 1.28;
    }

    .lp-mini-list svg {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
        margin-top: 1px;
    }

    .lp-top-slider-section {
        padding: 42px 0 46px;
    }

    .lp-top-slider-section .container {
        width: calc(100% - 48px);
    }

    .lp-top-slider .lp-slider-slide {
        aspect-ratio: 16 / 9;
        border-radius: 18px;
    }

    .lp-top-slider .lp-slider-track {
        gap: 12px;
    }

    .lp-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lp-btn {
        min-height: 40px;
        padding: 9px 11px;
        font-size: 12px;
    }

    .lp-hero-visual {
        min-height: 318px;
    }

    .lp-hero-visual::before {
        display: none;
    }

    .lp-hero-visual img {
        width: min(340px, 96%);
        max-height: 355px;
    }

    .lp-year-card {
        right: 8px;
        bottom: 4px;
        min-width: 128px;
        padding: 11px;
    }

    .lp-year-card strong {
        font-size: 17px;
    }

    .lp-quick-grid {
        gap: 8px;
        padding-bottom: 2px;
    }

    .lp-quick-grid a,
    .lp-quick-grid button {
        flex-basis: 82%;
    }

    .lp-flow-section {
        padding-top: 28px;
    }

    .lp-program-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .lp-app-section {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .lp-program-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .lp-program-item {
        min-height: 30px;
        font-size: 13px;
        line-height: 1.35;
    }

    .lp-copy-block h2,
    .lp-section-head h2,
    .lp-app-card h2 {
        font-size: 23px;
        line-height: 1.08;
    }

    .lp-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .lp-app-card {
        gap: 12px;
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(15, 57, 123, .12);
    }

    .lp-app-card img {
        max-height: 205px;
        margin: -2px auto 4px;
    }

    .lp-app-card h2 {
        max-width: 270px;
        font-size: 22px;
        line-height: 1.08;
    }

    .lp-app-card p {
        max-width: 285px;
        font-size: 12.5px;
        line-height: 1.5;
        margin-top: 9px;
        margin-bottom: 14px;
    }
}
