.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-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(18, 104, 196, .24);
    border-radius: 999px;
    background: #fff;
    padding: 0 16px;
    box-shadow: 0 12px 26px rgba(15, 57, 123, .08);
    white-space: nowrap;
}

.lp-program-detail img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.lp-program-detail:hover,
.lp-program-detail:focus-visible {
    border-color: #1268c4;
    background: #eff6ff;
}

.lp-program-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
}

.lp-program-group {
    border: 1px solid rgba(183, 210, 239, .86);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 57, 123, .07);
    overflow: hidden;
}

.lp-program-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(135deg, #155ec2 0%, #0d82ab 100%);
    padding: 16px 18px 13px;
    color: #fff;
    font: inherit;
    text-align: left;
    cursor: default;
}

.lp-program-toggle strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.lp-program-toggle small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 700;
}

.lp-program-toggle-icon {
    display: none;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.lp-program-toggle-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-program-icon-close {
    display: none !important;
}

.lp-program-group.is-open .lp-program-icon-open {
    display: none !important;
}

.lp-program-group.is-open .lp-program-icon-close {
    display: block !important;
}

.lp-program-panel {
    display: block;
    padding: 12px 18px 18px;
}

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

.lp-program-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 34px;
    color: #102033;
    font-size: 13px;
    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-empty {
    border: 1px dashed #c7d8ee;
    border-radius: 12px;
    background: #f8fbff;
    padding: 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.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);
}

.lp-instagram-section {
    background: #fff;
    padding-top: 24px;
}

.lp-instagram-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
    align-items: start;
    gap: 28px;
}

.lp-instagram-main {
    min-width: 0;
}

.lp-instagram-copy {
    max-width: 650px;
    margin-bottom: 18px;
}

.lp-instagram-username {
    display: inline-flex;
    color: #0f8e95;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.lp-instagram-copy p {
    margin: 9px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.lp-instagram-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 18px;
    border: 1px solid #b9d5f4;
    border-radius: 999px;
    background: #fff;
    color: #0f5fb5;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(15, 57, 123, .08);
}

.lp-instagram-copy a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.lp-instagram-preview {
    justify-self: end;
    width: min(430px, 100%);
    min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lp-instagram-preview img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: center top;
    filter: none;
}

.lp-instagram-masonry {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 28px;
    grid-auto-flow: dense;
    gap: 8px;
    max-height: 310px;
    overflow: hidden;
}

.lp-instagram-card {
    position: relative;
    display: block;
    overflow: hidden;
    grid-row: span 4;
    min-height: 0;
    border-radius: 11px;
    background: #dce8f7;
    box-shadow: 0 10px 20px rgba(15, 57, 123, .06);
    transform: translateZ(0);
}

.lp-instagram-card.is-small {
    grid-row: span 3;
}

.lp-instagram-card.is-tall {
    grid-row: span 5;
}

.lp-instagram-card.is-wide {
    grid-column: span 2;
    grid-row: span 3;
}

.lp-instagram-card:nth-child(6n + 2) {
    grid-row: span 5;
}

.lp-instagram-card:nth-child(7n + 4) {
    grid-column: span 2;
    grid-row: span 3;
}

.lp-instagram-card:nth-child(8n + 6) {
    grid-row: span 4;
}

.lp-instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.lp-instagram-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 18, 44, 0) 38%, rgba(3, 18, 44, .78) 100%);
    pointer-events: none;
}

.lp-instagram-card span,
.lp-instagram-card strong {
    position: absolute;
    z-index: 1;
    left: 13px;
    right: 13px;
}

.lp-instagram-card span {
    top: 7px;
    width: max-content;
    max-width: calc(100% - 26px);
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #0f5fb5;
    font-size: 7.5px;
    font-weight: 900;
}

.lp-instagram-card strong {
    bottom: 8px;
    color: #fff;
    font-size: 9px;
    line-height: 1.35;
}

.lp-instagram-card:hover img {
    transform: scale(1.04);
}

html.is-home-reveal-ready [data-reveal] {
    content-visibility: auto;
    contain-intrinsic-size: 1px 520px;
}

html.is-home-reveal-ready [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

html.is-home-reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity .56s ease, transform .56s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

html.is-home-reveal-ready .lp-lazy-image {
    opacity: 0;
    transform: scale(.985);
    transition: opacity .45s ease, transform .45s ease;
}

html.is-home-reveal-ready .lp-lazy-image.is-loaded {
    opacity: 1;
    transform: scale(1);
}

html.is-home-reveal-ready.is-pagespeed-mode [data-reveal].is-visible,
html.is-home-reveal-ready.is-pagespeed-mode .lp-lazy-image {
    transition-duration: .34s;
}

@media (max-width: 640px) {
    html.is-home-reveal-ready [data-reveal]:not(.is-visible) {
        transform: translate3d(0, 14px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.is-home-reveal-ready [data-reveal],
    html.is-home-reveal-ready [data-reveal]:not(.is-visible),
    html.is-home-reveal-ready .lp-lazy-image {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1100px) {
    .lp-instagram-layout {
        grid-template-columns: minmax(0, .9fr) minmax(250px, .58fr);
        gap: 22px;
        align-items: start;
    }

    .lp-instagram-preview {
        width: min(370px, 100%);
        min-height: 0;
        align-items: flex-start;
    }

    .lp-instagram-preview img {
        max-height: 470px;
        object-position: center top;
        filter: none;
    }

    .lp-instagram-masonry {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-auto-rows: 26px;
        gap: 7px;
        max-height: 285px;
    }
}

@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-detail {
        min-height: 38px;
        padding: 0 13px;
        font-size: 12px;
        box-shadow: none;
    }

    .lp-program-groups {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lp-program-group {
        border-radius: 15px;
        box-shadow: none;
    }

    .lp-program-toggle {
        min-height: 50px;
        padding: 11px 12px;
        cursor: pointer;
    }

    .lp-program-toggle strong {
        font-size: 13px;
    }

    .lp-program-toggle small {
        font-size: 10px;
    }

    .lp-program-toggle-icon {
        display: inline-flex;
    }

    .lp-program-panel {
        display: none;
        padding: 13px 12px 12px;
    }

    .lp-program-group.is-open .lp-program-panel {
        display: block;
    }

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

    .lp-program-item {
        grid-template-columns: 17px minmax(0, 1fr);
        gap: 7px;
        min-height: 27px;
        font-size: 11px;
        line-height: 1.2;
    }

    .lp-program-item i {
        width: 16px;
        height: 16px;
    }

    .lp-program-item i::before {
        width: 7px;
        height: 4px;
        border-bottom-width: 2px;
        border-left-width: 2px;
    }

    .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;
    }

    .lp-instagram-section {
        padding-top: 12px;
    }

    .lp-instagram-layout {
        grid-template-columns: minmax(0, 1.28fr) minmax(72px, .72fr);
        align-items: start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .lp-instagram-main {
        display: contents;
    }

    .lp-instagram-copy {
        max-width: none;
        min-width: 0;
        margin-bottom: 0;
    }

    .lp-instagram-username {
        font-size: 9.5px;
    }

    .lp-instagram-copy h2 {
        font-size: 20px;
        line-height: 1.08;
    }

    .lp-instagram-copy p {
        max-width: none;
        font-size: 11.5px;
        line-height: 1.45;
    }

    .lp-instagram-copy a {
        min-height: 34px;
        margin-top: 13px;
        padding: 0 12px;
        gap: 6px;
        font-size: 11px;
        white-space: nowrap;
    }

    .lp-instagram-copy a img {
        width: 15px;
        height: 15px;
    }

    .lp-instagram-preview {
        width: 100%;
        min-height: 0;
        max-height: 156px;
        align-self: stretch;
        justify-self: end;
        align-items: flex-start;
        order: 2;
    }

    .lp-instagram-preview img {
        width: 100%;
        max-height: 156px;
        object-position: center top;
        filter: none;
    }

    .lp-instagram-masonry {
        grid-column: 1 / -1;
        order: 3;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 28px;
        gap: 6px;
        margin-top: 2px;
        max-height: none;
        overflow: visible;
    }

    .lp-instagram-card {
        grid-column: auto;
        grid-row: span 4;
        border-radius: 10px;
        box-shadow: 0 8px 18px rgba(15, 57, 123, .07);
    }

    .lp-instagram-card.is-small {
        grid-row: span 3;
    }

    .lp-instagram-card.is-tall {
        grid-row: span 5;
    }

    .lp-instagram-card.is-wide {
        grid-column: span 2;
        grid-row: span 3;
    }

    .lp-instagram-card:nth-child(6n + 2) {
        grid-row: span 5;
    }

    .lp-instagram-card:nth-child(7n + 4) {
        grid-column: span 2;
        grid-row: span 3;
    }

    .lp-instagram-card:nth-child(8n + 6) {
        grid-row: span 4;
    }

    .lp-instagram-card span {
        top: 4px;
        left: 4px;
        right: 4px;
        max-width: calc(100% - 8px);
        padding: 2px 4px;
        font-size: 6.6px;
    }

    .lp-instagram-card strong {
        left: 5px;
        right: 5px;
        bottom: 5px;
        display: -webkit-box;
        overflow: hidden;
        font-size: 7px;
        line-height: 1.15;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
}
