﻿:root {
    --lankar-navy: #09101C;
    --lankar-blue: #2196F3;
    --lankar-red: #e04c55;
    --lankar-light: #f5f7fa;
    --lankar-white: #ffffff;
    --font-main: 'Open Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

/* ====== FEATURE DETAIL SECTIONS ====== */
.lk-feature-section {
    padding: 90px 48px;
    background: #ffffff;
    scroll-margin-top: 96px;
}

    .lk-feature-section.lk-fs-shade {
        background: #F1F2F3;
    }

.lk-fs-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lk-fs-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lk-fs-title {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1C1917;
    line-height: 1.12;
    margin: 0 0 18px;
}

.lk-fs-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    max-width: 620px;
    margin: 0 auto 32px;
}

.lk-fs-shot {
    height: 280px;
    border: 2px dashed #cfcabf;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a7a195;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: rgba(255,255,255,0.5);
}

.lk-fs-art {
    max-width: 500px;
    margin: 48px auto 0;
}

    .lk-fs-art svg {
        width: 100%;
        height: auto;
        display: block;
    }

.lk-fs-pillars {
    max-width: 980px;
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.lk-pillar {
    text-align: center;
}

.lk-pillar-art {
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 18px;
}

    .lk-pillar-art svg {
        height: 112px;
        width: auto;
        display: block;
    }

.lk-pillar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1C1917;
    margin: 0 0 8px;
}

.lk-pillar-text {
    font-size: 15px;
    line-height: 1.55;
    color: #5A5A58;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 760px) {
    .lk-fs-pillars {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 380px;
    }
}

/* ====== PRICING ====== */
.lk-pricing-section {
    background-color: #ffffff;
    padding: 92px 48px;
}

.lk-price-head {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.lk-price-card {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(9,16,28,0.13);
    padding: 42px 40px 38px;
    text-align: center;
}

.lk-price-name {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #984040;
    margin-bottom: 14px;
}

.lk-price-amt {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.lk-price-num {
    font-family: 'Epilogue', sans-serif;
    font-size: 66px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #1C2A44;
    line-height: 1;
}

.lk-price-per {
    font-size: 18px;
    font-weight: 600;
    color: #7c8896;
}

.lk-price-sub {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #5A5A58;
}

.lk-price-list {
    list-style: none;
    margin: 24px auto 28px;
    padding: 0;
    display: table;
    text-align: left;
}

    .lk-price-list li {
        position: relative;
        padding-left: 22px;
        font-size: 15px;
        color: #1C2A44;
        line-height: 1.9;
    }

    .lk-price-list li::before {
        content: '';
        position: absolute;
        left: 3px;
        top: 12px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #984040;
    }

.lk-price-fees {
    list-style: none;
    margin: 24px auto 28px;
    padding: 0;
    display: inline-block;
    text-align: left;
}

    .lk-price-fees li {
        position: relative;
        padding-left: 20px;
        font-size: 15px;
        color: #5A5A58;
        line-height: 2;
    }

    .lk-price-fees li::before {
        content: '';
        position: absolute;
        left: 2px;
        top: 13px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #984040;
    }

    .lk-price-fees strong {
        color: #1C2A44;
        font-weight: 800;
    }

.lk-price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #c94746;
    border: 1.5px solid #c94746;
    text-decoration: none;
    border-radius: 6px;
    padding: 11px 42px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .lk-price-cta:hover {
        background: #c94746;
        color: #ffffff;
        border-color: #c94746;
    }

.lk-price-cta-label {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lk-price-cta-sub {
    font-size: 11px;
    font-style: italic;
    opacity: 0.85;
    margin-top: 3px;
}

.lk-usage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1040px;
    margin: 42px auto 0;
}

.lk-usage-card {
    background: #ffffff;
    border: 1px solid #e6e2d8;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(9,16,28,0.05);
}

.lk-usage-ic {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

    .lk-usage-ic svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.lk-usage-ttl {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1C2A44;
    margin-bottom: 6px;
}

.lk-usage-val {
    display: block;
    font-family: 'Epilogue', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #984040;
}

    .lk-usage-val span {
        display: block;
        font-family: 'Open Sans', sans-serif;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0;
        color: #7c8896;
        margin-top: 2px;
    }

.lk-price-fine {
    text-align: center;
    font-size: 12px;
    color: #9aa3af;
    margin-top: 22px;
}

/* ===== Schedule Training modal ===== */
.lk-tr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 26, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 24px;
}
.lk-tr-overlay.lk-open { display: flex; }

.lk-tr-dialog {
    position: relative;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    border-top: 5px solid #984040;
    display: flex;
    flex-direction: column;
}
.lk-tr-close {
    position: absolute;
    top: 10px; right: 14px;
    border: none; background: transparent;
    font-size: 30px; line-height: 1;
    color: #9aa3af; cursor: pointer;
    z-index: 2;
}
.lk-tr-close:hover { color: #1C2A44; }

.lk-tr-head { padding: 26px 32px 14px; }
.lk-tr-head h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1C2A44;
    margin: 0;
}
.lk-tr-head p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; color: #6b7280;
    margin: 6px 0 0;
}

.lk-tr-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

/* calendar */
.lk-tr-cal { padding: 8px 24px 24px 32px; }
.lk-cal-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.lk-cal-label {
    font-family: 'Manrope', sans-serif; font-weight: 700;
    font-size: 16px; color: #1C2A44;
}
.lk-cal-nav {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid #e3e3e0; background: #fff;
    font-size: 18px; color: #2E4F80; cursor: pointer; line-height: 1;
}
.lk-cal-nav:hover { background: #FCFCFC; }
.lk-cal-dow, .lk-cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
}
.lk-cal-dow span {
    text-align: center; font-size: 11px; font-weight: 700;
    color: #9aa3af; padding: 6px 0;
    font-family: 'Open Sans', sans-serif;
}
.lk-cal-grid { gap: 3px; }
.lk-cal-cell {
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #b8bcc4;
    font-family: 'Open Sans', sans-serif;
    border-radius: 8px; user-select: none;
}
.lk-cal-cell.lk-cur { color: #1C2A44; }
.lk-cal-cell.lk-has {
    background: #eef3fb; color: #2E4F80; font-weight: 700;
    cursor: pointer; position: relative;
}
.lk-cal-cell.lk-has:hover { background: #2E4F80; color: #fff; }
.lk-cal-cell.lk-has::after {
    content: ''; position: absolute; bottom: 5px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #984040;
}
.lk-cal-cell.lk-has:hover::after { background: #fff; }
.lk-cal-cell.lk-sel { background: #2E4F80; color: #fff; }
.lk-cal-cell.lk-sel::after { background: #fff; }
.lk-cal-hint {
    font-size: 12px; color: #9aa3af; margin-top: 12px;
    font-family: 'Open Sans', sans-serif;
}

/* right side */
.lk-tr-side {
    background: #FCFCFC;
    padding: 22px 28px;
    overflow-y: auto;
    max-height: calc(90vh - 110px);
}
.lk-tr-empty {
    font-size: 14px; color: #8a8f99; font-family: 'Open Sans', sans-serif;
    padding-top: 30px; text-align: center;
}
.lk-tr-dayttl {
    font-family: 'Manrope', sans-serif; font-weight: 700;
    font-size: 15px; color: #1C2A44; margin-bottom: 12px;
}
.lk-tr-classrow {
    background: #fff; border: 1px solid #e7e2d6; border-radius: 10px;
    padding: 12px 14px; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.lk-tr-classrow .lk-cls-name {
    font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: #1C2A44;
}
.lk-tr-classrow .lk-cls-dur { font-size: 12px; color: #9aa3af; }
.lk-tr-pick {
    border: none; background: #984040; color: #fff;
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
    padding: 7px 14px; border-radius: 7px; cursor: pointer; white-space: nowrap;
}
.lk-tr-pick:hover { background: #7e3535; }

/* signup form */
.lk-tr-back {
    border: none; background: transparent; color: #2E4F80;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px; cursor: pointer; padding: 0 0 10px;
}
.lk-tr-signup-class {
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
    color: #1C2A44; margin-bottom: 14px;
}
.lk-tr-field {
    display: block; font-size: 12px; color: #6b7280; margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}
.lk-tr-field input {
    display: block; width: 100%; margin-top: 4px;
    padding: 9px 11px; font-size: 14px;
    border: 1px solid #d9d4c8; border-radius: 7px;
    background: #fff; box-sizing: border-box;
}
.lk-tr-field input:focus { outline: none; border-color: #2E4F80; }
.lk-tr-recaptcha { margin: 6px 0 10px; }
.lk-tr-err { color: #c0392b; font-size: 12.5px; min-height: 16px; margin-bottom: 8px; }
.lk-tr-submit {
    width: 100%; border: none; background: #984040; color: #fff;
    font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 15px;
    padding: 11px; border-radius: 8px; cursor: pointer;
}
.lk-tr-submit:hover { background: #7e3535; }
.lk-tr-submit:disabled { background: #c9aeae; cursor: not-allowed; }

/* confirmation */
.lk-tr-done {
    text-align: center; padding: 24px 6px;
    font-family: 'Open Sans', sans-serif; color: #1C2A44; line-height: 1.5;
}

@media (max-width: 680px) {
    .lk-tr-body { grid-template-columns: 1fr; }
    .lk-tr-side { max-height: none; }
}

/* ===== Sign In page (dark theme, matches the app sign-in) ===== */
.lk-si-page {
    min-height: 100vh;
    background: #2c2f31;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    box-sizing: border-box;
}
.lk-si-card {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.lk-si-home { text-align: center; margin-top: 18px; }
.lk-si-home a {
    font-family: 'Open Sans', sans-serif; font-size: 12px;
    color: #ffffff; text-decoration: none;
}
.lk-si-home a:hover { color: #ffffff; text-decoration: underline; }
.lk-si-logo { text-align: center; }
.lk-si-logo img { width: 188px; height: auto; display: inline-block; }
.lk-si-sub {
    font-family: 'Open Sans', sans-serif; text-transform: uppercase;
    letter-spacing: 4px; font-size: 12px; font-weight: 400; color: #8e9296;
    text-align: center; margin: 19px 0 24px;
}
.lk-si-title {
    font-family: 'Manrope', sans-serif; font-weight: 700;
    font-size: 20px; color: #e6e8ea; margin: 0 0 16px; text-align: center;
}

/* dark-theme overrides scoped to the sign-in modal only */
.lk-si-page .lk-tr-field {
    text-transform: uppercase; letter-spacing: .06em;
    font-size: 11.5px; font-weight: 600; color: #9aa0a4;
}
.lk-si-page .lk-tr-field input {
    background: #34383b; border: 1px solid #474b4f; color: #f2f3f4;
    font-size: 16px; padding: 12px 13px; margin-top: 6px; border-radius: 6px;
    text-transform: none; letter-spacing: normal;
}
.lk-si-page .lk-tr-field input:focus { border-color: #5a86cf; }
.lk-si-page .lk-tr-submit {
    background: #62bfe9; font-size: 17px; font-weight: 700; padding: 14px;
    margin-top: 6px; border-radius: 4px;
}
.lk-si-page .lk-tr-submit:hover { background: #45acdb; }
.lk-si-page .lk-tr-submit:disabled { background: #3f4853; cursor: not-allowed; }
.lk-si-page .lk-tr-close { color: #7d828a; }
.lk-si-page .lk-tr-close:hover { color: #e6e8ea; }
.lk-si-page .lk-tr-back { color: #7ea3df; }
.lk-si-page .lk-tr-err { color: #ff8080; }
.lk-si-page .lk-tr-done { color: #e6e8ea; }

.lk-si-links { text-align: center; margin-top: 16px; }
.lk-si-links a {
    font-family: 'Open Sans', sans-serif; font-size: 13px;
    color: #7ea3df; text-decoration: none; cursor: pointer;
}
.lk-si-links a:hover { text-decoration: underline; }
.lk-si-legal {
    font-family: 'Open Sans', sans-serif; font-size: 11.5px; color: #83878b;
    text-align: center; margin-top: 20px; line-height: 1.6;
}
.lk-si-legal a { color: #9aa0a8; }
.lk-si-ip {
    font-family: 'Open Sans', sans-serif; font-size: 11px; color: #565b62;
    text-align: center; margin-top: 10px;
}
.lk-si-resettext {
    font-family: 'Open Sans', sans-serif; font-size: 13px; color: #9aa0a8;
    text-align: center; margin: 0 0 16px;
}

/* ===== Schedule Training page (dark, matches Sign In) ===== */
.lk-tr-page {
    min-height: 100vh;
    background: #2c2f31;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 20px;
    box-sizing: border-box;
}
.lk-tr-card { width: 100%; max-width: 860px; }
.lk-tr-pagelead {
    font-family: 'Open Sans', sans-serif; font-size: 14px;
    color: #9aa0a4; text-align: center; margin: 0 0 26px;
}

.lk-tr-page .lk-tr-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #212429;
    border: 1px solid #3a3e41;
    border-radius: 12px;
    overflow: hidden;
}

/* calendar */
.lk-tr-page .lk-tr-cal { padding: 18px 22px 22px; }
.lk-tr-page .lk-cal-label { color: #e6e8ea; }
.lk-tr-page .lk-cal-nav { background: #2a2e34; border-color: #474b4f; color: #62bfe9; }
.lk-tr-page .lk-cal-nav:hover { background: #34383b; }
.lk-tr-page .lk-cal-dow span { color: #7d828a; }
.lk-tr-page .lk-cal-cell { color: #6a6f77; }
.lk-tr-page .lk-cal-cell.lk-cur { color: #cfd3d8; }
.lk-tr-page .lk-cal-cell.lk-has { background: rgba(98,191,233,0.14); color: #62bfe9; font-weight: 700; }
.lk-tr-page .lk-cal-cell.lk-has:hover { background: #62bfe9; color: #ffffff; }
.lk-tr-page .lk-cal-cell.lk-has::after { background: #62bfe9; }
.lk-tr-page .lk-cal-cell.lk-has:hover::after { background: #ffffff; }
.lk-tr-page .lk-cal-cell.lk-sel { background: #62bfe9; color: #ffffff; }
.lk-tr-page .lk-cal-cell.lk-sel::after { background: #ffffff; }
.lk-tr-page .lk-cal-hint { color: #7d828a; }

/* right side */
.lk-tr-page .lk-tr-side {
    background: #262a2e;
    border-left: 1px solid #3a3e41;
    max-height: 470px;
}
.lk-tr-page .lk-tr-empty { color: #8a8f96; }
.lk-tr-page .lk-tr-dayttl { color: #e6e8ea; }
.lk-tr-page .lk-tr-classrow { background: #34383b; border-color: #474b4f; }
.lk-tr-page .lk-tr-classrow .lk-cls-name { color: #e6e8ea; }
.lk-tr-page .lk-tr-classrow .lk-cls-dur { color: #8a8f96; }
.lk-tr-page .lk-tr-pick { background: #62bfe9; color: #ffffff; }
.lk-tr-page .lk-tr-pick:hover { background: #45acdb; }
.lk-tr-page .lk-tr-back { color: #62bfe9; }
.lk-tr-page .lk-tr-signup-class { color: #e6e8ea; }

/* signup form */
.lk-tr-page .lk-tr-field {
    text-transform: uppercase; letter-spacing: .06em;
    font-size: 11.5px; font-weight: 600; color: #9aa0a4;
}
.lk-tr-page .lk-tr-field input {
    background: #34383b; border: 1px solid #474b4f; color: #f2f3f4;
    text-transform: none; letter-spacing: normal;
}
.lk-tr-page .lk-tr-field input:focus { border-color: #62bfe9; }
.lk-tr-page .lk-tr-submit { background: #62bfe9; border-radius: 4px; }
.lk-tr-page .lk-tr-submit:hover { background: #45acdb; }
.lk-tr-page .lk-tr-submit:disabled { background: #3f4853; color: #8a8f96; }
.lk-tr-page .lk-tr-err { color: #ff8080; }
.lk-tr-page .lk-tr-done { color: #e6e8ea; }

@media (max-width: 680px) {
    .lk-tr-page .lk-tr-body { grid-template-columns: 1fr; }
    .lk-tr-page .lk-tr-side { max-height: none; border-left: none; border-top: 1px solid #3a3e41; }
}

@media (max-width: 991px) {
    .lk-usage { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
}

@media (max-width: 760px) {
    .lk-price-list { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .lk-usage { grid-template-columns: 1fr; max-width: 360px; }
}

/* ====== WORK ORDER SHOWCASE ====== */
.lk-wo-section {
    background-color: #FCFCFC;
    padding: 92px 48px;
}

.lk-wo-head {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.lk-wo-layout {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 380px) 1fr;
    gap: 44px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.lk-wo-art svg {
    width: 100%;
    height: auto;
    display: block;
}

.lk-wo-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lk-wo-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lk-wo-ic {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(9,16,28,0.14);
}

    .lk-wo-ic svg {
        width: 20px;
        height: 20px;
        display: block;
    }

.lk-wo-ft {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1C2A44;
    margin-bottom: 3px;
}

.lk-wo-fd {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #5A5A58;
}

@media (max-width: 980px) {
    .lk-wo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 460px;
    }

    .lk-wo-art {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
    }
}

.lk-fs-close {
    max-width: 720px;
    margin: 52px auto 0;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    line-height: 1.5;
    color: #1C1917;
}

    .lk-fs-close strong {
        color: #984040;
    }

@media (max-width: 600px) {
    .lk-feature-section { padding: 60px 24px; }
    .lk-fs-title { font-size: 30px; }
    .lk-fs-lead { font-size: 16px; }
    .lk-fs-shot { height: 200px; }
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    color: #333;
    background-color: var(--lankar-white);
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ====== ANNOUNCEMENT BAR ====== */
/* announcement bar + header pinned together; page content scrolls underneath */
.lk-sticky-top {
    position: sticky;
    top: 0;
    z-index: 1001;
}

.lk-announce-bar {
    background-color: #3e3e3e;
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

.lk-announce-btn {
    background-color: #2196F3;
    color: #ffffff;
    border: 1px solid #2196F3;
    border-radius: 6px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

    .lk-announce-btn:hover {
        background-color: #1976D2;
        border-color: #1976D2;
        color: #ffffff;
    }

.lk-announce-btn-alt {
    background-color: transparent;
    border-color: rgba(255,255,255,0.55);
    color: #ffffff;
}

    .lk-announce-btn-alt:hover {
        background-color: #ffffff;
        border-color: #ffffff;
        color: #1C1917;
    }

.lk-top-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #FFD60A;
    color: #1C1917;
    box-shadow: 0 2px 7px rgba(0,0,0,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

    .lk-top-btn svg {
        width: 16px;
        height: 16px;
        display: block;
    }

    .lk-top-btn:hover {
        background: #FFC400;
    }

    .lk-top-btn.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

@media (max-width: 767px) {
    .lk-announce-bar {
        font-size: 14px;
        padding: 8px 12px;
        gap: 10px;
    }

    .lk-announce-btn {
        font-size: 13px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .lk-announce-bar {
        font-size: 12px;
        padding: 7px 10px;
        gap: 8px;
    }

    .lk-announce-btn {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* ====== HEADER ====== */
.lk-header {
    background-color: #f6f6f6;
    position: relative;
    z-index: 1000;
}

.lk-nav-inner {
    padding: 0 24px;
    min-height: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.lk-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    line-height: 1;
}

    .lk-logo img {
        height: 34px;
        width: auto;
    }

.lk-logo-est {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #5A5A58;
    letter-spacing: 0.3px;
    margin-top: 4px;
    padding-right: 5px;
    text-align: right;
    font-style: normal;
}

.lk-nav-links {
    margin-left: 15px;
    margin-top: -5px;
    gap: 10px;
}

    .lk-nav-links .nav-link {
        color: #333333;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 14px;
        transition: color 0.2s;
    }

        .lk-nav-links .nav-link:hover,
        .lk-nav-links .nav-link:focus {
            color: #c94746;
        }

.lk-dropdown {
    background-color: var(--lankar-navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 0;
    min-width: 160px;
}

    .lk-dropdown .dropdown-item {
        color: rgba(255,255,255,0.75);
        font-size: 14px;
        padding: 8px 16px;
        transition: background 0.15s, color 0.15s;
    }

        .lk-dropdown .dropdown-item:hover {
            background-color: rgba(255,255,255,0.08);
            color: #ffffff;
        }

.lk-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.lk-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2E4F80;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

    .lk-phone:hover {
        color: #984040;
    }

.lk-btn-signin {
    color: #3ea1ca;
    border: 1px solid #3ea1ca;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 18px;
    transition: background 0.2s, border-color 0.2s;
}

    .lk-btn-signin:hover {
        background-color: #3ea1ca;
        color: #ffffff;
        border-color: #3ea1ca;
    }

.lk-btn-signup {
    background-color: #3ea1ca;
    color: #ffffff;
    border: 1px solid #3ea1ca;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 18px;
    transition: background 0.2s;
}

    .lk-btn-signup:hover {
        background-color: #3590b5;
        color: #ffffff;
    }

.lk-toggler {
    border: 1px solid rgba(46,79,128,0.30);
    border-radius: 8px;
    padding: 7px 10px;
    transition: border-color 0.2s, background 0.2s;
}

    .lk-toggler:hover {
        background-color: rgba(46,79,128,0.06);
    }

    .lk-toggler:focus {
        box-shadow: 0 0 0 3px rgba(62,161,202,0.35);
        outline: none;
    }

    .lk-toggler .navbar-toggler-icon {
        width: 26px;
        height: 26px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232E4F80' stroke-width='2.4' stroke-linecap='round' d='M5 8h20M5 15h20M5 22h20'/%3e%3c/svg%3e");
    }

@media (max-width: 991px) {
    .lk-nav-inner {
        padding: 0 16px;
        min-height: 60px;
    }

    /* Mobile dropdown: clean light panel matching the header */
    #lkNavMenu {
        background-color: #ffffff;
        margin-top: 10px;
        padding: 6px 0 10px;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 12px;
        box-shadow: 0 14px 30px rgba(9,16,28,0.12);
        overflow: hidden;
    }

    .lk-nav-links {
        margin: 0;
        gap: 0;
    }

        .lk-nav-links .nav-item {
            margin-left: 0 !important;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .lk-nav-links .nav-link {
            color: #222222;
            font-size: 16px;
            font-weight: 500;
            padding: 14px 20px;
        }

            .lk-nav-links .nav-link:hover,
            .lk-nav-links .nav-link:focus {
                color: #c94746;
                background-color: rgba(201,71,70,0.06);
            }

    .lk-nav-right {
        flex-wrap: wrap;
        align-items: stretch;
        padding: 14px 20px 4px;
        gap: 12px;
    }

    .lk-phone {
        width: 100%;
        justify-content: center;
        font-size: 17px;
        font-weight: 600;
        padding: 4px 0 2px;
    }

    .lk-btn-signin,
    .lk-btn-signup {
        flex: 1;
        text-align: center;
        padding: 12px 18px;
        font-size: 15px;
    }
}

/* ====== HERO SECTION ====== */
.lk-hero {
    background-color: #EAEAE9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 74px;
    padding: 150px 48px;
}

/* hero top row: text + photo */
.lk-hero-top {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 56px;
    width: 100%;
    max-width: 1140px;
}

.lk-hero-art {
    flex: 0 1 380px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lk-hero-art svg {
        width: 100%;
        height: auto;
        display: block;
    }

/* ===== Full-bleed split hero ===== */
.lk-hero.lk-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 540px;
    overflow: hidden;
}

.lk-hero-photo-col {
    position: relative;
    overflow: hidden;
}

    .lk-hero-photo-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* soft seam: the photo's inner edge melts into the cream text side */
    .lk-hero-photo-col::after {
        content: '';
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        width: 120px;
        background: linear-gradient(to right, rgba(252,252,252,0), #FCFCFC 96%);
        pointer-events: none;
    }

    /* soft top edge: the photo dissolves into the background like the bottom */
    .lk-hero-photo-col::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        height: 110px;
        background: linear-gradient(to bottom, #FCFCFC, rgba(252,252,252,0));
        pointer-events: none;
        z-index: 1;
    }

.lk-hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 60px;
}

    .lk-hero-text-col .lk-stmt-line {
        font-size: clamp(47px, 5.35vw, 75px);
    }

    .lk-hero-text-col .lk-hero-descriptor {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.6px;
        word-spacing: 3px;
        color: #3b4047;
        line-height: 1.4;
        margin: 18px 0 0;
        max-width: none;
        white-space: nowrap;
    }

    .lk-hero-text-col .lk-testdrive-wrap {
        margin-top: 34px;
    }

@media (max-width: 900px) {
    .lk-hero.lk-hero-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .lk-hero-photo-col { height: 240px; }

    .lk-hero-photo-col::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: -1px;
        width: auto;
        height: 90px;
        background: linear-gradient(to bottom, rgba(252,252,252,0), #FCFCFC 96%);
    }

    .lk-hero-photo-col::before { height: 60px; }

    .lk-hero-text-col { padding: 26px 22px 40px; }
    .lk-hero-text-col .lk-stmt-line { font-size: 44px; }
    .lk-hero-text-col .lk-hero-descriptor { font-size: clamp(11px, 3.4vw, 15px); white-space: nowrap; max-width: none; word-spacing: 2px; letter-spacing: 0.3px; }
    .lk-nowrap-lg { white-space: normal; }
}

/* keep these headlines on one line only on larger screens */
@media (min-width: 901px) {
    .lk-nowrap-lg { white-space: nowrap; }
}

.lk-hero-statement {
    position: relative;
    flex: 1 1 520px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid #d6d0c2;
    padding-left: 48px;
}

    .lk-hero-statement .lk-testdrive-wrap {
        margin-top: 36px;
    }

    .lk-hero-h1 {
        margin: 0;
        padding: 0;
        font-weight: inherit;
    }

    .lk-visually-hidden {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .lk-stmt-line {
        display: block;
        font-size: 70px;
        font-weight: 800;
        line-height: 1.02;
        letter-spacing: -1.5px;
        color: var(--lankar-navy);
        white-space: nowrap;
    }

    .lk-stmt-accent {
        color: #5694f0;
    }

/* line-art shop scene: draws in on load, then fades + collapses */
.lk-bay-anim {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 91px;
    width: 100%;
    max-width: 540px;
    pointer-events: none;
    animation: lkBayFade 10s linear forwards;
}

    .lk-bay-anim svg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* EVERYTHING (lifts + cars) draws itself in over the first ~2.2s */
    .lk-bay-anim path,
    .lk-bay-anim line,
    .lk-bay-anim rect,
    .lk-bay-anim circle,
    .lk-bay-anim ellipse {
        stroke-dasharray: 720;
        stroke-dashoffset: 720;
        animation: lkDraw 4.43s ease forwards;
    }

    /* cars hold still while everything draws, then move slowly */
    .lk-car-lift-a {
        animation: lkRiseSeq 10s linear forwards;
    }

    .lk-car-lift-b {
        animation: lkLowerSeq 10s linear forwards;
    }

    .lk-car-lift-c {
        animation: lkRiseSeq 10s linear forwards;
    }

    /* line-art draws in navy, then settles to light gray at the end */
    .lk-art {
        animation: lkArtColor 10s linear forwards;
    }

@keyframes lkArtColor {
    0%   { stroke: #2E4F80; }
    54%  { stroke: #2E4F80; }
    60%  { stroke: #c2c5ca; }
    100% { stroke: #c2c5ca; }
}

@keyframes lkDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes lkRiseSeq {
    0%   { transform: translateY(34px); }
    38%  { transform: translateY(34px); }
    54%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

@keyframes lkLowerSeq {
    0%   { transform: translateY(0); }
    38%  { transform: translateY(0); }
    54%  { transform: translateY(34px); }
    100% { transform: translateY(34px); }
}

@keyframes lkBayFade {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .lk-bay-anim { display: none; }
    .lk-hero-cards { animation: none; opacity: 1; filter: none; }
    .lk-card { animation: none; opacity: 1; filter: none; }
}

@media (max-width: 900px) {
    .lk-stmt-line {
        font-size: 44px;
        white-space: normal;
    }
}

.lk-hero-photo {
    flex: 1 1 520px;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

    .lk-hero-photo img {
        width: 100%;
        height: auto;
        border-radius: 14px;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
                mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
    }

/* hero bottom: feature cards */
/* ====== ROW 4: FEATURE TILES (white) ====== */
.lk-cards-row {
    background-color: #EAEAE9;
    display: flex;
    justify-content: center;
    padding: 4px 40px 24px;
}

.lk-hero-cards {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1360px;
}

/* tiles sit dimmed, then un-dim one by one, left to right, after the line art */
@keyframes lkCardUndim {
    0%   { opacity: 0.62; filter: saturate(0.55) brightness(1.08); }
    100% { opacity: 1; filter: saturate(1) brightness(1); }
}

@keyframes lkKeySweep {
    0%   { transform: translateY(0);   background-color: rgba(17,24,39,0);    box-shadow: 0 0 0 rgba(0,0,0,0); }
    35%  { transform: translateY(-9px); background-color: rgba(17,24,39,0.08); box-shadow: 0 12px 26px rgba(9,16,28,0.12); }
    70%  { transform: translateY(0);   background-color: rgba(17,24,39,0.02); box-shadow: 0 0 0 rgba(0,0,0,0); }
    100% { transform: translateY(0);   background-color: rgba(17,24,39,0);    box-shadow: 0 0 0 rgba(0,0,0,0); }
}

.lk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 11px;
    padding: 26px 18px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    animation: lkKeySweep 0.54s ease backwards;
}

    .lk-card:nth-child(1) { animation-delay: 0.36s; }
    .lk-card:nth-child(2) { animation-delay: 0.47s; }
    .lk-card:nth-child(3) { animation-delay: 0.58s; }
    .lk-card:nth-child(4) { animation-delay: 0.68s; }
    .lk-card:nth-child(5) { animation-delay: 0.79s; }
    .lk-card:nth-child(6) { animation-delay: 0.90s; }
    .lk-card:nth-child(7) { animation-delay: 1.01s; }
    .lk-card:nth-child(8) { animation-delay: 1.12s; }

    .lk-card:not(:last-child) {
        border-right: 1px solid #cfcfca;
    }

    .lk-card:hover {
        transform: translateY(-4px);
        background: rgba(17,24,39,0.05);
        box-shadow: 0 10px 24px rgba(9,16,28,0.08);
    }

    .lk-card:hover .lk-card-icon {
        transform: scale(1.06);
        transition: transform 0.18s ease;
    }

.lk-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(9,16,28,0.14);
}

    .lk-card-icon svg {
        width: 30px;
        height: 30px;
        display: block;
        stroke-width: 1.7;
    }

.lk-card-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--lankar-navy);
    line-height: 1.2;
}

.lk-card-text {
    display: block;
    font-size: 15.5px;
    line-height: 1.35;
    color: #6b7785;
}

@media (max-width: 991px) {
    .lk-hero-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 640px;
    }
}

@media (max-width: 560px) {
    .lk-hero-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 380px;
    }
}

.lk-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
    z-index: 0;
}

.lk-hero-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

/* ====== HERO FEATURE DIAGRAM ====== */
.lk-hero-graphic {
    position: relative;
    z-index: 0;
    order: 1;
    flex: 1 1 560px;
    max-width: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .lk-hero-graphic svg {
        width: 100%;
        height: 100%;
        max-width: 680px;
        max-height: 560px;
    }

@media (max-width: 900px) {
    .lk-hero {
        padding: 36px 22px 44px;
        gap: 32px;
    }

    .lk-hero-top {
        flex-direction: column;
        gap: 28px;
    }

    .lk-hero-photo img {
        -webkit-mask-image: none;
                mask-image: none;
    }

    .lk-hero-statement {
        border-left: none;
        padding-left: 0;
    }

    .lk-hero-art {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
}

.lk-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: none;
    width: 100%;
    max-width: 1140px;
    padding: 0;
    background: transparent;
}

/* ====== HERO HEADING ====== */
.lk-hero-heading-top {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    width: fit-content;
    margin-bottom: 6px;
}

.lk-hero-heading-sub {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 33px;
    font-weight: 700;
    color: var(--lankar-navy);
    letter-spacing: -0.2px;
    line-height: 1.22;
    margin-bottom: 28px;
}

.lk-hero-logo {
    width: 282px;
    height: auto;
    max-width: 100%;
}

.lk-hero-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--lankar-navy);
    line-height: 1.2;
    margin-bottom: 0;
}

/* ====== HERO BULLET POINTS ====== */
.lk-hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.lk-hero-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lk-hero-bullet-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: var(--lankar-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .lk-hero-bullet-icon svg {
        width: 18px;
        height: 18px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.lk-hero-bullet-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--lankar-navy);
    line-height: 1.2;
}

.lk-hero-bullet-text span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    line-height: 1.4;
}

/* ====== TEST DRIVE BUTTON ====== */
.lk-testdrive-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.lk-testdrive-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(0,123,255,0.35) 0%, rgba(255,0,51,0.2) 50%, transparent 75%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#testDriveBtn {
    position: relative;
    z-index: 1;
    background: #1C2A44;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    border: 1.5px solid #1C2A44;
    border-radius: 6px;
    width: auto;
    height: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    padding: 10px 38px;
}

/* Mobile-only Book Demo button: matches the Test Drive button styling */
#bookDemoBtnMobile {
    display: none; /* hidden on desktop/tablet */
    position: relative;
    z-index: 1;
    background: #1C2A44;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    border: 1.5px solid #1C2A44;
    border-radius: 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    padding: 10px 38px;
}

    #bookDemoBtnMobile:hover {
        background: #2E4F80;
        border-color: #2E4F80;
    }

/* desktop test-drive hint, phones only */
.lk-testdrive-note {
    display: none;
    margin: 12px 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3b4047;
    line-height: 1.4;
    max-width: 320px;
}

@media (max-width: 600px) {
    #testDriveBtn { display: none; }
    #bookDemoBtnMobile { display: inline-flex; }
    .lk-testdrive-note { display: block; }
}

    #testDriveBtn:hover {
        background: #2E4F80;
        border-color: #2E4F80;
    }

        #testDriveBtn:hover .lk-td-label,
        #testDriveBtn:hover .lk-td-sub {
            color: #ffffff;
        }

.lk-td-flag {
    display: grid;
    grid-template-columns: repeat(4, 10px);
    grid-template-rows: repeat(4, 10px);
    flex-shrink: 0;
}

    .lk-td-flag span {
        display: block;
        width: 10px;
        height: 10px;
    }

.lk-td-label {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    color: #ffffff;
}

.lk-td-sub {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .lk-hero-content {
        max-width: 560px;
        flex: 1 1 auto;
    }

    .lk-hero-heading-sub {
        font-size: 26px;
    }
}

/* ====== RACING STRIPE DIVIDER ====== */
.lk-stripe-divider {
    width: 100%;
    height: 8px;
    display: flex;
}

    .lk-stripe-divider span:nth-child(1) {
        flex: 2;
        background-color: var(--lankar-navy);
    }

    .lk-stripe-divider span:nth-child(2) {
        flex: 1;
        background-color: #ffffff;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .lk-stripe-divider span:nth-child(3) {
        flex: 2;
        background-color: var(--lankar-red);
    }

/* ====== HERO FEATURES ====== */
.lk-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.lk-hero-feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background-color: var(--lankar-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

    .lk-hero-feature-icon svg {
        width: 100%;
        height: 100%;
        stroke: #ffffff;
    }

.lk-hero-feature strong {
    display: block;
    font-size: 15px;
    color: var(--lankar-navy);
    margin-bottom: 4px;
}

.lk-hero-feature p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   COLOR-PALETTE TRIAL  —  "Warm Charcoal + Amber"
   To revert to the original colors, delete everything from this
   marker down to the matching END marker.
   =================================================================== */
.lk-announce-bar { background-color: #1C1917; color: #FCFCFC; }
.lk-header { background-color: #FCFCFC; }
.lk-announce-btn { background-color: #2196F3; border-color: #2196F3; color: #ffffff; }
    .lk-announce-btn:hover { background-color: #1976D2; border-color: #1976D2; color: #ffffff; }
.lk-announce-btn-alt { background-color: transparent; border-color: rgba(255,255,255,0.55); color: #ffffff; }
    .lk-announce-btn-alt:hover { background-color: #ffffff; border-color: #ffffff; color: #1C1917; }

.lk-hero { background-color: #FCFCFC; }
.lk-cards-row { background-color: #FCFCFC; }

.lk-hero-heading-sub { color: #1C1917; }
.lk-hero-heading { color: #1C1917; }
.lk-stmt-line { color: #1C1917; }
.lk-stmt-accent { color: #5694f0; }

#testDriveBtn { background: #1C2A44; }

.lk-btn-signup { background-color: #2196F3; border-color: #2196F3; color: #ffffff; }
    .lk-btn-signup:hover { background-color: #1976D2; border-color: #1976D2; }
.lk-btn-signin { color: #1C2A44; border-color: #1C2A44; }
    .lk-btn-signin:hover { background-color: #1C2A44; border-color: #1C2A44; color: #ffffff; }

.lk-card:not(:last-child) { border-right-color: #e6dcc7; }
/* ===================================================================
   END COLOR-PALETTE TRIAL
   =================================================================== */

/* ===================================================================
   SITE FOOTER (dark)
   =================================================================== */
.lk-footer {
    background: #14181c;
    color: #aeb4bb;
    padding: 56px 24px 0;
    font-family: 'Open Sans', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lk-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.lk-footer-brand { max-width: 340px; }

    .lk-footer-logo img {
        height: 34px;
        width: auto;
        display: block;
        margin-bottom: 16px;
    }

.lk-footer-tag {
    font-size: 14px;
    line-height: 1.6;
    color: #868d94;
    margin: 0 0 18px;
}

.lk-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e6e8ea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

    .lk-footer-phone:hover { color: #fff; }

.lk-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

    .lk-footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: #e6e8ea;
        transition: background 0.15s ease, color 0.15s ease;
    }

        .lk-footer-social a:hover { background: rgba(255,255,255,0.18); color: #fff; }

.lk-si-social {
    justify-content: center;
    margin-top: 20px;
}

.lk-footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}

.lk-footer-col {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 130px;
}

.lk-footer-h {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

    .lk-footer-col a {
        color: #9aa0a6;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.15s ease;
    }

        .lk-footer-col a:hover { color: #fff; }

.lk-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: #6c7378;
}

@media (max-width: 720px) {
    .lk-footer { padding-top: 40px; }
    .lk-footer-inner { flex-direction: column; gap: 32px; }
    .lk-footer-cols { gap: 36px; }
    .lk-footer-bottom { flex-direction: column; gap: 6px; }
}

/* ====== PHONE POLISH (<= 560 / <= 480): reclaim edge space, bigger touch
   targets, tidier card titles. Desktop/tablet layout unaffected. ====== */
@media (max-width: 560px) {
    /* Product cards sit 2-up here; tighten so titles stop wrapping hard */
    .lk-card {
        padding: 22px 10px;
        gap: 9px;
    }

    .lk-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Reclaim wasted side padding so content runs closer to the screen edges */
    .lk-cards-row {
        padding: 4px 14px 20px;
    }

    .lk-feature-section {
        padding: 48px 18px;
    }

    .lk-wo-section {
        padding: 52px 18px;
    }

    .lk-pricing-section {
        padding: 52px 18px;
    }

    .lk-price-card {
        padding: 34px 22px 30px;
    }

    .lk-hero-text-col {
        padding: 24px 18px 36px;
    }

    /* Comfortable thumb-sized pricing button (~46px tall) */
    .lk-price-cta {
        padding: 14px 38px;
        font-size: 16px;
    }
}

/* ===================================================================
   HERO: "works like Windows" blurb under the Test Drive button
   =================================================================== */
.lk-hero-figs {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 28px;
}

.lk-hero-windows {
    max-width: 197px;
}

    .lk-hero-windows-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .lk-hero-windows-tag {
        margin: 12px 0 0;
        font-size: 14px;
        font-weight: 500;
        color: #8a8a88;
        line-height: 1.35;
        text-align: center;
    }

/* Clickable hero graphics -> jump to their feature section */
.lk-hero-windows-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 12px;
    padding: 6px;
    margin: -6px;
    transition: transform 0.18s ease;
}

    .lk-hero-windows-link .lk-hero-windows-img {
        transition: filter 0.18s ease;
    }

    .lk-hero-windows-link:hover {
        transform: translateY(-4px);
    }

        .lk-hero-windows-link:hover .lk-hero-windows-img {
            filter: drop-shadow(0 10px 18px rgba(9,16,28,0.16));
        }

    .lk-hero-windows-link:focus-visible {
        outline: 2px solid #2E4F80;
        outline-offset: 3px;
    }

@media (max-width: 900px) {
    .lk-hero-figs { margin-top: 22px; gap: 20px; }
    .lk-hero-windows { max-width: 187px; }
}

/* ===================================================================
   Feature section: image + bullet list side by side (accounting)
   =================================================================== */
.lk-fs-art-split {
    max-width: 880px;
    display: flex;
    align-items: center;
    gap: 44px;
    text-align: left;
}

    .lk-fs-art-split .lk-fs-art-figure {
        flex: 0 1 420px;
        min-width: 0;
    }

.lk-fs-points {
    flex: 1 1 280px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .lk-fs-points li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .lk-fs-point-ic {
        flex: 0 0 auto;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #e6f6ec;
        color: #2CA01C;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        margin-top: 1px;
    }

    .lk-fs-point-txt {
        display: flex;
        flex-direction: column;
        font-size: 13.5px;
        color: #6b6f76;
        line-height: 1.42;
    }

        .lk-fs-point-txt strong {
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #1C2A44;
            line-height: 1.25;
            margin-bottom: 2px;
        }

@media (max-width: 760px) {
    .lk-fs-art-split {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }

        .lk-fs-art-split .lk-fs-art-figure {
            flex: 0 1 auto;
            width: 100%;
            max-width: 420px;
        }

    .lk-fs-points {
        flex: 0 1 auto;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        align-self: stretch;
        text-align: left;
    }
}
