:root {
    --bg: #eef1f5;
    --surface: #ffffff;
    --surface-2: #f6f8fb;
    --surface-3: #edf1f6;
    --text: #1a1d2e;
    --text-soft: #555b72;
    --text-muted: #8a90a4;
    --border: #d5dbe5;
    --border-soft: #e7ebf1;
    --dark: #1e2332;
    --dark-2: #252a3a;
    --dark-3: #2d3347;
    --accent: #3d5a8a;
    --accent-light: #e8edf5;
    --white: #ffffff;
    --shadow: 0 12px 28px rgba(30, 35, 50, 0.08);
    --shadow-soft: 0 8px 20px rgba(30, 35, 50, 0.05);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-pill: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    background: var(--bg);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* Main shell */
.container.ls-theme-shell {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background: transparent;
    padding: 0 32px 40px;
    border-radius: 0;
    box-shadow: none;
}

/* Topbar */
.ls-topbar {
    margin-bottom: 0;
    padding: 14px 0 10px;
    border-bottom: 1px solid rgba(26, 29, 46, 0.08);
}

.ls-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ls-topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
}

/* Header */
.ls-header {
    margin-bottom: 28px;
    padding: 18px 0 0;
}

.ls-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.ls-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.ls-logo-img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.ls-logo-fallback {
    display: none;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
}

.ls-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ls-nav a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
}

.ls-nav a:hover {
    color: var(--text);
    background: rgba(61, 90, 138, 0.08);
}

.ls-nav a.ls-nav-active {
    background: var(--dark);
    color: var(--white) !important;
    font-weight: 700;
}

/* Buttons */
.btn {
    width: fit-content;
    background: var(--white);
    color: var(--dark);
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-1px);
    background: #f7f7f8;
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-ghost,
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-ghost:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero homepage */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #1e2332 0%, #2d3347 100%);
    margin: 0 auto 36px;
    min-height: 560px;
    max-width: 1280px;
    box-shadow: 0 16px 32px rgba(30, 35, 50, 0.16);
}

.hero-left {
    position: relative;
    background: #d9dde5;
}

.hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: 56px 54px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, rgba(30, 35, 50, 0.15) 0%, rgba(30, 35, 50, 0.98) 100%);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 0.98;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    max-width: 560px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
    font-size: 16px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tags {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(0, 0, 0, 0.26);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 40px;
    max-width: 1280px;
}

.card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    color: var(--white);
    min-height: 280px;
    background: var(--dark);
    box-shadow: 0 12px 30px rgba(30, 35, 50, 0.10);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.08));
}

.card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
}

a.card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Footer */
.ls-footer {
    margin: 46px auto 0;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 1280px;
    box-shadow: 0 16px 30px rgba(30, 35, 50, 0.18);
}

.ls-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    padding: 38px 34px;
    align-items: start;
}

.ls-footer-grid h4 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ls-footer-grid h4 span,
.ls-footer-grid h4 .dot {
    color: #cfcfcf;
}

.ls-footer-grid p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

.ls-footer-grid a {
    text-decoration: underline;
}

.ls-footer-contactcol {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.ls-footer-logo-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 26px;
}

.ls-footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
}

.ls-footer-bottom {
    background: #000000;
}

.ls-footer-bottom-inner {
    min-height: 58px;
    padding: 0 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ls-footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.ls-footer-copy a {
    font-weight: 700;
    color: var(--white);
    text-decoration: underline;
}

.ls-footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ls-social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.2s ease;
}

.ls-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ls-social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    display: block;
}

/* Alerts */
.ls-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto 20px;
    max-width: 1280px;
}

.ls-alert svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ls-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.ls-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 54px;
    margin: 0 auto 36px;
    color: var(--white);
    max-width: 1280px;
    box-shadow: 0 16px 32px rgba(30, 35, 50, 0.16);
}

.page-hero-sm {
    padding: 46px 48px;
}

.page-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.page-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.page-hero-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.page-hero-badge,
.page-hero-text h1,
.page-hero-text p {
    margin: 0;
}

.page-hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    max-width: 760px;
}

.page-hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    max-width: 720px;
}

.page-hero-text .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-hero-visual {
    flex-shrink: 0;
}

.page-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 18px 28px;
    text-align: center;
    min-width: 160px;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* Homepage updates */
.howit {
    background: var(--surface);
    border-radius: 24px;
    padding: 38px 34px;
    margin: 0 auto 36px;
    border: 1px solid var(--border-soft);
    max-width: 1280px;
    box-shadow: var(--shadow-soft);
}

.howit-header {
    margin-bottom: 28px;
}

.howit-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.howit-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.howit-steps {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.howit-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.howit-num {
    width: 36px;
    height: 36px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.howit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.howit-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.howit-text span {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

.howit-arrow {
    font-size: 20px;
    color: var(--border);
    padding-top: 8px;
    flex-shrink: 0;
}

/* Leasecalculator page intro */
.lc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto 24px;
}

.lc-info-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.lc-info-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lc-info-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.15;
}

.lc-info-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.lc-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin: 0;
}

.lc-info-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 500;
}

.lc-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.2;
}

.lc-intro-block {
    display: grid;
    grid-template-columns: 1.4fr 0.85fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto 34px;
}

.lc-intro-text {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.lc-intro-help,
.lc-help-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(30, 35, 50, 0.16);
}

.lc-help-mini-title,
.lc-help-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.lc-intro-help p,
.lc-help-box p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 8px;
}

.lc-intro-help p:last-child,
.lc-help-box p:last-child {
    margin-bottom: 0;
}

.lc-intro-help a,
.lc-help-box a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

/* Leasecalculator section */
.lc-section {
    margin-top: 0;
    scroll-margin-top: 90px;
}

.lc-section-header {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 760px;
}

.lc-section-badge {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.lc-section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    color: var(--dark);
}

.lc-section-sub {
    color: var(--text-soft);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.lc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.lc-form-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 34px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 26px rgba(30, 35, 50, 0.05);
}

.lc-group {
    margin-bottom: 28px;
}

.lc-group-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lc-optional {
    font-weight: 400;
    text-transform: none;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0;
}

.lc-step {
    width: 24px;
    height: 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.lc-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lc-fields-3col {
    grid-template-columns: repeat(3, 1fr);
}

.lc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lc-field-full {
    grid-column: 1 / -1;
}

.lc-mt-12 {
    margin-top: 12px;
}

.lc-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lc-input,
.lc-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 14px;
    color: var(--text);
    width: 100%;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.lc-input::placeholder {
    color: var(--text-muted);
}

.lc-input:focus,
.lc-select:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.lc-input.is-invalid,
.lc-select.is-invalid {
    border-color: #ef4444;
}

.lc-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 2px;
}

.lc-input-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.lc-input-prefix span {
    position: absolute;
    left: 13px;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    font-weight: 500;
}

.lc-input-prefix .lc-input {
    padding-left: 28px;
}

.lc-radio-group {
    display: flex;
    gap: 10px;
}

.lc-radio {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
    user-select: none;
}

.lc-radio input[type="radio"],
.lc-term input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lc-radio:hover {
    border-color: var(--dark);
}

.lc-radio:has(input:checked) {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.lc-term-group {
    display: flex;
    gap: 10px;
}

.lc-term {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.lc-term input[type="radio"] {
    display: none;
}

.lc-term:hover {
    border-color: var(--dark);
}

.lc-term:has(input:checked) {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.lc-term-num {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.lc-term-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.75;
}

.lc-btn-calc {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s ease, transform 0.1s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.lc-btn-calc svg {
    width: 18px;
    height: 18px;
}

.lc-btn-calc:hover {
    background: #2a2a2a;
}

.lc-btn-calc:active {
    transform: scale(0.99);
}

.lc-result-panel {
    position: sticky;
    top: 24px;
}

.lc-result-card {
    border-radius: 24px;
    overflow: hidden;
}

.lc-result-empty {
    background: var(--surface);
    border: 1.5px dashed var(--border);
    padding: 38px 30px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(30, 35, 50, 0.04);
}

.lc-empty-icon {
    width: 64px;
    height: 64px;
    background: var(--surface-3);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-empty-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

.lc-result-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lc-result-empty p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lc-usp-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-usp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
}

.lc-usp svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #16a34a;
}

.lc-result-active {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(30, 35, 50, 0.16);
}

.lc-result-header {
    padding: 24px 24px 0;
}

.lc-result-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lc-result-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.lc-result-amount {
    padding: 20px 24px 18px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lc-result-currency {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.lc-result-value {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
}

.lc-result-per {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 6px;
}

.lc-result-details {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-result-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.lc-result-row span {
    color: rgba(255, 255, 255, 0.6);
}

.lc-result-row strong {
    color: var(--white);
    font-weight: 600;
}

.lc-result-disclaimer {
    padding: 14px 24px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-quote-section {
    padding: 22px 24px 24px;
}

.lc-quote-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.lc-quote-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.lc-quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lc-result-active .lc-field label {
    color: rgba(255, 255, 255, 0.6);
}

.lc-result-active .lc-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.lc-result-active .lc-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.lc-result-active .lc-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.lc-btn-quote {
    width: 100%;
    background: var(--white);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s ease;
    font-family: inherit;
}

.lc-btn-quote svg {
    width: 16px;
    height: 16px;
}

.lc-btn-quote:hover {
    background: #f1f1f1;
}

/* Voor wie pagina */
.vw-section {
    margin: 0 auto 48px;
    max-width: 1280px;
}

.vw-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vw-section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 28px;
}

.vw-doelgroepen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vw-doel-card {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 30px 28px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.vw-doel-featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.vw-doel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.vw-doel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--surface-3);
}

.vw-doel-featured .vw-doel-icon {
    background: rgba(255, 255, 255, 0.12);
}

.vw-doel-icon svg {
    width: 26px;
    height: 26px;
    color: var(--dark);
}

.vw-doel-featured .vw-doel-icon svg {
    color: var(--white);
}

.vw-doel-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.vw-doel-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.vw-doel-featured p {
    color: rgba(255, 255, 255, 0.68);
}

.vw-doel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vw-doel-list li {
    font-size: 13px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    color: var(--text-soft);
}

.vw-doel-featured .vw-doel-list li {
    color: rgba(255, 255, 255, 0.72);
}

.vw-doel-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-size: 12px;
}

.vw-voordelen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.vw-voordeel {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
}

.vw-voordeel:nth-child(even) {
    border-right: none;
}

.vw-voordeel:nth-last-child(-n+2) {
    border-bottom: none;
}

.vw-voordeel-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--border);
    letter-spacing: -0.04em;
    line-height: 1;
    flex-shrink: 0;
    width: 42px;
}

.vw-voordeel-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.vw-voordeel-content p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-soft);
}

.vw-cta {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    margin: 0 auto 40px;
    color: var(--white);
    max-width: 1280px;
    box-shadow: 0 16px 30px rgba(30, 35, 50, 0.16);
}

.vw-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.vw-cta h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vw-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.vw-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Contact pagina */
.ct-section {
    margin: 0 auto 40px;
    max-width: 1280px;
}

.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: start;
}

.ct-info h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.ct-info-sub {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ct-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-info-icon svg {
    width: 18px;
    height: 18px;
    color: var(--dark);
}

.ct-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.ct-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

a.ct-info-value:hover {
    text-decoration: underline;
}

.ct-hours {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.ct-hours-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.ct-hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
    font-size: 14px;
    color: var(--text-soft);
}

.ct-hours-grid span:nth-child(even) {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.ct-form-card {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 34px 32px;
    box-shadow: var(--shadow-soft);
}

.ct-form-card h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.ct-form-sub {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ct-fields-2col {
    grid-template-columns: 1fr 1fr !important;
}

.ct-textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
    line-height: 1.6;
}

/* Leaseoplossingen pagina */
.lo-intro {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.lo-section {
    margin: 0 auto 40px;
    max-width: 1280px;
}

.lo-category {
    padding: 36px 0;
}

.lo-divider {
    border: none;
    border-top: 1px solid var(--border-soft);
    margin: 0;
}

.lo-cat-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.lo-cat-icon {
    width: 56px;
    height: 56px;
    background: var(--dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lo-cat-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.lo-cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lo-cat-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.lo-cat-header p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 640px;
}

.lo-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 80px;
}

.lo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-soft);
}

.lo-item svg {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Voor wie sectoren */
.vw-sectoren {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vw-sector-card-dark {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 28px 26px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.vw-sector-card {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 28px 26px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.vw-sector-featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.vw-sector-featured .vw-doel-icon {
    background: rgba(255, 255, 255, 0.12);
}

.vw-sector-featured .vw-doel-icon svg {
    color: var(--white);
}

.vw-sector-featured h3 {
    color: var(--white);
}

.vw-sector-featured p {
    color: rgba(255, 255, 255, 0.68);
}

.vw-sector-featured .vw-doel-list li {
    color: rgba(255, 255, 255, 0.72);
}

.vw-sector-card-dark h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.vw-sector-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.vw-sector-card-dark p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.vw-sector-card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Waarom leasen pagina */
.wl-section {
    margin: 0 auto 48px;
    max-width: 1280px;
}

.wl-intro {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 32px;
}

.wl-voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wl-voordeel-card {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-soft);
}

.wl-icon {
    width: 44px;
    height: 44px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wl-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.wl-voordeel-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.wl-voordeel-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
}

.wl-vrijheid {
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.wl-vrijheid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.wl-vrijheid-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wl-vrijheid-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.wl-vrijheid-text p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 20px;
}

.wl-keuze-lijst {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}


.wl-keuze-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.wl-keuze-dot {
    width: 10px;
    height: 10px;
    background: var(--dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.wl-vrijheid-cta {
    margin-top: 24px;
}

.wl-vrijheid-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wl-highlight-card {
    background: var(--dark);
    color: var(--white);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.wl-highlight-card:last-child {
    margin-bottom: 0;
}

.wl-highlight-num {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
}

.wl-highlight-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

/* Over ons pagina */
.oo-section {
    margin: 0 auto 40px;
    max-width: 1280px;
}

.oo-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.oo-main p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
}

.oo-waarden {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oo-waarde {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.oo-waarde-icon {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oo-waarde-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.oo-waarde strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.oo-waarde span {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
}

.oo-contact-card {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px 28px;
    position: sticky;
    top: 24px;
    box-shadow: 0 16px 30px rgba(30, 35, 50, 0.16);
}

.oo-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.oo-contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.oo-contact-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

.oo-contact-items {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oo-contact-card .ct-info-icon {
    background: rgba(255, 255, 255, 0.10);
}

.oo-contact-card .ct-info-icon svg {
    color: var(--white);
}

.oo-contact-card .ct-info-label {
    color: rgba(255, 255, 255, 0.5);
}

.oo-contact-card .ct-info-value {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero {
        display: flex;
        flex-direction: column;
        min-height: unset;
    }

    .hero-left,
    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-left {
        height: 360px;
    }

    .hero-content {
        padding: 34px;
    }

    .cards,
    .lc-info-grid,
    .lc-intro-block,
    .lc-layout,
    .ct-layout,
    .vw-doelgroepen,
    .vw-sectoren,
    .wl-voordelen-grid,
    .wl-vrijheid-inner,
    .oo-layout {
        grid-template-columns: 1fr;
    }

    .lc-result-panel {
        position: static;
    }

    .howit-steps {
        flex-direction: column;
    }

    .howit-arrow {
        display: none;
    }

    .ls-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-inner {
        flex-direction: column;
    }

    .page-hero-stats {
        flex-direction: row;
    }

    .stat-card {
        min-width: 120px;
    }

    .vw-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .vw-cta-btns {
        justify-content: center;
    }

    .wl-voordelen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vw-sectoren {
        grid-template-columns: 1fr 1fr;
    }

    .oo-contact-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .container.ls-theme-shell {
        margin: 0;
        padding: 0 18px 18px;
    }

    .ls-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ls-nav {
        gap: 10px;
    }

    .ls-topbar-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .hero-left {
        height: 300px;
    }

    .hero-content {
        padding: 28px 22px;
    }

    .hero-content h1,
    .page-hero-text h1 {
        font-size: 34px;
    }

    .page-hero,
    .howit,
    .lc-info-card,
    .lc-intro-text,
    .lc-intro-help,
    .lc-help-box,
    .lc-form-card,
    .ct-form-card,
    .vw-cta,
    .wl-vrijheid {
        padding: 24px 18px;
    }

    .lc-fields {
        grid-template-columns: 1fr;
    }

    .lc-fields-3col {
        grid-template-columns: 1fr 1fr;
    }

    .lc-term-group {
        flex-wrap: wrap;
    }

    .lc-term {
        flex: 0 0 calc(33.33% - 8px);
    }

    .lc-result-value {
        font-size: 44px;
    }

    .lc-section-title {
        font-size: 26px;
    }

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

    .ls-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
    }

    .page-hero-stats {
        flex-wrap: wrap;
    }

    .vw-voordelen {
        grid-template-columns: 1fr;
    }

    .vw-voordeel {
        border-right: none !important;
    }

    .vw-voordeel:last-child {
        border-bottom: none;
    }

    .ct-fields-2col {
        grid-template-columns: 1fr !important;
    }

    .lo-items {
        padding-left: 0;
    }

    .lo-cat-header {
        flex-direction: column;
    }

    .wl-voordelen-grid {
        grid-template-columns: 1fr;
    }

    .vw-sectoren {
        grid-template-columns: 1fr;
    }

    .lc-help-mini-title,
    .lc-help-box h3 {
        font-size: 20px;
    }
}