/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Inline SVGs without width/height expand to fill the viewport in Chrome */
svg:not([width]) {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

svg.lq-file-upload__icon {
    width: 2.5rem;
    height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
}

/* ─── Keel design tokens ─── */
:root {
    /* Ink */
    --color-ink: #1c1913;
    --color-ink-secondary: #4a4433;
    --color-ink-muted: #7d7562;
    --color-ink-faint: #a49d87;
    --color-ink-disabled: #d8d2bd;

    /* Brand — navy / slate blue (+ warm accent for highlights) */
    --color-navy: #1c1913;
    --color-navy-mid: #332e1f;
    --color-blue: #8c6d3a;
    --color-blue-deep: #6b521f;
    --color-blue-muted: #7d7562;
    --color-blue-wash: #f6f2e5;
    --color-blue-wash-deep: #e9e2ce;

    /* CTA blue — #dcbd76 */
    --color-periwinkle: #EFCF93;
    --color-periwinkle-deep: #c3a052;
    --color-periwinkle-soft: #e6cf9c;
    --color-periwinkle-wash: #f6f2e5;
    --color-periwinkle-muted: rgba(220, 189, 118, 0.24);

    /* Interactive */
    --color-action: var(--color-periwinkle);
    --color-action-deep: var(--color-periwinkle-deep);
    --color-action-darker: #a68844;
    --color-action-muted: var(--color-periwinkle-muted);
    --color-action-wash: var(--color-periwinkle-wash);

    --color-accent: #b38a3e;
    --color-accent-bright: #d9ac5c;
    --color-accent-soft: #e9cd97;
    --color-accent-wash: #faf4e2;
    --color-accent-muted: rgba(179, 138, 62, 0.14);

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-muted: #faf8ef;
    --color-surface-canvas: #f4f1e6;
    --color-border: #e5dfca;
    --color-border-subtle: #eeebdc;

    /* Semantic */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-metric-warn: #ffc44d;
    --color-metric-danger: #ff6b6b;
    --color-metric-neutral: #5fe3a1;

    /* Typography */
    --font-display: 'Schibsted Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --text-display-lg: clamp(2rem, 4.5vw, 2.625rem);
    --text-display-md: clamp(1.875rem, 3.25vw, 2.375rem);
    --text-display-sm: clamp(1.5rem, 2.25vw, 1.75rem);
    --text-title-lg: 1.25rem;
    --text-title: 1.0625rem;
    --text-lead: 1rem;
    --text-body: 0.9375rem;
    --text-caption: 0.8125rem;
    --text-label: 0.6875rem;
    --text-metric: 1.375rem;

    --leading-display: 1.12;
    --leading-title: 1.3;
    --leading-body: 1.55;
    --leading-caption: 1.45;
    --leading-label: 1.35;

    --tracking-display: -0.02em;
    --tracking-title: -0.015em;
    --tracking-label: 0.06em;
    --tracking-caps: 0.08em;

    /* Spacing */
    --space-section: 5rem;
    --space-section-lg: 5.5rem;
    --space-block: 2.5rem;
    --space-stack-xs: 0.375rem;
    --space-stack-sm: 0.625rem;
    --space-stack-md: 1rem;
    --space-stack-lg: 1.5rem;
    --space-stack-xl: 2rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Buttons */
    --btn-height: 48px;
    --btn-height-sm: 44px;
    --btn-radius: 6px;
    --btn-weight: 600;
    --btn-tracking: -0.01em;
    --btn-transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;

    --btn-primary-bg: #000000;
    --btn-primary-bg-hover: var(--color-navy-mid);
    --btn-primary-fg: #ffffff;
    --btn-primary-border: #000000;

    /* Primary on dark surfaces (hero, product band, dark header) */
    --btn-primary-on-dark-bg: #ffffff;
    --btn-primary-on-dark-bg-hover: var(--color-periwinkle-wash);
    --btn-primary-on-dark-fg: var(--color-ink);

    /* Resting state is the former hover look; hover deepens one step further */
    --btn-secondary-bg: var(--color-periwinkle-wash);
    --btn-secondary-fg: var(--color-action-darker);
    --btn-secondary-border: var(--color-periwinkle-deep);
    --btn-secondary-bg-hover: var(--color-blue-wash-deep);
    --btn-secondary-border-hover: var(--color-action-darker);
    --btn-secondary-fg-hover: var(--color-blue-deep);

    --btn-on-dark-bg: transparent;
    --btn-on-dark-fg: var(--color-periwinkle-soft);
    --btn-on-dark-border: var(--color-periwinkle);
    --btn-on-dark-bg-hover: var(--color-periwinkle-muted);
    --btn-on-dark-border-hover: var(--color-periwinkle-soft);
    --btn-on-dark-fg-hover: #ffffff;

    /* Per-page theme (override via window.KEEL_PAGE_THEME + site-theme.js) */
    --theme-header-bg: rgba(30, 27, 20, 0.82);
    --theme-header-bg-scrolled: rgba(120, 99, 83, 0.95);
    --theme-header-bg-mega: rgba(120, 99, 83, 0.95);
    --theme-header-text: rgba(255, 255, 255, 0.72);
    --theme-header-text-muted: rgba(255, 255, 255, 0.82);
    --theme-header-text-hover: #ffffff;
    --theme-header-border: rgba(255, 255, 255, 0.08);
    --theme-header-border-scrolled: rgba(255, 255, 255, 0.1);
    --theme-header-hover-bg: rgba(255, 255, 255, 0.08);
    --theme-header-hover-bg-strong: rgba(255, 255, 255, 0.1);
    --theme-header-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    --theme-header-shadow-scrolled: 0 4px 24px rgba(0, 0, 0, 0.18);
    --theme-header-toggle-bg: rgba(255, 255, 255, 0.08);
    --theme-header-toggle-border: rgba(255, 255, 255, 0.12);
    --theme-header-toggle-icon: #ffffff;

    --theme-hero-gradient-start: rgba(56, 51, 40, 0.08);
    --theme-hero-gradient-end: rgba(30, 27, 20, 0.1);
    --theme-hero-gradient-angle: 135deg;
    --theme-hero-bg-image: url('images/keel-hero-backdrop02.png');
    --theme-hero-text: #faf6e8;
    --theme-hero-eyebrow: #cfc7ac;
    --theme-hero-headline-lead: #ffffff;
    --theme-hero-headline-rest: #EFCF93;
    --theme-hero-muted: rgba(255, 255, 255, 0.78);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Display Font Classes (Schibsted Grotesk) */
.font-kalnia {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: var(--tracking-title);
}

.font-kalnia-light {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: var(--tracking-title);
}

.font-kalnia-medium {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: var(--tracking-display);
}

.font-kalnia-bold {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: var(--tracking-display);
}

.font-kalnia-regular {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
}

/* Keel Gradient Class */
.keel-gradient {
    background: linear-gradient(45deg, #c79232, #e9cd97);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Header */
.header {
    /*background: var(--theme-header-bg); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--theme-header-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--theme-header-border);
    opacity: 0;
    transform: translateY(-6px);
    animation: headerEnter 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
    transition:
        background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes headerEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header--scrolled,
.header:hover {
    background: var(--theme-header-bg-scrolled);
    box-shadow: var(--theme-header-shadow-scrolled);
    border-bottom-color: var(--theme-header-border-scrolled);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1240px;
    margin: 0 auto;
    gap: 1.5rem;
}

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

.logo-img {
    width: auto;
}

.nav-logo-link .logo-img {
    height: 30px;
}

.trust-logos-grid .logo-img {
    height: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    border: none !important;
    border-radius: 8px;
    text-decoration: none;
    color: var(--theme-header-text);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
    color: var(--theme-header-text-hover);
    background: var(--theme-header-hover-bg);
}

/* Nav actions & CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--theme-header-text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.btn-nav-login:hover {
    color: var(--theme-header-text-hover);
    background: var(--theme-header-hover-bg);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: unset;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: var(--btn-weight);
    letter-spacing: var(--btn-tracking);
    border-radius: 2px;
    border: 1px solid var(--btn-primary-border);
    cursor: pointer;
    font-family: inherit;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(3px) scale(0.97);
    pointer-events: none;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    margin: 0;
    transition:
        opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.15s ease,
        border-color 0.15s ease;
}

.header--scrolled .btn-nav-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    max-width: 12rem;
    padding: 0.375rem 0.75rem;
    margin-left: 0.125rem;
}

.btn-nav-cta:hover {
    background: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-bg-hover);
}

.header--scrolled .btn-nav-cta:hover {
    transform: translateY(0) scale(1);
}

/* Products dropdown trigger */
.nav-dropdown {
    position: static;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--theme-header-text);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
    color: var(--theme-header-text-hover);
    background: var(--theme-header-hover-bg);
}

.nav-dropdown.is-open .nav-dropdown-trigger {
    background: var(--theme-header-hover-bg-strong);
}

.nav-chevron {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.75;
}

.nav-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown--stakeholder .nav-dropdown-trigger {
    font-size: 0.8125rem;
    padding: 0.5rem 0.625rem;
    white-space: nowrap;
}

@media (min-width: 1100px) {
    .nav-dropdown--stakeholder .nav-dropdown-trigger {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Stakeholder mega menu + service cover cards */
.nav-mega-menu--stakeholder .nav-mega-inner {
    padding: 1.75rem 20px 2.75rem;
}

.nav-mega-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9e4d4;
}

.nav-mega-panel-desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #6d6550;
}

.nav-mega-panel-link {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #b38a3e;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-mega-panel-link:hover {
    color: #c79232;
    transform: translateX(2px);
}

.nav-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

@keyframes navMegaPanelIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navMegaHeadIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navMegaCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes navMegaArtIn {
    from {
        opacity: 0;
        transform: scale(1.06);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .nav-mega-menu.is-entering .nav-mega-panel-head {
        animation: navMegaHeadIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .nav-mega-menu.is-entering .nav-service-card {
        animation: navMegaCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .nav-mega-menu.is-entering .nav-service-card:nth-child(1) { animation-delay: 0.05s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(2) { animation-delay: 0.09s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(3) { animation-delay: 0.13s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(4) { animation-delay: 0.17s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(5) { animation-delay: 0.21s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(6) { animation-delay: 0.25s; }

    .nav-mega-menu.is-entering .nav-service-card__art {
        animation: navMegaArtIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .nav-mega-menu.is-entering .nav-service-card:nth-child(1) .nav-service-card__art { animation-delay: 0.08s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(2) .nav-service-card__art { animation-delay: 0.12s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(3) .nav-service-card__art { animation-delay: 0.16s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(4) .nav-service-card__art { animation-delay: 0.2s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(5) .nav-service-card__art { animation-delay: 0.24s; }
    .nav-mega-menu.is-entering .nav-service-card:nth-child(6) .nav-service-card__art { animation-delay: 0.28s; }
}

.nav-service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg, 12px);
    border: 1px solid var(--color-border-subtle, #e9e4d4);
    background: var(--color-surface, #fff);
    padding: 0;
    overflow: hidden;
    min-height: 100%;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
    .nav-service-card:hover {
        border-color: var(--color-border, #ddd7c2);
        box-shadow: 0 8px 28px rgba(30, 27, 20, 0.1);
        transform: translateY(-3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-service-card:hover {
        border-color: var(--color-border, #ddd7c2);
        box-shadow: 0 6px 24px rgba(30, 27, 20, 0.08);
        transform: translateY(-2px);
    }
}

.nav-service-card:hover .nav-service-card__name {
    color: var(--color-accent, #b38a3e);
}

.nav-service-card__art {
    position: relative;
    width: 100%;
    height: 5.75rem;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
    .nav-service-card:hover .nav-service-card__art {
        transform: scale(1.03);
    }
}

.nav-service-card__art::before,
.nav-service-card__art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.nav-service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
    padding: 1rem 1.125rem 1.125rem;
}

.nav-service-card__type {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-ink-faint, #7b7360);
}

.nav-service-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: var(--tracking-display, -0.02em);
    color: var(--color-ink, #1e1b14);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.nav-service-card__desc {
    margin: 0.1rem 0 0.35rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-ink-muted, #7b7360);
}

.nav-service-card__features {
    list-style: none;
    margin: auto 0 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--color-border-subtle, #f5f2e8);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.nav-service-card__features li {
    position: relative;
    padding-left: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--color-ink-muted, #6d6550);
}

.nav-service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent, #b38a3e);
    opacity: 0.5;
}

/* Abstract cover art — same motifs + palette as the Maßnahmen tiles on the homepage,
   scaled to the shorter mega menu art. Colors: brown #8a5a22, rust #9e4a2a, amber #c88232 */
.nav-service-card__art--os {
    background: linear-gradient(145deg, #f7e9cf 0%, #e9cd9e 100%);
}
.nav-service-card__art--os::before {
    width: 4.25rem;
    height: 4.25rem;
    background: rgba(158, 74, 42, 0.36);
    top: -1.25rem;
    right: -0.85rem;
}
.nav-service-card__art--os::after {
    width: 70%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #8a5a22 25%, #8a5a22 70%, transparent);
    bottom: 1.85rem;
    left: 15%;
    transform: rotate(-8deg);
    box-shadow:
        0 -1rem 0 -1px rgba(138, 90, 34, 0.52),
        0 -2rem 0 -1px rgba(138, 90, 34, 0.3);
}

.nav-service-card__art--meridian {
    background: linear-gradient(145deg, #f2e3c6 0%, #dfbf8e 100%);
}
.nav-service-card__art--meridian::before {
    width: 1.85rem;
    height: 1.85rem;
    background: rgba(200, 130, 50, 0.62);
    top: 1.65rem;
    left: calc(50% - 0.925rem);
}
.nav-service-card__art--meridian::after {
    width: 1.05rem;
    height: 1.05rem;
    background: rgba(138, 90, 34, 0.55);
    top: 1rem;
    left: calc(50% + 1.65rem);
    box-shadow: -4.5rem 2rem 0 rgba(158, 74, 42, 0.34), 2.5rem 2.5rem 0 rgba(200, 130, 50, 0.32);
}

.nav-service-card__art--bridge {
    background: linear-gradient(180deg, #f7f0da 0%, #eed9ab 100%);
}
.nav-service-card__art--bridge::before {
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: var(--color-accent-bright, #d9ac5c);
    bottom: 2.25rem;
    left: 0;
    opacity: 0.62;
}
.nav-service-card__art--bridge::after {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(179, 138, 62, 0.32);
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
}

.nav-service-card__art--capital {
    background: linear-gradient(145deg, #f8efdb 0%, #e7c996 100%);
}
.nav-service-card__art--capital::before {
    width: 6rem;
    height: 3rem;
    border: 2px solid rgba(138, 90, 34, 0.52);
    border-bottom: none;
    border-radius: 6rem 6rem 0 0;
    background: transparent;
    bottom: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
}
.nav-service-card__art--capital::after {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(158, 74, 42, 0.4);
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.nav-service-card__art--exchange {
    background: linear-gradient(145deg, #f6e8cd 0%, #e6c896 100%);
}
.nav-service-card__art--exchange::before {
    width: 4.25rem;
    height: 4.25rem;
    border: 2px solid rgba(138, 90, 34, 0.56);
    background: transparent;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
}
.nav-service-card__art--exchange::after {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(200, 108, 52, 0.52);
    top: 2rem;
    left: calc(50% + 1.25rem);
}

.nav-service-card__art--signal {
    background: linear-gradient(145deg, #f7e9cf 0%, #e7cb9c 100%);
}
.nav-service-card__art--signal::before {
    width: 5rem;
    height: 5rem;
    border: 2px solid rgba(138, 90, 34, 0.6);
    border-bottom-color: transparent;
    border-left-color: transparent;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    background: transparent;
}
.nav-service-card__art--signal::after {
    width: 2rem;
    height: 2rem;
    background: rgba(158, 74, 42, 0.34);
    bottom: -0.6rem;
    right: 1.1rem;
}

.nav-service-card__art--resolve {
    background: linear-gradient(145deg, #f6e8cd 0%, #e3c390 100%);
}
.nav-service-card__art--resolve::before {
    width: 2.5rem;
    height: 3.35rem;
    border-radius: 4px;
    background: rgba(138, 90, 34, 0.38);
    top: 1.2rem;
    left: 1.85rem;
    box-shadow: 0.45rem 0.45rem 0 rgba(158, 74, 42, 0.24);
}
.nav-service-card__art--resolve::after {
    width: 3.75rem;
    height: 1px;
    border-radius: 0;
    background: rgba(200, 130, 50, 0.7);
    top: 2.25rem;
    left: 2.1rem;
    box-shadow: 0 0.65rem 0 rgba(138, 90, 34, 0.44), 0 1.3rem 0 rgba(138, 90, 34, 0.28);
}

.nav-service-card__art--fleet {
    background: linear-gradient(180deg, #f8eed6 0%, #ecce96 100%);
}
.nav-service-card__art--fleet::before {
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: #c88232;
    bottom: 2rem;
    left: 0;
    opacity: 0.75;
}
.nav-service-card__art--fleet::after {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(158, 74, 42, 0.38);
    top: 1.15rem;
    left: 1.65rem;
}

.nav-service-card__art--estates {
    background: linear-gradient(145deg, #f8eed6 0%, #ebce9c 100%);
}
.nav-service-card__art--estates::before {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm, 8px);
    background: rgba(151, 96, 34, 0.44);
    top: 1.4rem;
    left: 1.65rem;
    box-shadow: 2.1rem 0.6rem 0 rgba(158, 74, 42, 0.28);
}
.nav-service-card__art--estates::after {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: var(--radius-sm, 8px);
    background: rgba(151, 96, 34, 0.2);
    top: 0.6rem;
    right: 1.25rem;
}

.nav-service-card__art--ledger {
    background: linear-gradient(145deg, #f2ecd8 0%, #decfa8 100%);
}
.nav-service-card__art--ledger::before {
    width: 4.5rem;
    height: 3rem;
    border-radius: 4px;
    border: 2px solid rgba(140, 109, 58, 0.4);
    background: rgba(255, 255, 255, 0.5);
    top: 1.35rem;
    left: 1.35rem;
    box-shadow: inset 0 0.5rem 0 -0.35rem rgba(140, 109, 58, 0.22);
}
.nav-service-card__art--ledger::after {
    width: 3rem;
    height: 2px;
    border-radius: 2px;
    background: rgba(140, 109, 58, 0.55);
    top: 2.35rem;
    left: 2rem;
    box-shadow: 0 0.55rem 0 rgba(140, 109, 58, 0.32), 0 1.1rem 0 rgba(140, 109, 58, 0.2);
}

.nav-service-card__art--recovery {
    background: linear-gradient(145deg, rgba(214, 184, 122, 0.95) 0%, rgba(160, 124, 46, 0.95) 55%, #ece3c6 100%);
}
.nav-service-card__art--recovery::before {
    width: 8rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #b58c3a 20%, #b58c3a 80%, transparent);
    bottom: 2rem;
    left: 1rem;
    transform: rotate(-10deg);
    box-shadow: 0 -1.1rem 0 -1px rgba(181, 140, 58, 0.42);
}
.nav-service-card__art--recovery::after {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(181, 140, 58, 0.28);
    top: 1.35rem;
    right: 1.25rem;
}

.nav-service-card:has(.nav-service-card__art--recovery) .nav-service-card__type {
    color: #93712c;
}

/* Mega menu panel */
.nav-mega-backdrop {
    position: fixed;
    inset: 0;
    top: 84px;
    background: rgba(30, 27, 20, 0.2);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.45s,
        backdrop-filter 0.45s ease,
        -webkit-backdrop-filter 0.45s ease,
        background 0.45s ease;
}

.nav-mega-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    background: rgba(30, 27, 20, 0.38);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-mega-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 1001;
    padding-top: 8px;
    margin-top: -8px;
    background: #fff;
    border-bottom: 1px solid #e9e4d4;
    box-shadow: 0 24px 48px rgba(30, 27, 20, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.42s,
        box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-dropdown.is-open .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
    box-shadow: 0 28px 56px rgba(30, 27, 20, 0.14);
}

.nav-mega-menu[hidden] {
    display: none !important;
}

.nav-dropdown.is-open .nav-mega-menu[hidden] {
    display: block !important;
}

.header--mega-open {
    background: var(--theme-header-bg-mega);
}

.nav-mega-inner {
    padding: 2rem 20px 1.75rem;
}

.nav-mega-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e9e4d4;
}

.nav-mega-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e1b14;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.nav-mega-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6d6550;
    margin: 0;
    max-width: 520px;
}

.nav-mega-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-shrink: 0;
}

.nav-mega-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: 1.5px solid #e9e4d4;
    color: #1e1b14;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-mega-btn:hover {
    border-color: #b38a3e;
    transform: translateY(-1px);
}

.nav-mega-btn--primary {
    background: linear-gradient(135deg, #c79232, #b38a3e);
    border-color: transparent;
    color: #fff;
}

.nav-mega-btn--primary:hover {
    box-shadow: 0 4px 16px rgba(199, 146, 50, 0.3);
    border-color: transparent;
}

/* Product grid */
.nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1.5rem;
}

.nav-product-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-product-item:hover {
    background: #faf8f0;
    transform: translateX(3px);
}

.nav-product-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.nav-product-icon svg {
    width: 20px;
    height: 20px;
}

.nav-product-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.nav-product-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e1b14;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.nav-product-desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #7b7360;
}

/* Nav product icon colors */
.nav-product-item.product-badge--os .nav-product-icon {
    background: linear-gradient(135deg, rgba(199, 146, 50, 0.12), rgba(233, 205, 151, 0.2));
    border-color: rgba(199, 146, 50, 0.2);
    color: #b38a3e;
}

.nav-product-item.product-badge--meridian .nav-product-icon {
    background: linear-gradient(135deg, rgba(179, 138, 62, 0.1), rgba(236, 211, 160, 0.22));
    border-color: rgba(179, 138, 62, 0.22);
    color: #b38a3e;
}

.nav-product-item.product-badge--bridge .nav-product-icon {
    background: linear-gradient(135deg, rgba(226, 187, 108, 0.12), rgba(240, 222, 172, 0.2));
    border-color: rgba(226, 187, 108, 0.25);
    color: #9c7826;
}

.nav-product-item.product-badge--capital .nav-product-icon {
    background: linear-gradient(135deg, rgba(143, 109, 34, 0.1), rgba(226, 187, 108, 0.16));
    border-color: rgba(143, 109, 34, 0.2);
    color: #7c6026;
}

.nav-product-item.product-badge--exchange .nav-product-icon {
    background: linear-gradient(135deg, rgba(201, 155, 62, 0.14), rgba(220, 176, 85, 0.2));
    border-color: rgba(201, 155, 62, 0.28);
    color: #a3762a;
}

.nav-product-item.product-badge--signal .nav-product-icon {
    background: linear-gradient(135deg, rgba(233, 205, 151, 0.15), rgba(242, 226, 184, 0.25));
    border-color: rgba(233, 205, 151, 0.3);
    color: #8a6c30;
}

.nav-product-item.product-badge--resolve .nav-product-icon {
    background: linear-gradient(135deg, rgba(138, 116, 72, 0.08), rgba(233, 205, 151, 0.14));
    border-color: rgba(138, 116, 72, 0.18);
    color: #8a7448;
}

.nav-product-item.product-badge--fleet .nav-product-icon {
    background: linear-gradient(135deg, rgba(91, 83, 59, 0.08), rgba(226, 187, 108, 0.12));
    border-color: rgba(91, 83, 59, 0.15);
    color: #5b533b;
}

.nav-product-item.product-badge--estates .nav-product-icon {
    background: linear-gradient(135deg, rgba(138, 108, 48, 0.1), rgba(236, 211, 160, 0.18));
    border-color: rgba(138, 108, 48, 0.2);
    color: #6b5530;
}

.nav-product-item.product-badge--ledger .nav-product-icon {
    background: linear-gradient(135deg, rgba(110, 90, 50, 0.08), rgba(179, 138, 62, 0.12));
    border-color: rgba(110, 90, 50, 0.18);
    color: #6e5a32;
}

/* Mega menu footer */
.nav-mega-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9e4d4;
}

.nav-mega-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-mega-footer-item:hover {
    background: #faf8f0;
}

.nav-mega-footer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(199, 146, 50, 0.08), rgba(233, 205, 151, 0.15));
    color: #b38a3e;
    font-size: 1rem;
}

.nav-mega-footer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.nav-mega-footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e1b14;
}

.nav-mega-footer-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #7b7360;
}

.nav-mega-footer-link {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #b38a3e;
    align-self: center;
    white-space: nowrap;
}

/* Mobile nav toggle */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--theme-header-toggle-bg);
    border: 1px solid var(--theme-header-toggle-border);
    border-radius: 8px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--theme-header-toggle-icon);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .nav-mega-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Language Switch */
.language-switch {
    position: relative;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4375rem 0.5rem;
    background: var(--theme-header-toggle-bg);
    border: 1px solid var(--theme-header-toggle-border);
    border-radius: 8px;
    color: var(--theme-header-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lang-trigger:hover,
.language-switch.is-open .lang-trigger {
    background: var(--theme-header-hover-bg-strong);
    border-color: var(--theme-header-border-scrolled);
    color: var(--theme-header-text-hover);
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 0.8125rem;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lang-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-chevron {
    opacity: 0.45;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.language-switch.is-open .lang-chevron {
    transform: rotate(180deg);
    opacity: 0.7;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 168px;
    margin: 0;
    padding: 0.375rem;
    list-style: none;
    background: #2a261a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-switch.is-open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-menu[hidden] {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    width: 100%;
    padding: 0.5rem 0.625rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option.active {
    background: rgba(236, 211, 160, 0.12);
    color: #ecd3a0;
}

.lang-option-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 0.8125rem;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-option-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-option-label {
    flex: 1;
}

.lang-option-code {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.45;
}

.lang-option.active .lang-option-code {
    opacity: 0.7;
    color: #ecd3a0;
}

.hero {
    position: relative;
    color: var(--theme-hero-text);
    padding: 0;
    text-align: left;
    border-bottom-right-radius: 240px;
    overflow: hidden;
    margin-top: -100px;
    background-image: var(--theme-hero-bg-image);
    background-size: 120% auto;
    background-position: center 55%;
    background-repeat: no-repeat;
}

/* Layer 0: Base gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

@keyframes sunRise {
    0% {
        background-position: center 10%;
    }
    100% {
        background-position: center 90%;
    }
}

/* Layer 2: Blurred gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(
        var(--theme-hero-gradient-angle),
        var(--theme-hero-gradient-start) 0%,
        var(--theme-hero-gradient-end) 100%
    ); */
    z-index: 1;
}

/* Ensure content is above all layers */
.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1240px;
    padding: 280px 40px 120px 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    flex: 1;
    max-width: 60rem;
    text-align: left;
}

.hero-screenshot {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-screenshot img {
    max-width: 800px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    border-top-left-radius: 24px;
    transform: translate(10%, 100px);
}

/* Trust Logos Section */
.trust-logos {
    background: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid #e7e3d2;
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.trust-logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logos .container{
    padding: 0 40px;
}

.trust-logo {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    background: #e7e3d2;
    color: #7c7462;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: #d6d1bd;
    transform: translateY(-2px);
}

.services {
    background: #fff;
    padding: 0;
}

.services-intro {
    max-width: 820px;
    margin-bottom: 4rem;
}

.services-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #1e1b14;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.services-lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    line-height: 1.65;
    color: #6d6550;
    margin: 0;
    max-width: 720px;
}

/* Product badge on each service item */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item.is-open .product-badge {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(30, 27, 20, 0.06);
}

.product-badge-type {
    opacity: 0.8;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-badge-name {
    font-weight: 700;
}

.product-badge--os {
    background: linear-gradient(135deg, rgba(199, 146, 50, 0.14), rgba(233, 205, 151, 0.22));
    border-color: rgba(199, 146, 50, 0.25);
    color: #9c7826;
}

.product-badge--meridian {
    background: linear-gradient(135deg, rgba(179, 138, 62, 0.12), rgba(236, 211, 160, 0.24));
    border-color: rgba(179, 138, 62, 0.25);
    color: #7c6026;
}

.product-badge--bridge {
    background: linear-gradient(135deg, rgba(226, 187, 108, 0.14), rgba(240, 222, 172, 0.22));
    border-color: rgba(226, 187, 108, 0.28);
    color: #8f6b21;
}

.product-badge--capital {
    background: linear-gradient(135deg, rgba(143, 109, 34, 0.12), rgba(226, 187, 108, 0.18));
    border-color: rgba(143, 109, 34, 0.22);
    color: #6e551e;
}

.product-badge--exchange {
    background: linear-gradient(135deg, rgba(201, 155, 62, 0.16), rgba(220, 176, 85, 0.22));
    border-color: rgba(201, 155, 62, 0.3);
    color: #a3762a;
}

.product-badge--signal {
    background: linear-gradient(135deg, rgba(233, 205, 151, 0.18), rgba(242, 226, 184, 0.28));
    border-color: rgba(233, 205, 151, 0.32);
    color: #8a6c30;
}

.product-badge--resolve {
    background: linear-gradient(135deg, rgba(138, 116, 72, 0.1), rgba(233, 205, 151, 0.16));
    border-color: rgba(138, 116, 72, 0.2);
    color: #8a7448;
}

.product-badge--fleet {
    background: linear-gradient(135deg, rgba(91, 83, 59, 0.1), rgba(226, 187, 108, 0.14));
    border-color: rgba(91, 83, 59, 0.18);
    color: #5b533b;
}

.product-badge--estates {
    background: linear-gradient(135deg, rgba(138, 108, 48, 0.12), rgba(236, 211, 160, 0.2));
    border-color: rgba(138, 108, 48, 0.22);
    color: #6b5530;
}

.product-badge--ledger {
    background: linear-gradient(135deg, rgba(110, 90, 50, 0.1), rgba(179, 138, 62, 0.14));
    border-color: rgba(110, 90, 50, 0.2);
    color: #6e5a32;
}

.service-item-head {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-width: 0;
}

.service-item-trigger {
    align-items: flex-start;
}

.service-item-title {
    flex: unset;
    width: 100%;
}

.services-hub {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
}

.services-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1.25rem;
    border-left: 1px solid #e9e4d4;
}

.services-nav-indicator {
    position: absolute;
    left: -1px;
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, #c79232, #e9cd97);
    border-radius: 2px;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.35s ease;
    pointer-events: none;
}

.services-nav-item {
    appearance: none;
    background: none;
    border: none;
    text-align: left;
    padding: 0.75rem 0;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #7b7360;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1.35;
}

.services-nav-item:hover {
    color: #1e1b14;
    transform: translateX(4px);
}

.services-nav-item.active {
    color: #1e1b14;
    font-weight: 600;
}

.services-panels {
    position: relative;
    min-height: 420px;
}

.services-panel {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.services-panel.is-entering {
    animation: servicePanelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes servicePanelIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-accordion {
    display: flex;
    flex-direction: column;
}

.service-item {
    overflow: hidden;
}

.service-item-trigger {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 0 0 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.service-item-trigger:hover .service-item-title {
    color: #b38a3e;
}

.service-item-index {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #b38a3e;
    opacity: 0.7;
    margin-top: auto;
    margin-bottom: 50px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-item.is-open .service-item-index {
    opacity: 1;
    transform: scale(1.05);
}

.service-item-title {
    flex: 1;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #1e1b14;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.service-item-chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    margin-top: 0.35rem;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item-chevron::before,
.service-item-chevron::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #7b7360;
    border-radius: 1px;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item-chevron::before {
    transform: translate(-50%, -50%);
}

.service-item-chevron::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-item-chevron {
    transform: rotate(180deg);
}

.service-item.is-open .service-item-chevron::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-item-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.service-item.is-open .service-item-body {
    opacity: 1;
}

.service-item-body-inner {
    padding-bottom: 1.25rem;
    padding-left: 36px;
}

.service-item-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #6d6550;
    margin: 0 0 1.25rem;
    transform: translateY(-6px);
    transition: transform 0.35s ease 0.05s;
}

.service-item.is-open .service-item-desc {
    transform: translateY(0);
}

.service-item-benefits {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-item-benefits li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #1e1b14;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c79232, #e9cd97);
    box-shadow: 0 0 0 2px rgba(199, 146, 50, 0.12);
}

.service-item.is-open .service-item-benefits li {
    opacity: 1;
    transform: translateX(0);
}

.service-item.is-open .service-item-benefits li:nth-child(1) { transition-delay: 0.08s; }
.service-item.is-open .service-item-benefits li:nth-child(2) { transition-delay: 0.14s; }
.service-item.is-open .service-item-benefits li:nth-child(3) { transition-delay: 0.20s; }
.service-item.is-open .service-item-benefits li:nth-child(4) { transition-delay: 0.26s; }

.service-item-body .service-link {
    margin-left: 0;
    margin-bottom: 0;
    display: inline-flex;
    transform: translateY(-4px);
    transition: transform 0.35s ease 0.28s, color 0.2s ease, gap 0.2s ease;
}

.service-item.is-open .service-item-body .service-link {
    transform: translateY(0);
}

.service-separator {
    height: 1px;
    background: linear-gradient(90deg, #e9e4d4 0%, rgba(199, 146, 50, 0.25) 50%, #e9e4d4 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 32px;
}

.services-panel.active .service-separator {
    transform: scaleX(1);
}

.services-panel.active .service-item {
    animation: serviceItemFade 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.services-panel.active .service-item:nth-child(1) { animation-delay: 0.05s; }
.services-panel.active .service-item:nth-child(3) { animation-delay: 0.12s; }
.services-panel.active .service-item:nth-child(5) { animation-delay: 0.19s; }
.services-panel.active .service-item:nth-child(7) { animation-delay: 0.26s; }

.services-panel.active .service-separator:nth-of-type(1) { transition-delay: 0.08s; }
.services-panel.active .service-separator:nth-of-type(2) { transition-delay: 0.16s; }

@keyframes serviceItemFade {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #b38a3e;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.service-link::after {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #c79232;
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* Stakeholders Section */
.stakeholders {
    background: white;
    padding: 80px 0;
    position: relative;
}

.stakeholders-section {
    position: relative;
    max-width: 100vw !important;
    overflow: hidden;
    padding: 0 !important;
    padding-left: calc((100vw - 1160px) / 2) !important;    
}

.stakeholders-container {
    position: relative;
    margin-top: 3rem;
    max-width: 1160px !important;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 380px);
    gap: 8px;
    width: 200%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stakeholders-grid.scrolling .stakeholder-card {
    animation: subtleBounce 0.3s ease;
}

@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.stakeholders-scroll-wrapper {
    position: relative;
    width: 100%;
}

.stakeholders-scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(179, 138, 62, 0.3);
    transition: all 0.3s ease;
}

.stakeholders-scroll-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(179, 138, 62, 0.4);
}

.stakeholders-scroll-button-left {
    left: 0;
}

.stakeholders-scroll-button-right {
    right: 8px;
}

.stakeholders-scroll-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.stakeholder-card {
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    background: #f7f4e9;
    position: relative;
    overflow: hidden;
    border: 1px solid #e7e3d2;
}

.stakeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


.stakeholder-card:hover {
    border: 1px solid #d4b164;
}

.stakeholder-avatar {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 0.3s ease;
    overflow: hidden;
}

.avatar-image {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 16px;
    margin-right: 40px;
    margin-bottom: 40px;
}

.stakeholder-card:hover .stakeholder-avatar {
    border-color: #ecd3a0;
}

.avatar-placeholder {
    font-size: 2rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.stakeholder-card:hover .avatar-placeholder {
    filter: grayscale(0);
}

.stakeholder-card h3 {
    color: #2a261b;
    margin-bottom: 4px;
    font-size: 1.5rem;
    font-weight: bold;
}

.stakeholder-card p {
    color: #7c7462;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.stakeholder-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap;
}

.stakeholder-benefits li {
    position: relative;
    padding: 0.2rem 0.5rem 0.2rem 1.5rem;
    color: #5c553f;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.stakeholder-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #10b981;
    font-weight: bold;
    font-size: 0.9rem;
}

.stakeholder-benefits li:hover {
    color: #2a261b;
}

.hero-logo {
    height: 64px;
    width: auto;
    margin-bottom: 2rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-eyebrow {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0 0 32px;
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
    display: none;
}

.hero-eyebrow__label {
    color: var(--theme-hero-eyebrow);
}

.hero-eyebrow__value {
    color: var(--theme-hero-eyebrow);
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 40px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.hero-headline__lead {
    font-weight: 600;
    color: var(--theme-hero-headline-lead);
}

.hero-headline__rest {
    font-weight: 400;
    color: var(--theme-hero-headline-rest);
}

.hero-headline__highlight {
    color: var(--theme-hero-headline-rest);
}

/* Subtle lift of hero copy off the backdrop image */
.hero-eyebrow,
.hero-headline,
.hero-benefits li {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.28),
        0 2px 14px rgba(0, 0, 0, 0.16);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-cta > * {
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-cta > *:nth-child(1) {
    animation-delay: 0.34s;
}

.hero-cta > *:nth-child(2) {
    animation-delay: 0.42s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Buttons (unified) ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-height: var(--btn-height);
    padding: 0 1.375rem;
    border-radius: var(--btn-radius);
    border: 1px solid transparent;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: var(--btn-weight);
    letter-spacing: var(--btn-tracking);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--btn-transition);
    -webkit-font-smoothing: antialiased;
}

.btn:disabled,
.btn[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* Sizes */
.btn-sm,
.btn-hero-primary,
.btn-hero-secondary {
    min-height: var(--btn-height-sm);
    padding: 0 1.125rem;
    font-size: 0.8125rem;
}

.btn-block {
    width: 100%;
}

/* Primary — flat CTA */
.btn-primary,
.btn-cta-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border-color: var(--btn-primary-border);
}

.btn-primary:hover,
.btn-cta-primary:hover {
    background: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-bg-hover);
}

/* Primary — dark surfaces: white so it pops off the dark backdrop */
.hero .btn-primary,
.lq-section--product .btn-primary,
.hero .btn-cta-primary,
.lq-section--product .btn-cta-primary,
.btn-nav-cta {
    background: var(--btn-primary-on-dark-bg);
    color: var(--btn-primary-on-dark-fg);
    border-color: var(--btn-primary-on-dark-bg);
}

.hero .btn-primary:hover,
.lq-section--product .btn-primary:hover,
.hero .btn-cta-primary:hover,
.lq-section--product .btn-cta-primary:hover,
.btn-nav-cta:hover {
    background: var(--btn-primary-on-dark-bg-hover);
    border-color: var(--btn-primary-on-dark-bg-hover);
    color: var(--btn-primary-on-dark-fg);
}

/* Secondary — light surfaces */
.btn-secondary,
.btn-cta-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-fg);
    border-color: var(--btn-secondary-border);
}

.btn-secondary:hover,
.btn-cta-secondary:hover {
    background: var(--btn-secondary-bg-hover);
    border-color: var(--btn-secondary-border-hover);
    color: var(--btn-secondary-fg-hover);
}

/* Secondary — dark surfaces (hero, product band) */
.hero .btn-secondary,
.lq-section--product .btn-secondary,
.hero .btn-cta-secondary,
.lq-section--product .btn-cta-secondary {
    background: var(--btn-on-dark-bg);
    color: var(--btn-on-dark-fg);
    border-color: var(--btn-on-dark-border);
}

.hero .btn-secondary:hover,
.lq-section--product .btn-secondary:hover,
.hero .btn-cta-secondary:hover,
.lq-section--product .btn-cta-secondary:hover {
    background: var(--btn-on-dark-bg-hover);
    border-color: var(--btn-on-dark-border-hover);
    color: var(--btn-on-dark-fg-hover);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: #2a261b;
    max-width: 640px;
}

.section-subtitle {
    text-align: left;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 640px;
}

/* Features – Bento Grid */
.features {
    background: #faf8f0;
    position: relative;
}

.features .section-subtitle {
    margin-bottom: 2.5rem;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.bento-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9e4d4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(30, 27, 20, 0.04), 0 8px 24px rgba(30, 27, 20, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
    box-shadow: 0 2px 6px rgba(30, 27, 20, 0.06), 0 16px 40px rgba(30, 27, 20, 0.1);
    transform: translateY(-2px);
}

.bento-card--wide  { grid-column: span 8; min-height: 420px; }
.bento-card--narrow { grid-column: span 4; min-height: 420px; }
.bento-card--third  { grid-column: span 4; min-height: 380px; }
.bento-card--full   { grid-column: span 12; min-height: 340px; }
.bento-card--exchange { min-height: 400px; }

.bento-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 28px 28px 0;
    position: relative;
    z-index: 2;
}

.bento-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1e1b14;
    margin: 0;
    max-width: 90%;
}

.bento-visual {
    position: relative;
    flex: 1;
    margin-top: 1.25rem;
    overflow: hidden;
    min-height: 220px;
}

.bento-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Gradient backgrounds */
.bento-bg--bridge-loan {
    background-color: #272013;
    background-image:
        linear-gradient(180deg, rgba(30, 27, 20, 0.35) 0%, rgba(30, 27, 20, 0.88) 100%),
        url('images/backdrop-keel-stats.png');
    background-size: cover;
    background-position: center;
}

.bento-bg--dots {
    background-color: #fbf7e9;
    background-image: radial-gradient(circle, #eddcb0 1px, transparent 1px);
    background-size: 16px 16px;
}

.bento-bg--soft-pink {
    background: linear-gradient(135deg, #f8f0d9 0%, #eee6c9 60%, #f0f9ff 100%);
}

.bento-bg--network {
    background-color: #fff;
    background-image:
        radial-gradient(circle at 50% 80%, rgba(236, 211, 160, 0.3) 0%, transparent 50%),
        radial-gradient(circle, #f6efdb 1px, transparent 1px);
    background-size: 100% 100%, 14px 14px;
}

.bento-bg--pink-wave {
    background:
        radial-gradient(ellipse 70% 80% at 30% 100%, rgba(248, 240, 217, 0.7) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 80% 90%, rgba(236, 211, 160, 0.4) 0%, transparent 60%),
        #fafafa;
}

.bento-bg--exchange {
    background-color: #14130d;
    background-image:
        radial-gradient(ellipse 90% 70% at 15% 110%, rgba(199, 146, 50, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 85% 95%, rgba(233, 205, 151, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(179, 138, 62, 0.12) 0%, transparent 60%),
        linear-gradient(165deg, #1e1b14 0%, #211c12 45%, #18140e 100%);
}

/* Insolvenzgeld-Vorfinanzierung (wide card) */
.bento-bg--insolvency-wage {
    background-color: #211c12;
    background-image:
        radial-gradient(ellipse 70% 55% at 10% 100%, rgba(199, 146, 50, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 90% 85%, rgba(236, 211, 160, 0.3) 0%, transparent 50%),
        linear-gradient(155deg, #1e1b14 0%, #281f14 50%, #18140e 100%);
}

.bento-visual--insolvency-wage {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-insolvency-wage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: end;
    padding: 0 24px 28px;
    color: #fff;
}

.bento-insolvency-wage__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36ch;
}

.bento-insolvency-wage__list {
    margin: 0.875rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-insolvency-wage__list li {
    position: relative;
    padding-left: 1.125rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.bento-insolvency-wage__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ecd3a0;
}

.bento-insolvency-wage__shell {
    position: relative;
    background: rgba(30, 27, 20, 0.78);
    border: 1px solid rgba(236, 211, 160, 0.22);
    border-radius: 14px;
    padding: 16px 18px 18px;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.bento-insolvency-wage__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bento-insolvency-wage__brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bento-insolvency-wage__logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
    box-shadow: 0 2px 8px rgba(179, 138, 62, 0.45);
}

.bento-insolvency-wage__name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.bento-insolvency-wage__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #86efac;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bento-insolvency-wage__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: bento-insolvency-pulse 2s ease-in-out infinite;
}

@keyframes bento-insolvency-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.92); }
}

.bento-insolvency-wage__progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.bento-insolvency-wage__progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bento-insolvency-wage__progress-bar span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ecd3a0, #c79232);
    box-shadow: 0 0 12px rgba(199, 146, 50, 0.45);
}

.bento-insolvency-wage__steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bento-insolvency-wage__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    position: relative;
}

.bento-insolvency-wage__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 11px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
    height: 2px;
    background: rgba(236, 211, 160, 0.35);
}

.bento-insolvency-wage__step--done {
    color: rgba(255, 255, 255, 0.85);
}

.bento-insolvency-wage__step--done:not(:last-child)::after {
    background: linear-gradient(90deg, #ecd3a0, rgba(236, 211, 160, 0.5));
}

.bento-insolvency-wage__step--active {
    color: #ecd3a0;
}

.bento-insolvency-wage__step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.bento-insolvency-wage__step--done .bento-insolvency-wage__step-icon {
    border-color: transparent;
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
}

.bento-insolvency-wage__step--done .bento-insolvency-wage__step-icon::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bento-insolvency-wage__step--active .bento-insolvency-wage__step-icon {
    border-color: #ecd3a0;
    background: rgba(236, 211, 160, 0.15);
    box-shadow: 0 0 0 4px rgba(236, 211, 160, 0.2);
    animation: bento-insolvency-step-glow 1.8s ease-in-out infinite;
}

.bento-insolvency-wage__step--active .bento-insolvency-wage__step-icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecd3a0, #c79232);
}

@keyframes bento-insolvency-step-glow {
    0%, 100% { box-shadow: 0 0 0 4px rgba(236, 211, 160, 0.2); }
    50% { box-shadow: 0 0 0 7px rgba(199, 146, 50, 0.25); }
}

.bento-insolvency-wage__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-insolvency-wage__stat {
    text-align: center;
}

.bento-insolvency-wage__stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.bento-insolvency-wage__stat-label {
    display: block;
    margin-top: 2px;
    font-size: 0.5625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(236, 211, 160, 0.9);
}

.bento-insolvency-wage__auto-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #b3924a, #9c7c33);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(179, 146, 74, 0.45);
}

/* Keel Bridge Loan card */
.bento-visual--bridge-loan {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-bridge-loan {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 24px 28px;
    color: #fff;
}

.bento-bridge-loan__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 28ch;
}

.bento-bridge-loan__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-bridge-loan__list li {
    position: relative;
    padding-left: 1.125rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.bento-bridge-loan__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ecd3a0;
}

.bento-bridge-loan__stat {
    margin-top: 0.25rem;
}

.bento-bridge-loan__number {
    display: block;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
}

.bento-bridge-loan__stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(236, 211, 160, 0.95);
}

/* AI card */
.bento-visual--ai {
    padding: 0 20px 24px;
}

.bento-mock-chat {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-chat-bubble {
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
}

.bento-chat-bubble--user {
    align-self: flex-end;
    background: #1e1b14;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.bento-chat-bubble--ai {
    align-self: flex-start;
    background: #fff;
    color: #453f2f;
    border: 1px solid #e7e3d2;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(30, 27, 20, 0.06);
}

.bento-chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b38a3e;
    flex-shrink: 0;
}

.bento-chat-docs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.bento-doc-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(30, 27, 20, 0.05);
}

.bento-doc-icon { font-size: 1rem; }

.bento-doc-text {
    font-size: 0.625rem;
    color: #7c7462;
    line-height: 1.3;
}

/* Security card */
.bento-visual--security {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 28px;
}

.bento-mock-shield {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.bento-gdpr-badge {
    width: 180px;
    height: auto;
    opacity: 0.9;
}

/* Automation card */
.bento-visual--automation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 32px;
}

.bento-mock-flow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: center;
}

.bento-flow-node {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #453f2f;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(30, 27, 20, 0.06);
}

.bento-flow-node--active {
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
    color: #fff;
    border-color: transparent;
}

.bento-flow-line {
    width: 20px;
    height: 2px;
    background: #d6d1bd;
    flex-shrink: 0;
}

.bento-flow-tag {
    position: absolute;
    top: -12px;
    right: 20%;
    background: #b3924a;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

/* Keel Exchange card (full width) */
.bento-visual--exchange {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0 28px 0;
    min-height: 280px;
}

.bento-exchange {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 0 4px;
}

.bento-exchange-shell {
    background: rgba(30, 27, 20, 0.72);
    border: 1px solid rgba(236, 211, 160, 0.22);
    border-radius: 14px 14px 0 0;
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 rgba(236, 211, 160, 0.15) inset;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.bento-exchange-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(201, 155, 62, 0.08) 0%, transparent 100%);
}

.bento-exchange-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-exchange-logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #c79232, #e9cd97);
    box-shadow: 0 0 16px rgba(199, 146, 50, 0.45);
}

.bento-exchange-name {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
}

.bento-exchange-pill {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ecd3a0;
    background: rgba(199, 146, 50, 0.15);
    border: 1px solid rgba(236, 211, 160, 0.35);
}

.bento-exchange-main {
    display: grid;
    grid-template-columns: 1fr minmax(168px, 200px);
    gap: 14px;
    padding: 16px 18px;
}

.bento-exchange-assets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.bento-exchange-asset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 10px 11px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.2s, background 0.2s;
}

.bento-card--exchange:hover .bento-exchange-asset {
    border-color: rgba(236, 211, 160, 0.2);
}

.bento-exchange-asset-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(236, 211, 160, 0.25), rgba(179, 138, 62, 0.2));
    border: 1px solid rgba(236, 211, 160, 0.2);
    position: relative;
}

.bento-exchange-asset-icon::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
}

.bento-exchange-asset-icon--company::after {
    inset: 8px 9px 6px;
    border-radius: 2px 2px 0 0;
    box-shadow: 0 6px 0 -2px rgba(255, 255, 255, 0.5);
}

.bento-exchange-asset-icon--succession::after {
    inset: 9px 8px;
    border-radius: 50%;
    box-shadow: -6px 0 0 -2px rgba(255, 255, 255, 0.45), 6px 0 0 -2px rgba(255, 255, 255, 0.45);
}

.bento-exchange-asset-icon--insolvency::after {
    inset: 8px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    border-radius: 0;
    background: rgba(233, 205, 151, 0.95);
}

.bento-exchange-asset-icon--vehicle::after {
    inset: 10px 5px 8px;
    border-radius: 3px;
    box-shadow: 0 0 0 2px rgba(30, 27, 20, 0.5) inset;
}

.bento-exchange-asset-icon--machine::after {
    inset: 7px 9px;
    border-radius: 1px;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.35);
}

.bento-exchange-asset-icon--realestate::after {
    inset: 8px 10px 6px;
    clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 40%);
    border-radius: 0;
}

.bento-exchange-asset-label {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
}

.bento-exchange-yield {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(199, 146, 50, 0.22) 0%, rgba(179, 138, 62, 0.12) 100%);
    border: 1px solid rgba(236, 211, 160, 0.4);
    box-shadow: 0 0 32px rgba(199, 146, 50, 0.2);
}

.bento-exchange-yield-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ecd3a0;
    margin-bottom: 4px;
}

.bento-exchange-yield-rate {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 0 24px rgba(226, 187, 108, 0.5);
}

.bento-exchange-yield-term {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.bento-exchange-yield-desc {
    margin: 8px 0 0;
    font-size: 0.5625rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
}

.bento-exchange-pipeline {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 18px 14px;
    background: rgba(0, 0, 0, 0.2);
}

.bento-exchange-pipeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.bento-exchange-pipeline-count {
    color: #ecd3a0;
    font-weight: 700;
}

.bento-exchange-deal {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.7fr auto;
    gap: 8px;
    align-items: center;
    padding: 7px 0;
    font-size: 0.6875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-exchange-deal:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bento-exchange-deal-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-exchange-deal-type {
    color: rgba(255, 255, 255, 0.5);
}

.bento-exchange-deal-vol {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-variant-numeric: tabular-nums;
}

.bento-exchange-deal-status {
    justify-self: end;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.5625rem;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.bento-exchange-deal-status--hot {
    background: rgba(199, 146, 50, 0.25);
    color: #ecd3a0;
    border: 1px solid rgba(236, 211, 160, 0.3);
}

.bento-exchange-deal-status--dd {
    background: rgba(233, 205, 151, 0.12);
    color: #e9cd97;
}

@media (max-width: 1024px) {
    .bento-card--wide,
    .bento-card--narrow {
        grid-column: span 12;
    }

    .bento-card--third {
        grid-column: span 6;
    }

    .bento-insolvency-wage {
        grid-template-columns: 1fr;
    }
}

/* About Showcase Section */
.about-showcase {
    position: relative;
    padding: 96px 0;
    background: #171510;
    overflow: hidden;
}

.about-showcase__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-showcase__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.about-showcase__orb--1 {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(199, 146, 50, 0.35) 0%, transparent 70%);
    animation: aboutOrbFloat 16s ease-in-out infinite alternate;
}

.about-showcase__orb--2 {
    width: 480px;
    height: 480px;
    bottom: -160px;
    right: -60px;
    background: radial-gradient(circle, rgba(172, 139, 64, 0.4) 0%, transparent 70%);
    animation: aboutOrbFloat 20s ease-in-out infinite alternate-reverse;
}

@keyframes aboutOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(24px, -18px) scale(1.08); }
}

.about-showcase__card {
    position: relative;
    
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(30, 27, 20, 0.92) 0%, rgba(23, 21, 16, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 120px rgba(201, 155, 62, 0.06);
    overflow: hidden;
}

.about-showcase__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.about-showcase__layout {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    min-height: 560px;
}

.about-showcase__nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 2.5rem 1.75rem 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.15);
}

.about-showcase__nav-indicator {
    position: absolute;
    left: 0;
    width: 3px;
    height: 52px;
    background: linear-gradient(180deg, #c79232, #e9cd97);
    border-radius: 0 3px 3px 0;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), height 0.35s ease;
    pointer-events: none;
    box-shadow: 0 0 16px rgba(211, 164, 74, 0.45);
}

.about-showcase__tab {
    appearance: none;
    background: none;
    border: none;
    text-align: left;
    padding: 0.85rem 0.75rem 0.85rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-showcase__tab:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(3px);
}

.about-showcase__tab.is-active {
    background: rgba(255, 255, 255, 0.06);
}

.about-showcase__tab-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.35;
    transition: color 0.25s ease;
}

.about-showcase__tab.is-active .about-showcase__tab-label {
    color: #fff;
}

.about-showcase__tab-index {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 0.25rem;
}

.about-showcase__tab.is-active .about-showcase__tab-index {
    color: rgba(233, 205, 151, 0.85);
}

.about-showcase__tab-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #c79232, #e9cd97);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.about-showcase__tab.is-active .about-showcase__tab-progress {
    opacity: 1;
}

.about-showcase__tab.is-active .about-showcase__tab-progress.is-running {
    animation: aboutTabProgress var(--about-autoplay-ms, 7000ms) linear forwards;
}

@keyframes aboutTabProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.about-showcase__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    gap: 2.5rem;
    padding: 2.75rem 2.75rem 2.75rem 2.25rem;
    align-items: center;
}

.about-showcase__copy {
    min-width: 0;
}

.about-showcase__copy.is-transitioning .about-showcase__headline-wrap,
.about-showcase__copy.is-transitioning .about-showcase__subline,
.about-showcase__copy.is-transitioning .about-showcase__step {
    opacity: 0;
    transform: translateY(12px);
}

.about-showcase__step {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(233, 205, 151, 0.9);
    margin: 0 0 1rem;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-showcase__headline-wrap {
    margin-bottom: 1.25rem;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-showcase__headline {
    font-size: clamp(1.75rem, 2.8vw, 2.375rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-showcase__headline .keel-gradient {
    display: inline;
}

.about-showcase__subline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 2rem;
    max-width: 36rem;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-showcase__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-showcase__pager {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-showcase__arrow {
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-showcase__arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.about-showcase__counter {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    min-width: 4.5rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.about-showcase__pause {
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.about-showcase__pause:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-showcase__pause[aria-pressed="true"] .about-showcase__pause-icon--pause {
    display: none;
}

.about-showcase__pause[aria-pressed="true"] .about-showcase__pause-icon--play {
    display: inline-flex !important;
}

.about-showcase__visual {
    position: relative;
    min-width: 0;
}

.about-browser {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e1b14;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 80px rgba(201, 155, 62, 0.08);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.about-showcase__visual.is-transitioning .about-browser {
    opacity: 0;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) scale(0.97) translateY(8px);
}

.about-browser__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.about-browser__dot:nth-child(1) { background: rgba(255, 95, 86, 0.75); }
.about-browser__dot:nth-child(2) { background: rgba(255, 189, 46, 0.75); }
.about-browser__dot:nth-child(3) { background: rgba(39, 201, 63, 0.75); }

.about-browser__url {
    margin-left: 8px;
    flex: 1;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-browser__screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #262217;
    overflow: hidden;
}

.about-browser__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.about-showcase__arrow:focus-visible,
.about-showcase__pause:focus-visible,
.about-showcase__tab:focus-visible {
    outline: 2px solid #e9cd97;
    outline-offset: 2px;
}

/* KPI Section */
.kpi-section {
    padding: 0;
    background: #171510;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kpi-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.kpi-section__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    padding: 56px 20px 64px;
}

.kpi-section__intro {
    max-width: 520px;
}

.kpi-section__title {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.kpi-section__subtitle {
    color: rgba(236, 211, 160, 0.75);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.kpi-value {
    display: inline-block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.kpi-value--cream {
    background: linear-gradient(120deg, #fff 0%, #f2e2b8 45%, #ecd3a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kpi-value--peach {
    background: linear-gradient(135deg, #f5ebcd 0%, #ecd3a0 50%, #dcb055 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kpi-value--amber {
    background: linear-gradient(160deg, #e9cd97 0%, #c99b3e 55%, #c79232 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kpi-value--orange {
    background: linear-gradient(90deg, #f1e0b4 0%, #e2bb6c 40%, #c79232 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kpi-value--keel {
    background: linear-gradient(145deg, #ecd3a0 0%, #d9ac5c 45%, #b38a3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.kpi-value--flame {
    background: linear-gradient(110deg, #fff 0%, #e9cd97 35%, #c79232 70%, #b38a3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@supports not (background-clip: text) {
    .kpi-value--cream  { color: #f5ebcd; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--peach  { color: #ecd3a0; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--amber  { color: #e9cd97; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--orange { color: #dcb055; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--keel { color: #c79232; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--flame  { color: #b38a3e; background: none; -webkit-text-fill-color: unset; }
}

.kpi-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    line-height: 1.45;
    font-weight: 400;
}

@media (max-width: 900px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .kpi-section__body {
        padding: 40px 20px 48px;
    }
}

@media (max-width: 540px) {
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .kpi-section__body {
        padding: 32px 20px 40px;
    }
}

/* Get Started CTA Section */
.get-started {
    padding: 0;
    background: #faf8f0;
    border-top: 1px solid #e9e4d4;
}

.get-started-inner {
    position: relative;
    overflow: hidden;
}

.get-started .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 64px;
}

.get-started-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem 2.5rem;
    align-items: start;
}

.get-started-main {
    max-width: 480px;
}

.get-started-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #1e1b14;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.get-started-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #6d6550;
    margin-bottom: 1.75rem;
}

.get-started-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.get-started-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.get-started-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e9e4d4;
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
}

.get-started-icon {
    width: 22px;
    height: 22px;
    color: #b38a3e;
}

.get-started-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e1b14;
    margin-bottom: 0;
    line-height: 1.3;
}

.get-started-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6d6550;
    margin-bottom: 0.25rem;
}

.get-started-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #b38a3e;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}

.get-started-link:hover {
    color: #8f6d22;
}

.get-started-keel {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    pointer-events: none;
}

.get-started-keel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #faf8f0 0%,
        rgba(250, 248, 240, 0.6) 25%,
        transparent 55%
    );
    z-index: 1;
}

.get-started-keel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #1c1913);
    z-index: 2;
}

.get-started-keel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

/* Demo Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 20, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 860px;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(30, 27, 20, 0.35);
    overflow: hidden;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #6d6550;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background: #fff;
    color: #1e1b14;
}

.modal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 480px;
    max-height: calc(100vh - 48px);
}

.modal-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: #1e1b14;
    color: #fff;
}

.modal-aside-bg {
    position: absolute;
    inset: 0;
}

.modal-aside-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.55;
}

.modal-aside-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 27, 20, 0.95) 0%,
        rgba(30, 27, 20, 0.7) 45%,
        rgba(30, 27, 20, 0.35) 100%
    );
}

.modal-aside-content {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
}

.modal-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.modal-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.modal-contact-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    margin: 0;
}

.modal-contact-role {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 0.75rem;
}

.modal-contact-link {
    font-size: 0.875rem;
    color: rgba(236, 211, 160, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-contact-link:hover {
    color: #ecd3a0;
}

.modal-contact-hours {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0;
}

.modal-main {
    position: relative;
    padding: 40px 36px;
    overflow-y: auto;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form .form-group {
    margin-bottom: 1.25rem;
}

.modal-form .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6d6550;
}

.modal-form .form-group input:not([type="checkbox"]):not([type="radio"]),
.modal-form .form-group textarea,
.modal-form .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e9e4d4;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e1b14;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.modal-form .form-group textarea:focus,
.modal-form .form-group select:focus {
    outline: none;
    border-color: #b38a3e;
    box-shadow: 0 0 0 3px rgba(179, 138, 62, 0.12);
}

.modal-form .form-group select {
    background: #fff;
    cursor: pointer;
}

.modal-fieldset {
    border: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.modal-fieldset legend {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6d6550;
    padding: 0;
}

.modal-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem 1rem;
}

.modal-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.25rem;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: #4a4433;
    cursor: pointer;
    user-select: none;
}

.modal-checkbox span {
    flex: 1;
    min-width: 0;
}

.modal-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    margin: 0;
    padding: 0;
    border: 1.5px solid #d8d2bd;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    accent-color: #b38a3e;
    cursor: pointer;
    vertical-align: middle;
}

.modal-checkbox input[type="checkbox"]:focus {
    outline: none;
    border-color: #b38a3e;
    box-shadow: 0 0 0 3px rgba(179, 138, 62, 0.12);
}

@media (max-width: 520px) {
    .modal-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.modal-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-modal-submit,
.lq-lead__submit {
    width: 100%;
}

.btn-modal-submit {
    margin-top: 0.25rem;
}

.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 360px;
    padding: 2rem;
}

.modal-success[hidden] {
    display: none;
}

.modal-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecd3a0, #b38a3e);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.modal-success h3 {
    font-size: 1.25rem;
    color: #1e1b14;
    margin-bottom: 0.5rem;
}

.modal-success p {
    font-size: 0.9375rem;
    color: #6d6550;
    margin-bottom: 1.5rem;
}

.modal-form.is-hidden {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #453f2f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e7e3d2;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b38a3e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: #3b2f26;
    color: #e7e3d2;
    padding: 0;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    padding-bottom: 2.5rem;
    align-items: start;
}

/* Brand in column 1, column 2 stays empty, link columns fill 3–5 */
.footer-brand + .footer-col {
    grid-column: 3;
}

.footer-brand {
    max-width: none;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: 26px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #a8a18c;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.footer-heading {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.125rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ecd3a0;
}

.footer-links__btn {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-links__btn:hover,
.footer-links__btn:focus-visible {
    color: #ecd3a0;
}

.footer-links--static span {
    color: #fff;
    font-size: 0.8125rem;
    line-height: 1.55;
}

.footer-country {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-country__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.9375rem;
    height: 0.625rem;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.footer-country__flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-contact-line a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
    color: #ecd3a0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: #ecd3a0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.footer-bottom-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
}

.footer-copyright,
.footer-meta {
    color: #7c7462;
    margin: 0;
    font-size: 0.8125rem;
}

.footer-version-badge {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: #a8a18c;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* Legal pages */
.legal-page {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f4f2ea;
}

.legal-main {
    flex: 1;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    background: #0f0e0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(ellipse 55% 45% at 12% 18%, rgba(205, 158, 66, 0.42) 0%, transparent 58%),
        radial-gradient(ellipse 50% 40% at 88% 12%, rgba(179, 146, 74, 0.34) 0%, transparent 52%),
        radial-gradient(ellipse 45% 55% at 72% 92%, rgba(179, 138, 62, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 28% 78%, rgba(216, 182, 106, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 35% 30% at 55% 45%, rgba(208, 177, 105, 0.12) 0%, transparent 48%),
        linear-gradient(155deg, #0f0e0a 0%, #201c12 38%, #1e1a12 68%, #16140e 100%);
    filter: blur(0.5px);
    z-index: 0;
    animation: legal-hero-mesh 22s ease-in-out infinite alternate;
}

.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes legal-hero-mesh {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.06) translate3d(-1.5%, 1%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-hero::before {
        animation: none;
    }
}

.legal-hero .container {
    position: relative;
    z-index: 2;
    padding-top: calc(5.5rem + 3rem);
    padding-bottom: 3.5rem;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.legal-hero .legal-updated {
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.legal-main > .container {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    border-left-color: rgba(28, 25, 19, 0.1);
    border-right-color: rgba(28, 25, 19, 0.1);
}

.legal-content {
    margin: 0;
    padding: 0;
}

.legal-lead {
    color: #5c553f;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.legal-section {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
}

.legal-section h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1c1913;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section dl:last-child {
    margin-bottom: 0;
}

.legal-dl {
    display: grid;
    grid-template-columns: minmax(10rem, 13rem) 1fr;
    gap: 0.75rem 2rem;
    margin: 0;
}

.legal-dl dt {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7c7462;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-dl dd {
    margin: 0;
    color: #453f2f;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.legal-dl .legal-address {
    margin: 0;
}

.legal-content h1 {
    font-size: 2.25rem;
    color: #1c1913;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #7c7462;
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    color: #1c1913;
    margin: 0 0 0.75rem;
}

.legal-content h3 {
    font-size: 1.0625rem;
    color: #2a261b;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
    color: #5c553f;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.legal-section p,
.legal-section li {
    margin: 0 0 0.875rem;
}

.legal-content ul {
    margin: 0.5rem 0 1rem 1.25rem;
}

.legal-content a {
    color: #b38a3e;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-notice {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #7c7462;
}

.legal-address {
    font-style: normal;
    line-height: 1.8;
    margin: 0.5rem 0 1rem;
    color: #453f2f;
}

@media (max-width: 640px) {
    .legal-hero .container {
        padding-top: calc(5.25rem + 2rem);
        padding-bottom: 2.5rem;
    }

    .legal-section {
        padding: 1.25rem 1.125rem;
    }

    .legal-dl {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .legal-dl dt:not(:first-child) {
        margin-top: 0.75rem;
    }
}

.nav-logo-link {
    display: flex;
    align-items: center;
}

/* Stakeholder mega menu needs hamburger nav below 1101px (four tabs overflow desktop bar). */
@media (max-width: 1100px) {
    .nav-mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        gap: 0;
        background: #1e1b14;
        padding: 1rem 20px 2rem;
        overflow-y: auto;
        z-index: 1002;
    }

    .nav-menu.is-mobile-open {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu > li > a,
    .nav-dropdown-trigger {
        display: flex;
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-dropdown-trigger::after {
        display: none;
    }

    .nav-mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        margin: 0 0 1rem;
        max-height: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .nav-dropdown.is-open .nav-mega-menu {
        display: block;
    }

    .nav-mega-inner {
        padding: 1rem;
    }

    .nav-mega-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .nav-mega-actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-mega-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-mega-panel-head {
        flex-direction: column;
        gap: 0.75rem;
        border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    .nav-mega-panel-desc {
        color: rgba(255, 255, 255, 0.72);
    }

    .nav-mega-panel-link {
        color: #ecd3a0;
    }

    .nav-service-grid {
        grid-template-columns: 1fr;
    }

    .nav-service-card {
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-service-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(233, 205, 151, 0.35);
    }

    .nav-service-card__art {
        width: 100%;
    }

    .nav-service-card__body {
        background: transparent;
    }

    .nav-service-card__name {
        color: #fff;
    }

    .nav-service-card__desc,
    .nav-service-card__features li {
        color: rgba(255, 255, 255, 0.72);
    }

    .nav-service-card__features {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .nav-service-card__type {
        color: rgba(255, 255, 255, 0.55);
    }

    .nav-service-card:has(.nav-service-card__art--recovery) .nav-service-card__type {
        color: rgba(240, 226, 178, 0.85);
    }

    .nav-product-item:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: none;
    }

    .nav-product-name {
        color: #fff;
    }

    .nav-product-desc {
        color: rgba(255, 255, 255, 0.65);
    }

    .nav-mega-title {
        color: #fff;
        font-size: 1.125rem;
    }

    .nav-mega-desc {
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-mega-footer-item:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-mega-footer-title {
        color: #fff;
    }

    .nav-mega-footer-desc {
        color: rgba(255, 255, 255, 0.6);
    }

    .nav-actions {
        display: none;
    }

    .nav-actions.is-mobile-visible {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.5rem;
    }

    .btn-nav-cta {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        max-width: none;
        padding: 0.625rem 1rem;
        margin-left: 0;
    }

    .btn-nav-login {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .btn-nav-cta {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .nav-mega-backdrop {
        top: 65px;
    }

    .language-switch {
        align-self: flex-start;
    }

    .lang-menu {
        right: auto;
        left: 0;
        transform-origin: top left;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-logos-grid .logo-img {
        height: 35px;
    }
    
    .hero-logo {
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-screenshot {
        justify-content: center;
    }
    
    .hero-screenshot img {
        transform: translateX(0);
        max-width: 100%;
    }
    
    .trust-logos-grid {
        gap: 2rem;
    }

    .services {
        padding: 64px 0;
    }

    .services-intro {
        margin-bottom: 2.5rem;
    }

    .services-hub {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid #e9e4d4;
        padding-bottom: 1rem;
    }

    .services-nav-indicator {
        display: none;
    }

    .services-nav-item {
        padding: 0.5rem 0;
    }

    .services-nav-item:hover {
        transform: none;
    }

    .services-nav-item.active {
        border-bottom: 2px solid #c79232;
    }
    
    .logo-placeholder {
        min-width: 100px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .stakeholders-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stakeholder-card {
        padding: 1.5rem;
    }
    
    .stakeholder-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-placeholder {
        font-size: 1.5rem;
    }
    
    .features-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-card--wide  { grid-column: span 6; }
    .bento-card--narrow { grid-column: span 6; }
    .bento-card--third  { grid-column: span 6; }
    .bento-card--full   { grid-column: span 6; }

    .bento-insolvency-wage {
        grid-template-columns: 1fr;
    }
    
    .stakeholders-container {
        margin-top: 2rem;
    }
    
    .stakeholders-scroll-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stakeholders-scroll-button-left {
        left: -20px;
    }
    
    .stakeholders-scroll-button-right {
        right: -20px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .get-started-main {
        max-width: 100%;
    }

    .get-started .container {
        padding-top: 64px;
        padding-bottom: 48px;
    }

    .get-started-keel {
        height: 100px;
    }

    .modal-layout {
        grid-template-columns: 1fr;
    }

    .modal-aside {
        min-height: 200px;
    }

    .modal-aside-content {
        padding: 24px;
    }

    .modal-main {
        padding: 28px 24px 32px;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-card--wide,
    .bento-card--narrow,
    .bento-card--third,
    .bento-card--full {
        grid-column: span 1;
        min-height: 320px;
    }

    .bento-card-title {
        font-size: 1rem;
        max-width: 85%;
    }

    .bento-insolvency-wage {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .bento-insolvency-wage__steps {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }

    .bento-insolvency-wage__step:not(:last-child)::after {
        display: none;
    }

    .bento-visual--exchange {
        padding: 0 16px 12px;
    }

    .bento-exchange-main {
        grid-template-columns: 1fr;
    }

    .bento-exchange-assets {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-exchange-yield {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 12px;
    }

    .bento-exchange-yield-desc {
        flex: 1 1 100%;
        margin-top: 6px;
    }

    .bento-exchange-deal {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 8px;
    }

    .bento-exchange-deal-name {
        flex: 1 1 auto;
        min-width: 0;
    }

    .bento-exchange-deal-type,
    .bento-exchange-deal-vol {
        font-size: 0.625rem;
        order: 3;
    }

    .bento-exchange-deal-type::after {
        content: ' · ';
        opacity: 0.5;
    }

    .bento-exchange-deal-status {
        flex-shrink: 0;
        order: 2;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .footer-brand + .footer-col {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 200px 0 60px;
        margin-top: -50px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    section {
        padding: 60px 0;
    }

    .service-item-body-inner {
        padding-left: 0;
    }

    .service-item-index {
        display: none;
    }

    .service-item-trigger {
        gap: 0.875rem;
    }
    
    .bento-card-top {
        padding: 20px 20px 0;
    }
    
    .about-showcase {
        padding: 64px 0;
    }

    .about-showcase__layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-showcase__nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 1.25rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        gap: 0.5rem;
        scrollbar-width: none;
    }

    .about-showcase__nav::-webkit-scrollbar {
        display: none;
    }

    .about-showcase__nav-indicator {
        display: none;
    }

    .about-showcase__tab {
        flex: 0 0 auto;
        padding: 0.65rem 1rem;
        white-space: nowrap;
    }

    .about-showcase__tab-index {
        display: none;
    }

    .about-showcase__stage {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.25rem 2rem;
        gap: 2rem;
    }

    .about-browser {
        transform: none;
    }

    .about-showcase__visual.is-transitioning .about-browser {
        transform: scale(0.98) translateY(8px);
    }

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .modal-dialog {
        transition: none;
    }

    .modal {
        transition: none;
    }

    .header {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-eyebrow,
    .hero-headline,
    .hero-cta > *,
    .trust-logos {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .btn-nav-cta {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        max-width: none;
        padding: 0.375rem 0.75rem;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.btn-nav-cta:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-periwinkle);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .modal {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Platform homepage — typography (index.html) */
body.lp-platform {
    font-family: var(--font-ui);
    color: var(--color-ink-secondary);
    -webkit-font-smoothing: antialiased;
}

.lp-platform .services-heading,
.lp-platform .section-title,
.lp-platform .get-started-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

.lp-platform .kpi-section__title,
.lp-platform .about-showcase__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-display-md);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
}

.lp-platform .kpi-section__title {
    color: #fff;
}

.lp-platform .about-showcase__headline {
    color: #fff;
}

.lp-platform .bento-card-title,
.lp-platform .get-started-card-title,
.lp-platform .stakeholder-card h3:not(.font-kalnia-bold) {
    font-family: var(--font-ui);
    font-weight: 600;
    letter-spacing: var(--tracking-title);
    color: var(--color-ink);
}

.lp-platform .services-lead,
.lp-platform .section-subtitle,
.lp-platform .get-started-desc {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
}

/* Recovery landing pages — shared type + color */
.lp-recovery {
    font-family: var(--font-ui);
    color: var(--color-ink-secondary);
    -webkit-font-smoothing: antialiased;
}

.lp-recovery .lq-section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

.lp-recovery .lq-section__subtitle,
.lp-recovery .lq-split p {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
}

.lp-recovery .lq-product__eyebrow {
    font-size: var(--text-label);
    letter-spacing: var(--tracking-caps);
    color: var(--theme-hero-eyebrow);
}

.lp-recovery .lq-section--calculator {
    background: var(--color-surface-canvas);
}

.lp-recovery .lq-section--alt {
    background: var(--color-surface);
}

.lp-recovery .lq-section {
    padding: 0;
}

/* ─── Liquiditätsstatus landing page ─── */
.lp-liquiditaetsstatus {
    background: #fafafa;
}

/* Landing hero — extends shared .hero (index.html) */
.hero--landing {
    padding: 0;
}

.hero--landing .hero-content {
    max-width: 60rem;
    width: 100%;
}

/* Homepage-only headline: bigger and bolder than the shared hero */
.hero--landing .hero-headline {
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--theme-hero-headline-lead);
}

@media (prefers-reduced-motion: no-preference) {
    .hero--landing .hero-benefits {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero--landing .hero-benefits li {
        opacity: 0;
        transform: translateY(12px);
        animation: heroFadeUp 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero--landing .hero-benefits li:nth-child(1) { animation-delay: 0.3s; }
    .hero--landing .hero-benefits li:nth-child(2) { animation-delay: 0.38s; }
    .hero--landing .hero-benefits li:nth-child(3) { animation-delay: 0.46s; }
    .hero--landing .hero-benefits li:nth-child(4) { animation-delay: 0.54s; }
}

/* Fixed legal alerts — bottom-right, over all page content */
.page-float-alerts {
    display: none !important;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1500;
    flex-direction: column;
    gap: 0.75rem;
    width: min(320px, calc(100vw - 2rem));
    pointer-events: none;
    transition:
        opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.4s;
}

.page-float-alerts.is-scrolled-away {
    opacity: 0;
    transform: translateY(16px);
    visibility: hidden;
}

.page-float-alerts__card {
    pointer-events: auto;
    background: rgba(30, 27, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 1.125rem 1.25rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(16px);
    animation: pageFloatIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-float-alerts__card:nth-child(1) {
    animation-delay: 0.6s;
}

.page-float-alerts__card:nth-child(2) {
    animation-delay: 0.75s;
}

.page-float-alerts__card:nth-child(3) {
    animation-delay: 0.9s;
}

.page-float-alerts__card:nth-child(4) {
    animation-delay: 1.05s;
}

.page-float-alerts__head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.page-float-alerts__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
}

.page-float-alerts__icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.page-float-alerts__icon--danger {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.page-float-alerts__icon--warning {
    background: rgba(179, 138, 62, 0.25);
    color: #ecd3a0;
}

.page-float-alerts__card--danger {
    border-color: rgba(239, 68, 68, 0.55);
    background: rgba(32, 26, 12, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.page-float-alerts__card--warning {
    border-color: rgba(179, 138, 62, 0.65);
    background: linear-gradient(145deg, rgba(43, 35, 14, 0.96) 0%, rgba(55, 44, 18, 0.96) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.page-float-alerts__card--pricing {
    border-color: rgba(245, 158, 11, 0.55);
    background: linear-gradient(145deg, rgba(28, 25, 19, 0.96) 0%, rgba(51, 46, 31, 0.96) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.page-float-alerts__icon--pricing {
    background: rgba(245, 158, 11, 0.22);
    color: #fbbf24;
}

.page-float-alerts__card--pricing .page-float-alerts__title {
    color: #fde68a;
}

.page-float-alerts__card--pricing p {
    color: rgba(255, 255, 255, 0.88);
}

.page-float-alerts__card--warning .page-float-alerts__title {
  
}

.page-float-alerts__card--warning p {
    color: rgba(245, 235, 205, 0.92);
}

.page-float-alerts__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -0.01em;
}

.page-float-alerts__card p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

@keyframes pageFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-float-alerts__card {
        animation: pageFloatIn 0.01s forwards !important;
        opacity: 1;
        transform: none;
    }
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: -1rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero-benefits li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--theme-hero-muted);
    margin: 0;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
    font-size: 0.9375rem;
}

.lq-section {
    padding: 0;
}

.lq-section .container {
    padding: 80px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.lq-section--alt {
    background: #fff;
}

.lq-section--calculator {
    background: #f3f1e7;
    padding-top: 4rem;
}

.lq-section--product {
    position: relative;
    background: linear-gradient(
        var(--theme-hero-gradient-angle),
        var(--theme-hero-gradient-start) 0%,
        var(--theme-hero-gradient-end) 100%
    );
    color: var(--theme-hero-text);
    overflow: hidden;
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

.lq-section--product .lq-product {
    position: static;
}

.lq-section--product .lq-product__layout {
    display: block;
    max-width: 36rem;
}

.lq-section--product .lq-product__content {
    position: relative;
    z-index: 2;
}

.lq-section--product .lq-product__visual {
    position: absolute;
    right: 0;
    bottom: clamp(0.5rem, 2vh, 1.5rem);
    width: min(540px, 52%);
    max-width: calc(100% - 20rem);
    transform: translateX(10%);
    z-index: 1;
}

.lq-section--product .lq-product__browser {
    pointer-events: auto;
}

.lq-section--product .lq-section__title,
.lq-section--product p,
.lq-section--product .lq-product__benefits li {
    color: var(--theme-hero-muted);
}

.lq-section--product .lq-section__title {
    color: var(--theme-hero-headline-lead);
}

.lq-section--product .lq-product__eyebrow {
    color: var(--theme-hero-eyebrow);
}

.lq-product__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.lq-product__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lq-product__benefits li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lq-product__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.lq-product__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lq-product__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

/* Default grid — overridden in .lq-section--product for fixed screenshot */

.lq-product__visual {
    min-width: 0;
}

.lq-product__screenshot {
    margin: 0;
}

.lq-product__browser {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.lq-product__browser-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lq-product__browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.lq-product__browser-dot:nth-child(1) { background: rgba(255, 95, 86, 0.7); }
.lq-product__browser-dot:nth-child(2) { background: rgba(255, 189, 46, 0.7); }
.lq-product__browser-dot:nth-child(3) { background: rgba(39, 201, 63, 0.7); }

.lq-product__browser-url {
    margin-left: 6px;
    flex: 1;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lq-product__browser-screen {
    aspect-ratio: 16 / 10;
    background: #262217;
}

.lq-product__browser-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.lq-section--cta {
    background: #fff;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.lq-section__header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.lq-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #1c1913;
    margin-bottom: 0.75rem;
}

body.lp-platform .lq-section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

.lq-section__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #7c7462;
}

.lq-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lq-split p {
    color: #5c553f;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lq-formula-box {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.lq-formula-box__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7c7462;
    margin-bottom: 0.5rem;
}

.lq-formula-box__formula {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1c1913;
    margin-bottom: 1.25rem;
    font-variant-numeric: tabular-nums;
}

.lq-formula-box__rules {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lq-formula-box__rules li {
    font-size: 0.875rem;
    color: #5c553f;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lq-tone {
    display: inline-block;
    min-width: 4.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
}

.lq-tone--success { color: #16a34a; }
.lq-tone--warning { color: #d97706; }
.lq-tone--danger { color: #dc2626; }

/* Wizard */
.lq-wizard {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.lq-wizard__progress {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lq-wizard__progress-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: #f3f1e7;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #7c7462;
    cursor: default;
    transition: background 0.2s, color 0.2s;
}

.lq-wizard__progress-item.is-done {
    cursor: pointer;
    background: #faf6e8;
    color: #059669;
}

.lq-wizard__progress-item.is-active {
    background: #1c1913;
    color: #fff;
}

.lq-wizard__progress-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.75rem;
    font-weight: 700;
}

.lq-wizard__progress-item.is-active .lq-wizard__progress-num {
    background: rgba(255, 255, 255, 0.2);
}

.lq-wizard__panel-title {
    font-size: 1.25rem;
    color: #1c1913;
    margin: 0 0 0.5rem;
}

.lq-wizard__panel-desc {
    color: #7c7462;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

/* Input mode tabs (manual vs. file upload) — inside .lq-wizard / .sr-readiness */
.lq-widget-input {
    display: block;
}

.lq-wizard > .lq-input-tabs,
.sr-readiness > .lq-input-tabs {
    margin-bottom: 1.5rem;
}

.lq-wizard > .lq-input-panel[data-input-panel="upload"],
.sr-readiness > .lq-input-panel[data-input-panel="upload"] {
    margin-bottom: 0;
}

.lq-input-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.375rem;
    background: #f3f1e7;
    border-radius: 10px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.lq-input-tabs__tab {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #7c7462;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.lq-input-tabs__tab:hover {
    color: #453f2f;
}

.lq-input-tabs__tab.is-active {
    background: #fff;
    color: #1c1913;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.lq-input-panel[hidden] {
    display: none !important;
}

/* File upload (inside widget card) */
.lq-file-upload__intro {
    color: #453f2f;
    font-size: 0.9375rem;
    margin: 0 0 1rem;
    line-height: 1.55;
}

.lq-file-upload__types {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.lq-file-upload__types li {
    font-size: 0.8125rem;
    color: #7c7462;
    padding-left: 1.125rem;
    position: relative;
}

.lq-file-upload__types li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #059669;
}

.lq-file-upload__dropzone {
    border: 2px dashed #d6d1bd;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: #fafafa;
}

.lq-file-upload__dropzone:hover,
.lq-file-upload__dropzone.is-dragover {
    border-color: #1c1913;
    background: #f3f1e7;
}

.lq-file-upload__dropzone:focus-visible {
    outline: 2px solid #1c1913;
    outline-offset: 2px;
}

.lq-file-upload__icon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
    color: #a8a18c;
    margin: 0 auto 0.75rem;
}

.lq-file-upload__dropzone-title {
    font-weight: 600;
    color: #1c1913;
    margin: 0 0 0.375rem;
    font-size: 0.9375rem;
}

.lq-file-upload__dropzone-hint {
    font-size: 0.8125rem;
    color: #a8a18c;
    margin: 0;
}

.lq-file-upload__filelist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lq-file-upload__file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: #fbfaf4;
    border: 1px solid #e7e3d2;
    border-radius: 8px;
    font-size: 0.875rem;
}

.lq-file-upload__file-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #453f2f;
}

.lq-file-upload__file-size {
    color: #a8a18c;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.lq-file-upload__file-remove {
    appearance: none;
    border: none;
    background: transparent;
    color: #a8a18c;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

.lq-file-upload__file-remove:hover {
    color: #dc2626;
}

.lq-file-upload__actions {
    margin-top: 1.25rem;
}

.lq-file-upload__note {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: #a8a18c;
    line-height: 1.5;
}

.lq-file-upload__status {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
}

.lq-file-upload__status--loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f3f1e7;
    color: #453f2f;
}

.lq-file-upload__status--success {
    background: #faf6e8;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.lq-file-upload__status--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.lq-file-upload__status-title {
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.lq-file-upload__spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d6d1bd;
    border-top-color: #1c1913;
    border-radius: 50%;
    animation: lq-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes lq-spin {
    to { transform: rotate(360deg); }
}

.lq-file-upload__extracted {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.lq-file-upload__extracted-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    padding: 0.25rem 0;
}

.lq-file-upload__extracted-item strong {
    font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
    .lq-input-tabs {
        width: 100%;
    }

    .lq-input-tabs__tab {
        flex: 1;
        text-align: center;
        padding: 0.625rem 0.75rem;
    }
}

.lq-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem 1.5rem;
}

.lq-form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.lq-wizard__panel .lq-form-grid--2 .lq-field {
    min-width: 0;
}

.lq-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #453f2f;
    margin-bottom: 0.375rem;
}

.lq-input-wrap {
    position: relative;
}

.lq-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d6d1bd;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s;
}

.lq-input--currency {
    padding-right: 2rem;
    font-variant-numeric: tabular-nums;
}

.lq-input-suffix {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a18c;
    font-size: 0.875rem;
    pointer-events: none;
}

.lq-input:focus {
    outline: none;
    border-color: #b38a3e;
    box-shadow: 0 0 0 3px rgba(179, 138, 62, 0.12);
}

.lq-field-hint {
    font-size: 0.75rem;
    color: #a8a18c;
    margin: 0.375rem 0 0;
    line-height: 1.4;
}

.lq-wizard__nav {
    display: grid;
    grid-template-columns: minmax(5.5rem, auto) 1fr minmax(5.5rem, auto);
    align-items: center;
    gap: 1rem 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e7e3d2;
}

.lq-wizard__nav [data-wizard-prev] {
    justify-self: start;
}

.lq-wizard__nav [data-wizard-next] {
    justify-self: end;
}

.lq-disclaimer {
    font-size: 0.75rem;
    color: #a8a18c;
    margin: 0;
    line-height: 1.45;
    text-align: center;
}

/* Result KPIs */
.lq-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lq-kpi {
    background: #fbfaf4;
    border: 1px solid #e7e3d2;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.lq-kpi__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #7c7462;
    margin-bottom: 0.25rem;
}

.lq-kpi__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1913;
    font-variant-numeric: tabular-nums;
}

.lq-kpi__value--success { color: #16a34a; }
.lq-kpi__value--warning { color: #d97706; }
.lq-kpi__value--danger { color: #dc2626; }

.lq-gap {
    font-size: 0.9375rem;
    color: #5c553f;
    margin-bottom: 1rem;
}

.lq-result-alert {
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.lq-result-alert--success {
    background: #faf6e8;
    border: 1px solid #a7f3d0;
}

.lq-result-alert--warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.lq-result-alert--danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.lq-result-alert__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1c1913;
}

.lq-result-alert__body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5c553f;
    margin: 0;
}

/* Lead form */
.lq-lead {
    background: #fbfaf4;
    border: 1px solid #e7e3d2;
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.lq-lead__title {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: #1c1913;
}

.lq-lead__desc {
    font-size: 0.9375rem;
    color: #7c7462;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lq-lead__submit {
    margin-top: 0.5rem;
}

.lq-lead__privacy {
    font-size: 0.75rem;
    color: #a8a18c;
    margin: 0.75rem 0 0;
}

.lq-lead__privacy a {
    color: #b38a3e;
}

.lq-lead__success {
    text-align: center;
    padding: 1.5rem;
}

.lq-lead__success-icon {
    font-size: 2rem;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

/* Cards, steps, table, FAQ */
.lq-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lq-card {
    background: var(--color-surface-canvas);
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
}

.lq-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.lq-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.lq-card__icon--danger {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.lq-card__icon--warning {
    background: rgba(179, 138, 62, 0.12);
    color: #b38a3e;
}

.lq-card__icon--legal {
    background: rgba(30, 27, 20, 0.08);
    color: #453f2f;
}

.lq-card__icon--info {
    background: rgba(176, 139, 46, 0.12);
    color: #b08b2e;
}

.lq-card__icon--success {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.lq-card h3 {
    font-size: 1.0625rem;
    color: #1c1913;
    margin: 0 0 0.75rem;
}

.lq-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5c553f;
    margin: 0;
}

.lq-steps {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lq-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.lq-step__num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1913;
    color: #fff;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.9375rem;
}

.lq-step h3 {
    font-size: 1.0625rem;
    margin: 0 0 0.375rem;
    color: #1c1913;
}

.lq-step p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5c553f;
    margin: 0;
}

.lq-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border: 1px solid #e7e3d2;
    border-radius: 12px;
}

.lq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.lq-table th,
.lq-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e7e3d2;
    vertical-align: top;
}

.lq-table th {
    background: #fbfaf4;
    font-weight: 600;
    color: #453f2f;
}

.lq-table td {
    color: #5c553f;
    line-height: 1.5;
}

.lq-table tbody tr:last-child td {
    border-bottom: none;
}

.lq-product__content {
    max-width: none;
}

.lq-faq {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.lq-faq__item {
    background: #f4f1ee;
    border-radius: 12px;
    padding: 0 1.25rem;
    box-shadow: 0 1px 2px rgba(28, 25, 19, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.lq-faq__item:hover {
    border-color: #a8a18c;
    box-shadow: 0 4px 14px rgba(28, 25, 19, 0.07);
}

.lq-faq__item[open] {
    background: #fff;
    border-color: rgba(179, 138, 62, 0.35);
    box-shadow: 0 4px 18px rgba(28, 25, 19, 0.08);
}

.lq-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.45;
    color: #1c1913;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.lq-faq__item summary::-webkit-details-marker,
.lq-faq__item summary::marker {
    display: none;
}

.lq-faq__item summary::after {
    content: '';
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #f4f1e6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%234b5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.2s ease;
}

.lq-faq__item summary:hover {
    color: #b38a3e;
}

.lq-faq__item summary:hover::after {
    background-color: rgba(179, 138, 62, 0.12);
}

.lq-faq__item[open] summary {
    color: #1c1913;
    padding-bottom: 1rem;
}

.lq-faq__item[open] summary::after {
    transform: rotate(180deg);
    background-color: rgba(179, 138, 62, 0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23D25401' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lq-faq__item p {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5c553f;
    margin: 0;
    border-top: 1px solid #e7e3d2;
    padding-top: 1rem;
}

.lq-cta-final h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1c1913;
    margin-bottom: 0.75rem;
}

.lq-cta-final p {
    font-size: 1.0625rem;
    color: #7c7462;
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .lq-split,
    .lq-cards,
    .lq-kpi-strip {
        grid-template-columns: 1fr;
    }

    .lq-form-grid--2 {
        grid-template-columns: 1fr;
    }

    .lq-product__layout {
        grid-template-columns: 1fr;
    }

    .lq-section--product .lq-product__visual {
        position: static;
        width: 100%;
        max-width: none;
        right: auto;
        bottom: auto;
        transform: none;
        margin-bottom: 2rem;
    }

    .lq-section--product .lq-product__layout {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .page-float-alerts {
        bottom: 0.75rem;
        right: 0.75rem;
        width: min(300px, calc(100vw - 1.5rem));
    }

    .page-float-alerts__card {
        padding: 1rem 1.125rem;
    }

    .page-float-alerts__title {
        font-size: 0.875rem;
    }

    .page-float-alerts__card p {
        font-size: 0.78125rem;
    }

    .lq-wizard {
        padding: 1.25rem;
    }

    .lq-wizard__progress-item span:not(.lq-wizard__progress-num) {
        display: none;
    }

    .lq-kpi-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/* 404 error page */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-page__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 6rem;
    max-width: 36rem;
    margin: 0 auto;
}

.error-page__code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #c79232, #e9cd97);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.error-page__main h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 1rem;
    color: #1e1b14;
}

.error-page__lead {
    color: #6d6550;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.error-page__link {
    color: #b38a3e;
    font-weight: 500;
    text-decoration: none;
}

.error-page__link:hover {
    text-decoration: underline;
}

/* ─── Keel Recovery (Cockpit) landing pages ─── */
.lp-recovery,
.lp-liquiditaetsstatus {
    background: #fafafa;
}

/* Scroll reveal — recovery landing pages */
@media (prefers-reduced-motion: no-preference) {
    .lp-recovery .scroll-reveal {
        --reveal-y: 26px;
        --reveal-x: 0px;
        --reveal-scale: 1;
        --reveal-blur: 5px;
        --reveal-duration: 1s;
        --reveal-delay: 0ms;
        --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);

        opacity: 0;
        transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
        filter: blur(var(--reveal-blur));
        transition:
            opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
            transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
            filter calc(var(--reveal-duration) * 0.75) var(--reveal-ease) var(--reveal-delay);
        will-change: opacity, transform, filter;
    }

    .lp-recovery .scroll-reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
        will-change: auto;
    }

    .lp-recovery .scroll-reveal--up {
        --reveal-y: 26px;
        --reveal-blur: 5px;
    }

    .lp-recovery .scroll-reveal--soft {
        --reveal-y: 18px;
        --reveal-blur: 3px;
        --reveal-duration: 0.88s;
    }

    .lp-recovery .scroll-reveal--left {
        --reveal-x: -30px;
        --reveal-y: 8px;
        --reveal-blur: 4px;
    }

    .lp-recovery .scroll-reveal--right {
        --reveal-x: 30px;
        --reveal-y: 8px;
        --reveal-blur: 4px;
    }

    .lp-recovery .scroll-reveal--scale {
        --reveal-y: 22px;
        --reveal-scale: 0.975;
        --reveal-blur: 4px;
        --reveal-duration: 1.05s;
    }

    .lp-recovery .lq-card.is-visible .lq-card__icon {
        animation: revealIconSettle 0.75s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay, 0ms) + 140ms) both;
    }
}

@keyframes revealIconSettle {
    from {
        opacity: 0;
        transform: scale(0.84) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sr-chip {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #f3f1e7;
    color: #453f2f;
}

.sr-chip--danger { background: #fef2f2; color: #dc2626; }
.sr-chip--warning { background: #fffbeb; color: #d97706; }
.sr-chip--success { background: #faf6e8; color: #059669; }

.sr-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #453f2f;
    cursor: pointer;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e7e3d2;
}

.sr-check-label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sr-readiness {
    background: #fff;
    border: 1px solid #e7e3d2;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.sr-readiness__checks {
    margin-bottom: 1.5rem;
}

.sr-readiness__run {
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Hub recovery — design system (keel-recovery.html) */
.lp-keel-recovery {
    background: #fff;
    font-family: var(--font-ui);
    color: var(--color-ink-secondary);
    -webkit-font-smoothing: antialiased;
}

.lp-keel-recovery .sr-section-head__title,
.lp-keel-recovery .lq-cta-final > h2,
.lp-product .sr-section-head__title,
.lp-product .lq-cta-final > h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

/* Quote stays lighter — it's editorial copy, not a headline */
.lp-keel-recovery .sr-quote__block p,
.lp-product .sr-quote__block p {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

.lp-keel-recovery .sr-feature__eyebrow,
.lp-keel-recovery .sr-methods__phase,
.lp-keel-recovery .sr-feature__metric-label,
.lp-keel-recovery .sr-pillar-card__num,
.lp-product .sr-feature__eyebrow,
.lp-product .sr-methods__phase,
.lp-product .sr-feature__metric-label,
.lp-product .sr-pillar-card__num {
    font-family: var(--font-ui);
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    line-height: var(--leading-label);
}

.lp-keel-recovery .sr-suite-card__title,
.lp-keel-recovery .sr-feature__title,
.lp-keel-recovery .sr-pillar-card__title,
.lp-product .sr-suite-card__title,
.lp-product .sr-feature__title,
.lp-product .sr-pillar-card__title {
    font-family: var(--font-ui);
    font-weight: 600;
    letter-spacing: var(--tracking-title);
    color: var(--color-ink);
}

.sr-stats {
    display: none;
}

/* Section headers */
.sr-section-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto var(--space-block);
}

.sr-section-head--compact {
    margin-bottom: var(--space-block);
}

.sr-section-head__title {
    font-size: var(--text-display-md);
    line-height: var(--leading-display);
    margin: 0 0 var(--space-stack-md);
}

.sr-section-head__lead {
    font-family: var(--font-ui);
    font-size: var(--text-lead);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
    margin: 0;
}

.sr-suite {
    padding: 0;
    background: #fff;
}

.sr-suite .container {
    padding: 80px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.sr-suite__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-stack-lg);
}

.sr-suite-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-stack-xl) var(--space-stack-lg);
    box-shadow: 0 1px 2px rgba(30, 27, 20, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sr-suite-card:hover {
    box-shadow: 0 8px 32px rgba(30, 27, 20, 0.07);
    transform: translateY(-2px);
}

.sr-suite-card__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.5rem;
    /* Break out of the card padding so the artwork runs edge to edge */
    margin: calc(-1 * var(--space-stack-xl)) calc(-1 * var(--space-stack-lg)) var(--space-stack-lg);
    border-radius: calc(var(--radius-sm) - 1px) calc(var(--radius-sm) - 1px) 0 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sr-suite-card--understand .sr-suite-card__visual { background-image: url("images/step-01-background01.png"); }
.sr-suite-card--release .sr-suite-card__visual { background-image: url("images/step-02-background01.png"); }
.sr-suite-card--recap .sr-suite-card__visual { background-image: url("images/step-03-background01.png"); }

/* Legibility scrim over the artwork */
.sr-suite-card__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgb(255 255 255 / 80%), rgb(225 200 175 / 90%));
}

.sr-suite-card__visual svg {
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    z-index: 1;
    color: var(--color-ink);
}

.sr-suite-card__title {
    font-size: var(--text-title-lg);
    line-height: var(--leading-title);
    margin: 0 0 var(--space-stack-sm);
}

.sr-suite-card__desc {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
    margin: 0 0 var(--space-stack-md);
    flex: 1;
}

.sr-suite-card__tags {
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--color-ink-faint);
    letter-spacing: 0.01em;
    margin: 0 0 var(--space-stack-lg);
}

.sr-suite-card__link {
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

.sr-suite-card__link:hover {
    text-decoration: underline;
}

.sr-feature {
    padding: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.sr-feature .container {
    padding: 80px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.sr-feature__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-section);
    align-items: center;
    margin-bottom: var(--space-section);
}

.sr-feature__row:last-child {
    margin-bottom: 0;
}

.sr-feature__row--reverse .sr-feature__visual {
    order: 2;
}

.sr-feature__row--reverse .sr-feature__copy {
    order: 1;
}

.sr-feature__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-feature__panel {
    width: 100%;
    max-width: 19rem;
    padding: var(--space-stack-xl);
    border-radius: var(--radius-sm);
    background: linear-gradient(
        #7F6A5B,
        #7F6A5B 0%,
        #5d3b24 100%
    );
    box-shadow: 0 16px 48px rgba(28, 25, 19, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-stack-sm) var(--space-stack-md);
}

.sr-feature__panel--light {
    background: color-mix(in srgb, var(--theme-hero-gradient-start) 8%, var(--color-surface-muted));
    border: 1px solid color-mix(in srgb, var(--theme-hero-gradient-start) 16%, var(--color-border-subtle));
    box-shadow: 0 4px 24px rgba(30, 27, 20, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-stack-sm);
}

/* Recapitalization payout panel — money arriving on the account */
.sr-feature__panel--payout {
    background: color-mix(in srgb, var(--theme-hero-gradient-start) 8%, var(--color-surface-muted));
    border: 1px solid color-mix(in srgb, var(--theme-hero-gradient-start) 16%, var(--color-border-subtle));
    box-shadow: 0 4px 24px rgba(30, 27, 20, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sr-feature__panel--payout .sr-feature__metric-label {
    margin-bottom: 0;
    color: var(--color-ink-faint);
}

.sr-feature__payout-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-stack-md);
    margin: 0;
    padding: var(--space-stack-sm) 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.sr-feature__payout-line span {
    font-size: var(--text-caption);
    color: var(--color-ink-muted);
}

.sr-feature__payout-line strong {
    font-family: var(--font-ui);
    font-size: var(--text-body);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--color-success);
    white-space: nowrap;
}

.sr-feature__payout-total {
    margin-top: var(--space-stack-md);
}

.sr-feature__payout-total .sr-feature__metric {
    margin-bottom: var(--space-stack-xs);
    color: var(--color-success);
}

.sr-feature__metric-label {
    display: block;
    color: var(--theme-hero-muted);
    margin-bottom: var(--space-stack-md);
}

.sr-feature__panel-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: var(--text-caption);
    color: var(--color-ink-muted);
    padding: var(--space-stack-sm) 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.sr-feature__panel-line:last-child {
    border-bottom: none;
}

.sr-feature__metric {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-metric);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--theme-hero-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.sr-feature__metric--warn { color: var(--color-metric-warn); }
.sr-feature__metric--danger { color: var(--color-metric-danger); }
.sr-feature__metric--ok { color: var(--color-metric-neutral); }

.sr-feature__panel-line strong {
    font-family: var(--font-ui);
    font-size: var(--text-body);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--color-ink);
}

.sr-feature__eyebrow {
    color: var(--color-accent);
    margin: 0 0 var(--space-stack-sm);
}

.sr-feature__title {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    margin: 0 0 var(--space-stack-md);
}

.sr-feature__text {
    font-size: var(--text-lead);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
    margin: 0;
}

/* Methods section */
.lp-keel-recovery .sr-methods,
.lp-product .sr-methods,
.lp-product-capabilities {
    padding: 0;
    background: #f9f5f1;
}

.sr-methods__group {
    margin-bottom: var(--space-block);
}

.sr-methods__group:last-child {
    margin-bottom: 0;
}

.sr-methods__phase {
    font-size: var(--text-caption);
    font-weight: 500;
    letter-spacing: var(--tracking-label);
    text-transform: none;
    color: var(--color-ink-faint);
    margin: 0 0 var(--space-stack-lg);
    padding-bottom: var(--space-stack-sm);
    border-bottom: 1px solid var(--color-border-subtle);
}

/* Calm method cards */
.sr-pillar-grid.sr-pillar-grid--calm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-stack-lg);
}

.sr-pillar-card--calm {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--color-surface);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    padding: 0;
    overflow: hidden;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sr-pillar-card--calm:hover {
    border-color: var(--color-border);
    box-shadow: 0 6px 24px rgba(30, 27, 20, 0.06);
    transform: translateY(-2px);
}

.sr-pillar-card--calm:hover .sr-pillar-card__title {
    color: var(--color-accent);
}

.sr-pillar-card--calm.sr-pillar-card--locked {
    background: var(--color-surface);
}

.sr-pillar-card--calm.sr-pillar-card--locked .sr-pillar-card__art {
    opacity: 0.72;
}

.sr-pillar-card__art {
    position: relative;
    height: 7rem;
    overflow: hidden;
    flex-shrink: 0;
}

.sr-pillar-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--space-stack-lg);
    gap: var(--space-stack-xs);
}

.sr-pillar-card--calm .sr-pillar-card__title {
    font-size: var(--text-title);
    line-height: var(--leading-title);
}

.sr-pillar-card__desc {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
}

.sr-pillar-card__kpi {
    font-size: var(--text-caption);
    color: var(--color-ink-faint);
    border-top-color: var(--color-border-subtle);
}

.sr-pillar-card__num {
    color: var(--color-ink-disabled);
}

.sr-pillar-card__art::before,
.sr-pillar-card__art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

/* Maßnahmen tiles — warm sienna / rust palette
   Shared cover colors: deep brown #8a5a22, rust #9e4a2a, amber #c88232 */
.sr-pillar-card__art--bwa {
    background: linear-gradient(145deg, #f7e9cf 0%, #e9cd9e 100%);
}

.sr-pillar-card__art--bwa::before {
    width: 5rem;
    height: 5rem;
    background: rgba(158, 74, 42, 0.36);
    top: -1.5rem;
    right: -1rem;
}

.sr-pillar-card__art--bwa::after {
    width: 8rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #8a5a22 25%, #8a5a22 65%, transparent);
    bottom: 2.25rem;
    left: 1.5rem;
    transform: rotate(-8deg);
    box-shadow:
        0 -1.25rem 0 -1px rgba(138, 90, 34, 0.52),
        0 -2.5rem 0 -1px rgba(138, 90, 34, 0.3);
}

.sr-pillar-card__art--liquidity {
    background: linear-gradient(145deg, #f7e9cf 0%, #e7cb9c 100%);
}

.sr-pillar-card__art--liquidity::before {
    width: 6rem;
    height: 6rem;
    border: 2px solid rgba(138, 90, 34, 0.6);
    border-bottom-color: transparent;
    border-left-color: transparent;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    background: transparent;
}

.sr-pillar-card__art--liquidity::after {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(158, 74, 42, 0.34);
    bottom: -0.75rem;
    right: 1.25rem;
}

.sr-pillar-card__art--runway {
    background: linear-gradient(180deg, #f8eed6 0%, #ecce96 100%);
}

.sr-pillar-card__art--runway::before {
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: #c88232;
    bottom: 2.5rem;
    left: 0;
    opacity: 0.75;
}

.sr-pillar-card__art--runway::after {
    width: 3rem;
    height: 3rem;
    background: rgba(158, 74, 42, 0.38);
    top: 1.5rem;
    left: 2rem;
}

.sr-pillar-card__art--assets {
    background: linear-gradient(145deg, #f8eed6 0%, #ebce9c 100%);
}

.sr-pillar-card__art--assets::before {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-sm);
    background: rgba(151, 96, 34, 0.44);
    top: 1.75rem;
    left: 2rem;
    box-shadow: 2.5rem 0.75rem 0 rgba(158, 74, 42, 0.28);
}

.sr-pillar-card__art--assets::after {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-sm);
    background: rgba(151, 96, 34, 0.2);
    top: 0.75rem;
    right: 1.5rem;
}

.sr-pillar-card__art--wc {
    background: linear-gradient(145deg, #f6e8cd 0%, #e6c896 100%);
}

.sr-pillar-card__art--wc::before {
    width: 5rem;
    height: 5rem;
    border: 2px solid rgba(138, 90, 34, 0.56);
    background: transparent;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.sr-pillar-card__art--wc::after {
    width: 2rem;
    height: 2rem;
    background: rgba(200, 108, 52, 0.52);
    top: 2.5rem;
    left: calc(50% + 1.5rem);
}

.sr-pillar-card__art--receivables {
    background: linear-gradient(145deg, #f6e8cd 0%, #e3c390 100%);
}

.sr-pillar-card__art--receivables::before {
    width: 3rem;
    height: 4rem;
    border-radius: 4px;
    background: rgba(138, 90, 34, 0.38);
    top: 1.5rem;
    left: 2.25rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(158, 74, 42, 0.24);
}

.sr-pillar-card__art--receivables::after {
    width: 4.5rem;
    height: 1px;
    border-radius: 0;
    background: rgba(200, 130, 50, 0.7);
    top: 2.75rem;
    left: 2.5rem;
    box-shadow: 0 0.75rem 0 rgba(138, 90, 34, 0.44), 0 1.5rem 0 rgba(138, 90, 34, 0.28);
}

.sr-pillar-card__art--investor {
    background: linear-gradient(145deg, #f2e3c6 0%, #dfbf8e 100%);
}

.sr-pillar-card__art--investor::before {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(200, 130, 50, 0.62);
    top: 2rem;
    left: calc(50% - 1.125rem);
}

.sr-pillar-card__art--investor::after {
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(138, 90, 34, 0.55);
    top: 1.25rem;
    left: calc(50% + 2rem);
    box-shadow: -5.5rem 2.5rem 0 rgba(158, 74, 42, 0.34), 3rem 3rem 0 rgba(200, 130, 50, 0.32);
}

.sr-pillar-card__art--debt {
    background: linear-gradient(145deg, #f8efdb 0%, #e7c996 100%);
}

.sr-pillar-card__art--debt::before {
    width: 7rem;
    height: 3.5rem;
    border: 2px solid rgba(138, 90, 34, 0.52);
    border-bottom: none;
    border-radius: 7rem 7rem 0 0;
    background: transparent;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.sr-pillar-card__art--debt::after {
    width: 2rem;
    height: 2rem;
    background: rgba(158, 74, 42, 0.4);
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Product capability tiles — distinct abstract art (not Maßnahmen) */
.sr-pillar-card__art--cap-1 {
    background: linear-gradient(135deg, #efeadb 0%, #e0d8bd 100%);
}

.sr-pillar-card__art--cap-1::before {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0;
    border: 2px solid rgba(138, 116, 72, 0.38);
    background: transparent;
    top: 0.875rem;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.sr-pillar-card__art--cap-1::after {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(217, 172, 92, 0.42);
    bottom: 1.375rem;
    right: 1.75rem;
}

.sr-pillar-card__art--cap-2 {
    background: linear-gradient(160deg, #f2f0ec 0%, #e4dcd0 100%);
}

.sr-pillar-card__art--cap-2::before {
    width: 2.75rem;
    height: 5.25rem;
    border-radius: 4px;
    background: rgba(140, 109, 58, 0.24);
    bottom: 1rem;
    left: 1.75rem;
}

.sr-pillar-card__art--cap-2::after {
    width: 2rem;
    height: 3.25rem;
    border-radius: 4px;
    background: rgba(179, 138, 62, 0.3);
    bottom: 1.625rem;
    left: 4.125rem;
}

.sr-pillar-card__art--cap-3 {
    background: linear-gradient(145deg, #f0ebdb 0%, #dcd0ac 100%);
}

.sr-pillar-card__art--cap-3::before {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 0;
    border: 2px solid rgba(140, 109, 58, 0.42);
    background: transparent;
    top: 1.125rem;
    left: 1.625rem;
}

.sr-pillar-card__art--cap-3::after {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(217, 172, 92, 0.34);
    top: 2.5rem;
    right: 1.5rem;
    box-shadow: -3.5rem 1.75rem 0 rgba(140, 109, 58, 0.2);
}

.sr-pillar-card__art--cap-4 {
    background: linear-gradient(180deg, #f5f0ea 0%, #e8ddd2 100%);
}

.sr-pillar-card__art--cap-4::before {
    width: 4.5rem;
    height: 2px;
    border-radius: 0;
    background: rgba(140, 109, 58, 0.52);
    top: 2.375rem;
    left: 1.625rem;
    transform: rotate(22deg);
    box-shadow:
        0 1.125rem 0 rgba(140, 109, 58, 0.34),
        0 2.25rem 0 rgba(217, 172, 92, 0.38);
}

.sr-pillar-card__art--cap-4::after {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    background: rgba(138, 116, 72, 0.22);
    bottom: 1.125rem;
    right: 1.625rem;
}

/* Legacy pillar card styles (feature pages) */
.sr-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.sr-pillar-card:not(.sr-pillar-card--calm) {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eeebdc;
    border-radius: 18px;
    padding: 1.625rem 1.75rem;
    box-shadow: 0 1px 2px rgba(30, 27, 20, 0.04);
    border-top: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sr-pillar-card:not(.sr-pillar-card--calm):hover {
    box-shadow: 0 8px 32px rgba(30, 27, 20, 0.08);
    transform: translateY(-2px);
}

.sr-pillar-card--understand { border-top-color: #16a34a; }
.sr-pillar-card--release { border-top-color: #d97706; }
.sr-pillar-card--recap { border-top-color: #b38a3e; }

.sr-pillar-card--locked:not(.sr-pillar-card--calm) {
    background: #fafafa;
}

.sr-pillar-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.875rem;
}

.sr-pillar-card__step {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7c7462;
}

.sr-pillar-card__metric {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: #f3f1e7;
    color: #453f2f;
}

.sr-pillar-card:not(.sr-pillar-card--calm) .sr-pillar-card__title {
    font-size: 1.125rem;
    margin: 0 0 0.625rem;
    color: #1c1913;
}

.sr-pillar-card__title a {
    color: inherit;
    text-decoration: none;
}

.sr-pillar-card__title a:hover {
    color: #b38a3e;
}

.sr-pillar-card__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5c553f;
    margin: 0 0 1rem;
    flex: 1;
}

.sr-pillar-card__insights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sr-pillar-card__insights li {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #7c7462;
    padding-left: 0.875rem;
    border-left: 2px solid #e7e3d2;
}

.sr-pillar-card__insights strong {
    color: #453f2f;
    font-weight: 600;
}

.sr-pillar-card__foot {
    margin-top: auto;
    padding-top: 0.25rem;
}

.sr-pillar-card__cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: #b38a3e;
    text-decoration: none;
}

.sr-pillar-card__cta:hover {
    text-decoration: underline;
}

.sr-badge-lock {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
}

.sr-quote {
    padding: 0;
    background: var(--color-surface);
}

.sr-quote .container {
    padding: 80px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.sr-quote__block {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    border: none;
    padding: 0;
}

.sr-quote__block p {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    margin: 0 0 var(--space-stack-lg);
}

.sr-quote__block footer {
    font-family: var(--font-ui);
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--color-ink-faint);
    letter-spacing: 0.01em;
}

.lp-keel-recovery .sr-product-band .sr-product-band__inner {
    max-width: 36rem;
}

.lp-keel-recovery .lq-product__eyebrow,
.lp-product .lq-section--product .lq-product__eyebrow {
    color: var(--theme-hero-eyebrow);
}

.lp-keel-recovery .lq-section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
}

.lp-keel-recovery .lq-section--product .lq-section__title {
    font-family: var(--font-display);
}

.lp-keel-recovery .lq-cta-final > h2 {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    margin-bottom: var(--space-stack-md);
}

.lp-keel-recovery .lq-cta-final > p {
    font-size: var(--text-lead);
    line-height: var(--leading-body);
    color: var(--color-ink-muted);
    max-width: 32rem;
    margin: 0 auto var(--space-stack-xl);
}

@media (max-width: 900px) {
    .sr-stats__grid,
    .sr-suite__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-feature__row,
    .sr-feature__row--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sr-feature__row--reverse .sr-feature__visual,
    .sr-feature__row--reverse .sr-feature__copy {
        order: unset;
    }

    .sr-pillar-grid:not(.sr-pillar-grid--calm) {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sr-pillar-grid.sr-pillar-grid--calm {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sr-stats__grid,
    .sr-suite__grid {
        grid-template-columns: 1fr;
    }

    .sr-suite,
    .sr-feature,
    .lp-keel-recovery .sr-methods {
        padding: 3.5rem 0;
    }

    .sr-feature__row {
        margin-bottom: 3rem;
    }
}

/* Maßnahmen carousel — recovery measure pages */
.massnahmen-carousel-section .lq-section__header {
    margin-bottom: 2rem;
}

.massnahmen-carousel {
    position: relative;
}

.massnahmen-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 2.75rem 0.625rem;
    margin: 0;
}

.massnahmen-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.massnahmen-carousel__viewport:focus-visible {
    outline: 2px solid rgba(179, 138, 62, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

.massnahmen-carousel__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.massnahmen-carousel__track .sr-pillar-card--calm {
    flex: 0 0 17.5rem;
    width: 17.5rem;
    scroll-snap-align: start;
}

.massnahmen-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--color-border-subtle);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-ink-muted);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 27, 20, 0.06);
    transform: translateY(-50%);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.massnahmen-carousel__nav--prev {
    left: 0;
}

.massnahmen-carousel__nav--next {
    right: 0;
}

.massnahmen-carousel__nav svg {
    width: 1.125rem;
    height: 1.125rem;
}

.massnahmen-carousel__nav:hover:not(:disabled) {
    border-color: var(--color-border);
    color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(30, 27, 20, 0.08);
    transform: translateY(-50%) scale(1.04);
}

.massnahmen-carousel__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(-50%);
}

.massnahmen-carousel__foot {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.9375rem;
}

.massnahmen-carousel__foot a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.massnahmen-carousel__foot a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .massnahmen-carousel__viewport {
        padding-inline: 2.25rem;
    }

    .massnahmen-carousel__nav {
        width: 2.25rem;
        height: 2.25rem;
    }

    .massnahmen-carousel__track .sr-pillar-card--calm {
        flex: 0 0 min(17.5rem, 78vw);
        width: min(17.5rem, 78vw);
    }
}

/* Widget conversion funnel */
.lq-funnel {
    margin-top: 2rem;
}

.lq-funnel__stream {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.5rem;
    background: #fbfaf4;
    border: 1px solid #e7e3d2;
    border-radius: 12px;
}

.lq-funnel__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #a8a18c;
    transition: color 0.25s ease;
}

.lq-funnel__step.is-active {
    color: #1c1913;
}

.lq-funnel__step.is-done {
    color: #16a34a;
}

.lq-funnel__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.lq-funnel__step.is-active .lq-funnel__step-icon::before {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #b38a3e;
    animation: lq-funnel-pulse 1s ease infinite;
}

@keyframes lq-funnel-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.lq-funnel__teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.lq-funnel__score-card {
    background: var(--color-surface-canvas, #fff);
    border: 1px solid #e7e3d2;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.lq-funnel__score-card--success { border-color: #bbf7d0; background: #f0fdf4; }
.lq-funnel__score-card--warning { border-color: #fde68a; background: #fffbeb; }
.lq-funnel__score-card--danger { border-color: #fecaca; background: #fef2f2; }

.lq-funnel__score-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7c7462;
    margin: 0 0 0.5rem;
}

.lq-funnel__score-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #1c1913;
    margin: 0;
}

.lq-funnel__score-value span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #a8a18c;
}

.lq-funnel__score-warning {
    font-size: 0.875rem;
    color: #7c7462;
    margin: 0.75rem 0 0;
}

.lq-funnel__metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.lq-funnel__metric {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.875rem 1.25rem;
    background: #fbfaf4;
    border: 1px solid #e7e3d2;
    border-radius: 8px;
}

.lq-funnel__metric-label {
    font-size: 0.75rem;
    color: #7c7462;
}

.lq-funnel__metric-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1913;
}

.lq-funnel__metric-value--success { color: #16a34a; }
.lq-funnel__metric-value--warning { color: #d97706; }
.lq-funnel__metric-value--danger { color: #dc2626; }

.lq-funnel__issues {
    margin-bottom: 1.5rem;
}

.lq-funnel__issues-title {
    font-size: 1rem;
    margin: 0 0 1rem;
    color: #1c1913;
}

.lq-funnel__issue {
    background: var(--color-surface-canvas, #fff);
    border: 1px solid #e7e3d2;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
}

.lq-funnel__issue--danger { border-left: 3px solid #dc2626; }
.lq-funnel__issue--warning { border-left: 3px solid #d97706; }

.lq-funnel__issue-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.lq-funnel__issue-num {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a18c;
    flex-shrink: 0;
}

.lq-funnel__issue-title {
    font-size: 1rem;
    margin: 0;
    color: #1c1913;
}

.lq-funnel__issue-teaser {
    font-size: 0.9375rem;
    color: #b38a3e;
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.lq-funnel__issue-locked {
    position: relative;
}

.lq-funnel__issue-blur {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
    font-size: 0.8125rem;
    color: #7c7462;
    line-height: 1.5;
    padding: 0.5rem 0;
    opacity: 0.7;
}

.lq-funnel__issue-unlock {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.lq-funnel__gate-inner {
    background: linear-gradient(135deg, #1c1913 0%, #2e2a1c 100%);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
}

.lq-funnel__gate-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: #fff;
}

.lq-funnel__gate-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.lq-funnel__gate-benefits li {
    font-size: 0.9375rem;
    color: #d6d1bd;
}

.lq-funnel__gate-form .lq-field label {
    color: #d6d1bd;
}

.lq-funnel__gate-submit {
    width: 100%;
    margin-top: 0.75rem;
}

.lq-funnel__gate-privacy {
    font-size: 0.75rem;
    color: #a8a18c;
    margin: 0.75rem 0 0;
}

.lq-funnel__gate-privacy a {
    color: #e2ba6a;
}

.lq-funnel__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.lq-funnel__ready {
    text-align: center;
    padding: 1rem 0;
}

.lq-funnel__ready-icon {
    font-size: 2.5rem;
    color: #4ade80;
    margin: 0 0 0.5rem;
}

.lq-funnel__ready-title {
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 0.5rem;
}

.lq-funnel__ready-body {
    font-size: 0.9375rem;
    color: #d6d1bd;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.lq-funnel__error {
    text-align: center;
    padding: 2rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .lq-funnel__teaser {
        grid-template-columns: 1fr;
    }

    .lq-funnel__score-value {
        font-size: 2.25rem;
    }

    .lq-funnel__gate-inner {
        padding: 1.5rem;
    }
}

/* ─── Product landing pages (Keel OS, Meridian, etc.) ─── */
.product-feature-art {
    width: 100%;
    height: 12rem;
    border-radius: var(--radius-md, 12px);
    box-shadow: 0 8px 32px rgba(30, 27, 20, 0.12);
}

.lp-product-cards {
    grid-template-columns: repeat(3, 1fr);
}

.lp-product-card {
    position: relative;
}

.lp-product-card__num {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.lp-product-eco-section {
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.lp-product-eco-section .container {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.lp-product-eco-section .sr-section-head {
    margin-bottom: 1.5rem;
}

.lp-product-eco-scroll {
    overflow: visible;
}

.lp-product-eco-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 52rem;
    margin-inline: auto;
    padding: 0;
}

.lp-product-eco-card {
    display: flex;
    flex-direction: column;
    min-height: 16rem;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #faf8ef 100%);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(30, 27, 20, 0.04),
        0 12px 28px rgba(30, 27, 20, 0.05);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.lp-product-eco-card:hover {
    border-color: rgba(179, 138, 62, 0.22);
    box-shadow:
        0 1px 2px rgba(30, 27, 20, 0.04),
        0 18px 40px rgba(30, 27, 20, 0.09);
    transform: translateY(-3px);
}

.lp-product-eco-card__art {
    height: 5.25rem;
    flex-shrink: 0;
}

.lp-product-eco-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: 1.25rem 1.375rem 1.5rem;
}

.lp-product-eco-card__type {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink-faint);
    margin-bottom: 0.5rem;
}

.lp-product .lp-product-eco-card__name,
.lp-product-eco-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: var(--tracking-display, -0.02em);
    color: var(--color-ink);
    transition: color 0.2s ease;
}

.lp-product-eco-card:hover .lp-product-eco-card__name {
    color: var(--color-accent);
}

.lp-product-eco-card__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-ink-muted);
    margin: 0.625rem 0 0;
    flex: 1;
}

.lp-product-eco-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--color-border-subtle);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap 0.2s ease;
}

.lp-product-eco-card:hover .lp-product-eco-card__cta {
    gap: 0.55rem;
}

@media (max-width: 640px) {
    .lp-product-eco-section .container {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .lp-product-eco-track {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .lp-product-eco-card {
        min-height: auto;
    }
}

.lp-product-capabilities .sr-pillar-grid--calm {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1100px) {
    .lp-product-capabilities .sr-pillar-grid--calm {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .lp-product-cards {
        grid-template-columns: 1fr;
    }
}
