:root {
    --pink: #f4075d;
    --pink2: #ff477f;
    --ink: #171821;
    --muted: #60616b;
    --line: #e9e9ed;
    --soft: #fff3f7;
    --container: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: inherit;
}
.lp-container {
    width: min(var(--container), calc(100% - 44px));
    margin-inline: auto;
}
.lp-header {
    height: 76px;
    border-bottom: 1px solid #eee;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
}
.lp-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}
.lp-logo img,
.lp-footer img {
    width: 160px;
    display: block;
}
.lp-nav-links {
    display: flex;
    gap: 34px;
    margin: auto;
    font-size: 13px;
    color: #353641;
}
.lp-nav-links a:hover {
    color: var(--pink);
}
.lp-nav-links i {
    font-size: 9px;
    margin-left: 4px;
}
.lp-nav-actions,
.lp-actions {
    display: flex;
    gap: 14px;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 7px;
    padding: 11px 22px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.2s;
}
.lp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px #f4075d22;
}
.lp-btn-pink {
    background: linear-gradient(135deg, #fa0a64, #ed0058);
    color: #fff;
}
.lp-btn-outline {
    border-color: #aeb0b8;
    background: #fff;
}
.lp-btn-lg {
    min-width: 154px;
    padding: 14px 23px;
}
.lp-menu {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
}
.lp-hero {
    padding: 24px 0 10px;
    display: grid;
    grid-template-columns: 39% 61%;
    align-items: center;
    min-height: 570px;
}
.lp-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--pink);
    border: 1px solid #ff9abb;
    background: #fff8fa;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 12px;
}
.lp-hero h1 {
    font-size: 48px;
    line-height: 1.13;
    letter-spacing: -2px;
    margin: 24px 0 20px;
}
.lp-hero h1 em,
.lp-heading span,
.lp-admin-strip span,
.lp-final-cta span {
    color: var(--pink);
    font-style: normal;
}
.lp-hero-copy > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 490px;
}
.lp-actions {
    margin: 28px 0 50px;
}
.lp-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: #555;
}
.lp-trust > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-avatars {
    display: flex;
}
.lp-avatars b {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: -7px;
    color: #fff;
    border: 2px solid #fff;
    background: linear-gradient(135deg, #435c72, #d89064);
}
.lp-stars {
    color: #ffa20a;
    letter-spacing: 2px;
}
.lp-trust small {
    color: #60616b;
}
.lp-dashboard {
    position: relative;
    margin-left: 30px;
    height: 505px;
    border: 1px solid #ddd;
    border-radius: 13px;
    box-shadow: 0 16px 35px #30333c1c;
    background: #f8f9fb;
    overflow: visible;
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 55px 1fr;
    font-size: 9px;
}
.dash-top {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 13px 13px 0 0;
}
.dash-top strong {
    font-size: 12px;
}
.dash-top strong span {
    color: var(--pink);
}
.lp-dashboard aside {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 23px 14px;
    background: #fff;
    border-radius: 0 0 0 13px;
}
.lp-dashboard aside b {
    background: #fff0f5;
    color: var(--pink);
    padding: 9px 7px;
    border-radius: 4px;
}
.dash-main {
    padding: 15px 88px 15px 14px;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 1.15fr 1fr;
    gap: 11px;
}
.dash-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 7px;
    padding: 14px;
    box-shadow: 0 2px 5px #22200008;
}
.dash-card b {
    font-size: 9px;
}
.dash-card p {
    color: #60616b;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 7px;
}
.dash-chart svg {
    width: 100%;
    height: 100px;
}
.dash-chart small {
    word-spacing: 9px;
    color: #888;
}
.dash-progress {
    text-align: center;
}
.progress-ring {
    width: 95px;
    height: 95px;
    margin: 18px auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--pink) 0 76%, #f1eff2 76%);
    position: relative;
}
.progress-ring:after {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 50%;
}
.progress-ring strong {
    z-index: 1;
    font-size: 18px;
}
.dash-progress small {
    color: #1bb96b;
}
.dash-floats {
    position: absolute;
    right: -44px;
    top: 90px;
    width: 145px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dash-floats > div {
    background: #fff;
    border-radius: 8px;
    padding: 13px;
    box-shadow: 0 7px 18px #2222;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 6px;
}
.dash-floats i {
    grid-row: 1/4;
    color: var(--pink);
    font-size: 19px;
}
.dash-floats strong,
.dash-floats small {
    grid-column: 2;
}
.dash-floats strong {
    font-size: 12px;
}
.lp-admin-strip,
.lp-modern,
.lp-final-cta {
    background: linear-gradient(100deg, #fff1f5, #fff9fa, #fff1f5);
    border: 1px solid #ffdfe9;
    border-radius: 12px;
    padding: 27px 22px;
}
.lp-admin-strip h2,
.lp-heading {
    text-align: center;
    font-size: 26px;
    margin: 0 0 26px;
}
.lp-four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.lp-four-grid article,
.lp-feature,
.lp-benefits article {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 11px;
    padding: 20px;
    display: flex;
    gap: 17px;
    min-height: 130px;
}
.lp-four-grid i,
.lp-benefits i {
    font-size: 30px;
    color: var(--pink);
}
article b {
    font-size: 13px;
}
article p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.55;
    margin: 10px 0 0;
}
.lp-section {
    padding-top: 42px;
}
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-feature {
    box-shadow: 0 5px 18px #1a1a3010;
    align-items: center;
}
.lp-feature > i {
    font-size: 34px;
    width: 55px;
    height: 55px;
    border-radius: 13px;
    display: grid;
    place-items: center;
}
.lp-feature .pink {
    color: #ef2770;
    background: #fff0f6;
}
.lp-feature .purple {
    color: #8e4bec;
    background: #f4ebff;
}
.lp-feature .red {
    color: #f33;
    background: #ffebeb;
}
.lp-feature .green {
    color: #25a854;
    background: #e9f9ef;
}
.lp-feature .blue {
    color: #397bea;
    background: #ecf3ff;
}
.lp-feature .orange {
    color: #ff9417;
    background: #fff3e2;
}
.lp-feature sup {
    background: #ffe5ef;
    color: var(--pink);
    border-radius: 10px;
    padding: 3px 7px;
    margin-left: 8px;
}
.ai-platform {
    margin-top: 42px;
    min-height: 340px;
    border-radius: 12px;
    color: #fff;
    padding: 36px 28px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(
        circle at 78% 35%,
        #24263a,
        #0d0e17 47%,
        #080910
    );
    box-shadow: inset 0 0 60px #000;
}
.ai-platform:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#f3076744 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.65;
}
.ai-copy {
    position: relative;
    width: 43%;
    z-index: 2;
}
.ai-copy > span {
    font-size: 9px;
    font-weight: 800;
    border: 1px solid #f4075d88;
    border-radius: 12px;
    padding: 5px 9px;
    color: #ffb2cf;
}
.ai-copy h2 {
    font-size: 27px;
    line-height: 1.15;
    margin: 12px 0;
}
.ai-copy h2 em {
    color: #ff3d83;
    font-style: normal;
}
.ai-copy p {
    font-size: 11px;
    line-height: 1.6;
    color: #c9c9d3;
    max-width: 440px;
}
.ai-robot {
    position: absolute;
    z-index: 2;
    right: 20%;
    top: 18px;
    width: 155px;
    height: 190px;
}
.robot-head {
    position: absolute;
    left: 25px;
    top: 24px;
    width: 105px;
    height: 79px;
    border: 10px solid #e9edf4;
    border-radius: 42px;
    background: #1c152c;
    box-shadow: 0 0 18px #f30767;
}
.robot-head i {
    position: absolute;
    width: 15px;
    height: 22px;
    background: #ff4ca2;
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 13px #ff4ca2;
}
.robot-head i:first-child {
    left: 19px;
}
.robot-head i:nth-child(2) {
    right: 19px;
}
.robot-head b {
    position: absolute;
    width: 30px;
    height: 8px;
    border-bottom: 3px solid #ff4ca2;
    border-radius: 50%;
    left: 27px;
    top: 44px;
}
.robot-antenna {
    position: absolute;
    left: 75px;
    top: 0;
    width: 5px;
    height: 29px;
    background: #e9edf4;
}
.robot-antenna:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff4ca2;
    box-shadow: 0 0 12px #ff4ca2;
}
.robot-body {
    position: absolute;
    left: 40px;
    top: 101px;
    width: 76px;
    height: 66px;
    border-radius: 22px 22px 32px 32px;
    background: linear-gradient(#f6f7fa, #aeb8c7);
    color: #f4075d;
    text-align: center;
    padding-top: 25px;
    font-weight: 800;
}
.robot-arm {
    position: absolute;
    top: 110px;
    width: 27px;
    height: 62px;
    border-radius: 18px;
    background: #dbe0e9;
}
.robot-arm.left {
    left: 13px;
    transform: rotate(22deg);
}
.robot-arm.right {
    right: 13px;
    transform: rotate(-22deg);
}
.ai-speech {
    position: absolute;
    right: 125px;
    top: 10px;
    width: 132px;
    padding: 10px;
    border: 1px solid #ff477f66;
    background: #171825;
    border-radius: 8px;
    font-size: 8px;
    line-height: 1.5;
}
.ai-platform-features {
    position: absolute;
    z-index: 3;
    bottom: 18px;
    left: 25px;
    right: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}
.ai-platform-features article {
    padding: 12px;
    background: #1e1f2d;
    border: 1px solid #323444;
    border-radius: 9px;
    display: flex;
    gap: 10px;
    min-height: 72px;
}
.ai-platform-features i {
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c44f1, #f20765);
    display: grid;
    place-items: center;
}
.ai-platform-features p {
    color: #aeb0bd;
    font-size: 8px;
    margin-top: 5px;
}
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.lp-steps:before {
    content: "";
    position: absolute;
    top: 16px;
    left: 10%;
    right: 10%;
    border-top: 1px dashed #e8dbe0;
}
.lp-steps article {
    display: grid;
    grid-template-columns: 52px 1fr;
    position: relative;
    padding: 55px 15px 0;
}
.lp-steps .step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff2f6;
    color: var(--pink);
    font-size: 17px;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.lp-steps article > i {
    grid-row: 1/3;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff4f7;
    font-size: 23px;
}
.lp-steps p {
    grid-column: 2;
}
.lp-compare {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
}
.lp-table-wrap {
    overflow: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}
th,
td {
    border: 1px solid #e5e5e8;
    padding: 11px 14px;
    text-align: left;
}
th {
    font-size: 12px;
}
th:nth-child(3) {
    background: linear-gradient(90deg, #ef075c, #f40770);
    color: #fff;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
td:nth-child(3) {
    background: #fff4f7;
}
td i {
    margin-right: 12px;
}
td:nth-child(2) i {
    color: #ff557c;
}
td:nth-child(3) i {
    color: #28b76d;
}
.lp-modern {
    margin-top: 42px;
}
.lp-tool-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.lp-tool-row span {
    background: #fff;
    border: 1px solid #f1e9ec;
    border-radius: 9px;
    padding: 14px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 600;
}
.lp-tool-row i {
    font-size: 20px;
}
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-benefits article {
    background: linear-gradient(135deg, #fff9fa, #fff0f4);
}
.lp-institutions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-institutions article {
    border: 1px solid #e4e4e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px #22200010;
}
.institution-photo {
    height: 125px;
    background-image: url("../images/home/CTA.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.photo-1 {
    background-position: 85% 32%;
}
.photo-2 {
    background-position: 68% 32%;
    filter: hue-rotate(18deg);
}
.photo-3 {
    background-position: 55% 35%;
    filter: hue-rotate(-15deg);
}
.photo-4 {
    background-position: 35% 36%;
    filter: saturate(0.8);
}
.lp-institutions article > div:last-child {
    padding: 12px;
    position: relative;
    min-height: 100px;
}
.lp-institutions a {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
}
.lp-final-cta {
    margin-top: 24px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.75fr;
    align-items: center;
    gap: 28px;
    padding: 24px 48px;
}
.lp-final-cta h2 {
    font-size: 28px;
    margin: 0;
}
.lp-final-cta p {
    font-size: 11px;
    line-height: 1.6;
    max-width: 350px;
}
.lp-final-cta img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    mix-blend-mode: multiply;
}
.lp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-footer {
    border-top: 1px solid #eee;
    padding-top: 35px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(5, 1fr);
    gap: 30px;
}
.lp-footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-footer-grid p,
.lp-footer-grid a {
    font-size: 10px;
    color: #666;
}
.lp-footer-grid a:hover {
    color: var(--pink);
}
.lp-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}
.lp-copyright {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 9px;
}
.lp-copyright i {
    color: var(--pink);
}
@media (max-width: 980px) {
    .lp-nav {
        gap: 20px;
    }
    .lp-nav-links {
        gap: 16px;
    }
    .lp-hero {
        grid-template-columns: 1fr;
        padding-top: 35px;
    }
    .lp-hero-copy {
        text-align: center;
    }
    .lp-hero-copy > p {
        margin-inline: auto;
    }
    .lp-actions,
    .lp-trust > div {
        justify-content: center;
    }
    .lp-dashboard {
        margin: 45px 30px 0;
    }
    .lp-four-grid,
    .lp-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-tool-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .lp-institutions {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-footer-grid > div:first-child {
        grid-column: 1/-1;
    }
    .lp-final-cta {
        gap: 20px;
        padding: 22px 30px;
    }
    .ai-copy {
        width: 52%;
    }
    .ai-robot {
        right: 8%;
    }
}
@media (max-width: 720px) {
    body {
        font-size: 13px;
    }
    .lp-container {
        width: min(100% - 28px, var(--container));
    }
    .lp-header {
        height: 64px;
    }
    .lp-logo img {
        width: 132px;
    }
    .lp-menu {
        display: block;
        margin-left: auto;
    }
    .lp-nav-actions {
        display: none;
    }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 22px;
        box-shadow: 0 12px 20px #0002;
        flex-direction: column;
    }
    .lp-nav-links.open {
        display: flex;
    }
    .lp-hero h1 {
        font-size: 38px;
    }
    .lp-dashboard {
        height: 430px;
        margin: 35px 16px 0;
        grid-template-columns: 82px 1fr;
    }
    .dash-main {
        padding-right: 8px;
    }
    .dash-floats {
        display: none;
    }
    .lp-four-grid,
    .lp-feature-grid,
    .lp-benefits,
    .lp-institutions {
        grid-template-columns: 1fr;
    }
    .lp-admin-strip h2,
    .lp-heading {
        font-size: 22px;
    }
    .ai-platform {
        min-height: 600px;
        padding: 28px 20px;
    }
    .ai-copy {
        width: 100%;
        text-align: center;
    }
    .ai-robot {
        top: 175px;
        right: 50%;
        transform: translateX(50%);
    }
    .ai-platform-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-steps {
        grid-template-columns: 1fr;
    }
    .lp-steps:before {
        display: none;
    }
    .lp-steps article {
        padding-top: 25px;
    }
    .lp-steps .step-number {
        left: 20px;
        top: 28px;
    }
    .lp-tool-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-final-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
        padding: 24px 20px;
    }
    .lp-final-cta img {
        height: 160px;
    }
    .lp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-copyright {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    .lp-actions {
        flex-direction: column;
    }
    .lp-btn-lg {
        width: 100%;
    }
    .lp-trust > div {
        flex-wrap: wrap;
    }
    .lp-hero {
        padding-bottom: 35px;
    }
}
@media (max-width: 450px) {
    .lp-dashboard {
        display: none;
    }
    .lp-hero {
        min-height: auto;
    }
    .lp-hero h1 {
        font-size: 34px;
    }
    .ai-platform {
        min-height: 730px;
    }
    .ai-platform-features {
        grid-template-columns: 1fr;
    }
    .lp-tool-row {
        grid-template-columns: 1fr 1fr;
    }
    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lp-steps article {
        grid-template-columns: 45px 1fr;
    }
    .lp-final-cta img {
        height: 135px;
    }
}

/* =========================================================
   BOOK DEMO IFRAME MODAL
========================================================= */

.lp-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lp-demo-modal.active {
    display: flex;
}

.lp-demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
}

.lp-demo-dialog {
    position: relative;
    z-index: 2;
    width: min(1000px, 95vw);
    height: min(760px, 92vh);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.lp-demo-header {
    min-height: 58px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.lp-demo-header strong {
    font-size: 18px;
    color: #111827;
}

.lp-demo-close {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.lp-demo-body {
    flex: 1;
    min-height: 0;
}

.lp-demo-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}

body.lp-demo-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .lp-demo-modal {
        padding: 0;
    }

    .lp-demo-dialog {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
}

.ix-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.institution-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   LAPTOP SCREENS - LANDING PAGE ONLY
============================================ */

@media (min-width: 981px) and (max-width: 1366px) {
    .landing-page .lp-container {
        width: calc(100% - 80px);
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page .lp-hero {
        grid-template-columns: 40% 60%;
        min-height: 500px;
        padding: 20px 0 10px;
    }

    .landing-page .lp-hero h1 {
        font-size: 42px;
        line-height: 1.12;
        margin: 20px 0 16px;
    }

    .landing-page .lp-hero-copy > p {
        font-size: 13px;
        max-width: 430px;
    }

    .landing-page .lp-actions {
        margin: 22px 0 35px;
    }

    .landing-page .lp-dashboard {
        height: 450px;
        margin-left: 20px;
    }

    .landing-page .dash-main {
        padding: 13px 75px 13px 12px;
    }

    .landing-page .dash-floats {
        right: -30px;
        width: 135px;
    }

    .landing-page .lp-four-grid {
        gap: 12px;
    }

    .landing-page .lp-four-grid article,
    .landing-page .lp-feature,
    .landing-page .lp-benefits article {
        padding: 16px;
    }

    .landing-page .lp-feature-grid {
        gap: 15px;
    }

    .landing-page .lp-benefits,
    .landing-page .lp-institutions {
        gap: 12px;
    }

    .landing-page .lp-section {
        padding-top: 35px;
    }
}
