/* 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;
}

/* ─── Sunset design tokens ─── */
:root {
    /* Ink */
    --color-ink: #0D111D;
    --color-ink-secondary: #334155;
    --color-ink-muted: #64748b;
    --color-ink-faint: #94a3b8;
    --color-ink-disabled: #cbd5e1;

    /* Brand — navy / slate blue (+ warm accent for highlights) */
    --color-navy: #0D111D;
    --color-navy-mid: #1e293b;
    --color-blue: #3a5a9b;
    --color-blue-deep: #0f3b6c;
    --color-blue-muted: #64748b;
    --color-blue-wash: #eef2f8;
    --color-blue-wash-deep: #dce4ef;

    /* CTA blue — #9ab1da */
    --color-periwinkle: #9ab1da;
    --color-periwinkle-deep: #8399c4;
    --color-periwinkle-soft: #b8c9e8;
    --color-periwinkle-wash: #eef2f8;
    --color-periwinkle-muted: rgba(154, 177, 218, 0.24);

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

    --color-accent: #D25401;
    --color-accent-bright: #FF6622;
    --color-accent-soft: #FFA66C;
    --color-accent-wash: #fff4ed;
    --color-accent-muted: rgba(210, 84, 1, 0.14);

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-muted: #f8fafc;
    --color-surface-canvas: #f4f6f9;
    --color-border: #e2e8f0;
    --color-border-subtle: #eceef1;

    /* Semantic */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-metric-warn: #FFA66C;
    --color-metric-danger: #e87676;
    --color-metric-neutral: #94a3b8;

    /* Typography */
    --font-display: 'Kalnia', Georgia, 'Times New Roman', 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.025em;
    --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: var(--color-periwinkle);
    --btn-primary-bg-hover: var(--color-periwinkle-deep);
    --btn-primary-fg: var(--color-navy);
    --btn-primary-border: var(--color-periwinkle);

    --btn-secondary-bg: var(--color-surface);
    --btn-secondary-fg: var(--color-action-darker);
    --btn-secondary-border: var(--color-periwinkle);
    --btn-secondary-bg-hover: var(--color-periwinkle-wash);
    --btn-secondary-border-hover: var(--color-periwinkle-deep);
    --btn-secondary-fg-hover: var(--color-action-darker);

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Kalnia Font Class */
.font-kalnia {
    font-family: 'Kalnia', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.font-kalnia-light {
    font-family: 'Kalnia', serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.font-kalnia-medium {
    font-family: 'Kalnia', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.font-kalnia-bold {
    font-family: serif;
    font-weight: 600;
    letter-spacing: 0.7px;
}

/* Sunset Gradient Class */
.sunset-gradient {
    background: linear-gradient(45deg, #FF3300, #FFA66C);
    -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: rgba(15, 17, 30, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    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 {
    background: rgba(15, 17, 30, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
    transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header--scrolled .nav-container {
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo-img {
    width: auto;
}

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

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

.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    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: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* 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: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.btn-nav-login:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.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: var(--btn-radius);
    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: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

/* Mega menu temporarily disabled — remove .mega-menu-disabled from <html> to re-enable */
.mega-menu-disabled .nav-mega-menu,
.mega-menu-disabled .nav-mega-backdrop {
    display: none !important;
}

.mega-menu-disabled .nav-dropdown--products .nav-dropdown-trigger {
    text-decoration: none;
}

/* Mega menu panel */
.nav-mega-backdrop {
    position: fixed;
    inset: 0;
    top: 65px;
    background: rgba(15, 17, 30, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.nav-mega-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.nav-mega-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
    border-bottom: 1px solid #E3E8EE;
    box-shadow: 0 24px 48px rgba(15, 17, 30, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.35s;
    pointer-events: none;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

.nav-dropdown.is-open .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
}

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

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

.header--mega-open {
    background: #0F111E;
}

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

.nav-mega-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0F111E;
    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: #4F5B76;
    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 #E3E8EE;
    color: #0F111E;
    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: #D25401;
    transform: translateY(-1px);
}

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

.nav-mega-btn--primary:hover {
    box-shadow: 0 4px 16px rgba(255, 51, 0, 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: #F7F9FC;
    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: #0F111E;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

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

/* Nav product icon colors */
.nav-product-item.product-badge--os .nav-product-icon {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.12), rgba(255, 166, 108, 0.2));
    border-color: rgba(255, 51, 0, 0.2);
    color: #D25401;
}

.nav-product-item.product-badge--meridian .nav-product-icon {
    background: linear-gradient(135deg, rgba(210, 84, 1, 0.1), rgba(255, 180, 131, 0.22));
    border-color: rgba(210, 84, 1, 0.22);
    color: #D25401;
}

.nav-product-item.product-badge--bridge .nav-product-icon {
    background: linear-gradient(135deg, rgba(255, 130, 90, 0.12), rgba(255, 200, 160, 0.2));
    border-color: rgba(255, 130, 90, 0.25);
    color: #C44A00;
}

.nav-product-item.product-badge--capital .nav-product-icon {
    background: linear-gradient(135deg, rgba(180, 70, 20, 0.1), rgba(255, 140, 80, 0.16));
    border-color: rgba(180, 70, 20, 0.2);
    color: #9A3D00;
}

.nav-product-item.product-badge--exchange .nav-product-icon {
    background: linear-gradient(135deg, rgba(255, 80, 40, 0.14), rgba(255, 120, 70, 0.2));
    border-color: rgba(255, 80, 40, 0.28);
    color: #CC3300;
}

.nav-product-item.product-badge--signal .nav-product-icon {
    background: linear-gradient(135deg, rgba(255, 166, 108, 0.15), rgba(255, 210, 180, 0.25));
    border-color: rgba(255, 166, 108, 0.3);
    color: #A85520;
}

.nav-product-item.product-badge--resolve .nav-product-icon {
    background: linear-gradient(135deg, rgba(140, 100, 180, 0.08), rgba(255, 166, 108, 0.14));
    border-color: rgba(140, 100, 180, 0.18);
    color: #6B4E8C;
}

.nav-product-item.product-badge--fleet .nav-product-icon {
    background: linear-gradient(135deg, rgba(60, 80, 110, 0.08), rgba(255, 130, 70, 0.12));
    border-color: rgba(60, 80, 110, 0.15);
    color: #3C506E;
}

.nav-product-item.product-badge--estates .nav-product-icon {
    background: linear-gradient(135deg, rgba(160, 90, 50, 0.1), rgba(255, 180, 120, 0.18));
    border-color: rgba(160, 90, 50, 0.2);
    color: #7A4528;
}

.nav-product-item.product-badge--ledger .nav-product-icon {
    background: linear-gradient(135deg, rgba(100, 70, 160, 0.08), rgba(210, 84, 1, 0.12));
    border-color: rgba(100, 70, 160, 0.18);
    color: #5C4080;
}

/* 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 #E3E8EE;
}

.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: #F7F9FC;
}

.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(255, 51, 0, 0.08), rgba(255, 166, 108, 0.15));
    color: #D25401;
    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: #0F111E;
}

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

.nav-mega-footer-link {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #D25401;
    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: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    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: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    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: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.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: #1a1d2e;
    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(255, 179, 131, 0.12);
    color: #FFB483;
}

.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: #FFB483;
}

.hero {
    position: relative;
    color: white;
    padding: 300px 0 120px;
    text-align: left;
    border-bottom-right-radius: 240px;
    overflow: hidden;
    margin-top: -100px;
    /* Layer 1: Rising sun image */
    background-image: url('https://i.pinimg.com/1200x/8b/53/76/8b5376b72fb36f5f145db7ee3277b432.jpg');
    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(135deg, rgba(7, 10, 18, 0.9) 0%, rgba(24, 39, 73, 0.95) 100%);
    backdrop-filter: blur(1px);
    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;
}

.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: #f8fafc;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    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-logo {
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.logo-placeholder {
    background: #e5e7eb;
    color: #6b7280;
    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: #d1d5db;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    background: #fff;
    padding: 96px 0;
}

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

.services-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #0F111E;
    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: #4F5B76;
    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(15, 17, 30, 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(255, 51, 0, 0.14), rgba(255, 166, 108, 0.22));
    border-color: rgba(255, 51, 0, 0.25);
    color: #C44A00;
}

.product-badge--meridian {
    background: linear-gradient(135deg, rgba(210, 84, 1, 0.12), rgba(255, 180, 131, 0.24));
    border-color: rgba(210, 84, 1, 0.25);
    color: #9A3D00;
}

.product-badge--bridge {
    background: linear-gradient(135deg, rgba(255, 130, 90, 0.14), rgba(255, 200, 160, 0.22));
    border-color: rgba(255, 130, 90, 0.28);
    color: #B84500;
}

.product-badge--capital {
    background: linear-gradient(135deg, rgba(180, 70, 20, 0.12), rgba(255, 140, 80, 0.18));
    border-color: rgba(180, 70, 20, 0.22);
    color: #8B3500;
}

.product-badge--exchange {
    background: linear-gradient(135deg, rgba(255, 80, 40, 0.16), rgba(255, 120, 70, 0.22));
    border-color: rgba(255, 80, 40, 0.3);
    color: #CC3300;
}

.product-badge--signal {
    background: linear-gradient(135deg, rgba(255, 166, 108, 0.18), rgba(255, 210, 180, 0.28));
    border-color: rgba(255, 166, 108, 0.32);
    color: #A85520;
}

.product-badge--resolve {
    background: linear-gradient(135deg, rgba(140, 100, 180, 0.1), rgba(255, 166, 108, 0.16));
    border-color: rgba(140, 100, 180, 0.2);
    color: #6B4E8C;
}

.product-badge--fleet {
    background: linear-gradient(135deg, rgba(60, 80, 110, 0.1), rgba(255, 130, 70, 0.14));
    border-color: rgba(60, 80, 110, 0.18);
    color: #3C506E;
}

.product-badge--estates {
    background: linear-gradient(135deg, rgba(160, 90, 50, 0.12), rgba(255, 180, 120, 0.2));
    border-color: rgba(160, 90, 50, 0.22);
    color: #7A4528;
}

.product-badge--ledger {
    background: linear-gradient(135deg, rgba(100, 70, 160, 0.1), rgba(210, 84, 1, 0.14));
    border-color: rgba(100, 70, 160, 0.2);
    color: #5C4080;
}

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

.services-nav-indicator {
    position: absolute;
    left: -1px;
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, #FF3300, #FFA66C);
    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: #697386;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1.35;
}

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

.services-nav-item.active {
    color: #0F111E;
    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: #D25401;
}

.service-item-index {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #D25401;
    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: #0F111E;
    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: #697386;
    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: #4F5B76;
    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: #0F111E;
    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, #FF3300, #FFA66C);
    box-shadow: 0 0 0 2px rgba(255, 51, 0, 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, #E3E8EE 0%, rgba(255, 51, 0, 0.25) 50%, #E3E8EE 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: #D25401;
    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: #FF3300;
}

.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, #FFB483, #D25401);
    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(210, 84, 1, 0.3);
    transition: all 0.3s ease;
}

.stakeholders-scroll-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 84, 1, 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: #f1f4fa;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

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


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

.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: #FFB483;
}

.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: #1f2937;
    margin-bottom: 4px;
    font-size: 1.5rem;
    font-weight: bold;
}

.stakeholder-card p {
    color: #6b7280;
    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: #4b5563;
    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: #1f2937;
}

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

.hero-eyebrow__label {
    color: #8898aa;
}

.hero-eyebrow__value {
    color: #8898aa;
}

.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: #ffffff;
}

.hero-headline__rest {
    font-weight: 400;
    color: #6b7280;
}

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

/* 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: #1f2937;
    max-width: 640px;
}

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

/* Features – Bento Grid */
.features {
    background: #f7f9fc;
    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 #e3e8ee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(15, 17, 30, 0.04), 0 8px 24px rgba(15, 17, 30, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
    box-shadow: 0 2px 6px rgba(15, 17, 30, 0.06), 0 16px 40px rgba(15, 17, 30, 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: #0F111E;
    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: #2a1810;
    background-image:
        linear-gradient(180deg, rgba(15, 17, 30, 0.35) 0%, rgba(15, 17, 30, 0.88) 100%),
        url('images/backdrop-sunset-stats.png');
    background-size: cover;
    background-position: center;
}

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

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

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

.bento-bg--pink-wave {
    background:
        radial-gradient(ellipse 70% 80% at 30% 100%, rgba(251, 207, 232, 0.7) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 80% 90%, rgba(255, 179, 131, 0.4) 0%, transparent 60%),
        #fafafa;
}

.bento-bg--exchange {
    background-color: #0a0c14;
    background-image:
        radial-gradient(ellipse 90% 70% at 15% 110%, rgba(255, 51, 0, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 85% 95%, rgba(255, 166, 108, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(210, 84, 1, 0.12) 0%, transparent 60%),
        linear-gradient(165deg, #0f111e 0%, #1a1020 45%, #120e18 100%);
}

/* Insolvenzgeld-Vorfinanzierung (wide card) */
.bento-bg--insolvency-wage {
    background-color: #1a1020;
    background-image:
        radial-gradient(ellipse 70% 55% at 10% 100%, rgba(255, 51, 0, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 90% 85%, rgba(255, 179, 131, 0.3) 0%, transparent 50%),
        linear-gradient(155deg, #0f111e 0%, #1f1428 50%, #120e18 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: #FFB483;
}

.bento-insolvency-wage__shell {
    position: relative;
    background: rgba(15, 17, 30, 0.78);
    border: 1px solid rgba(255, 179, 131, 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, #FFB483, #D25401);
    box-shadow: 0 2px 8px rgba(210, 84, 1, 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, #FFB483, #FF3300);
    box-shadow: 0 0 12px rgba(255, 51, 0, 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(255, 179, 131, 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, #FFB483, rgba(255, 179, 131, 0.5));
}

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

.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, #FFB483, #D25401);
}

.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: #FFB483;
    background: rgba(255, 179, 131, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 179, 131, 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, #FFB483, #FF3300);
}

@keyframes bento-insolvency-step-glow {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 179, 131, 0.2); }
    50% { box-shadow: 0 0 0 7px rgba(255, 51, 0, 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(255, 179, 131, 0.9);
}

.bento-insolvency-wage__auto-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.45);
}

/* Sunset 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: #FFB483;
}

.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(255, 179, 131, 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: #0F111E;
    color: #fff;
    border-bottom-right-radius: 4px;
}

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

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

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

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

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

.bento-doc-text {
    font-size: 0.625rem;
    color: #6b7280;
    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 #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(15, 17, 30, 0.06);
}

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

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

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

/* Sunset 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(15, 17, 30, 0.72);
    border: 1px solid rgba(255, 179, 131, 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(255, 179, 131, 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(255, 80, 40, 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, #FF3300, #FFA66C);
    box-shadow: 0 0 16px rgba(255, 51, 0, 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: #FFB483;
    background: rgba(255, 51, 0, 0.15);
    border: 1px solid rgba(255, 179, 131, 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(255, 179, 131, 0.2);
}

.bento-exchange-asset-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 179, 131, 0.25), rgba(210, 84, 1, 0.2));
    border: 1px solid rgba(255, 179, 131, 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(255, 166, 108, 0.95);
}

.bento-exchange-asset-icon--vehicle::after {
    inset: 10px 5px 8px;
    border-radius: 3px;
    box-shadow: 0 0 0 2px rgba(15, 17, 30, 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(255, 51, 0, 0.22) 0%, rgba(210, 84, 1, 0.12) 100%);
    border: 1px solid rgba(255, 179, 131, 0.4);
    box-shadow: 0 0 32px rgba(255, 51, 0, 0.2);
}

.bento-exchange-yield-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFB483;
    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(255, 130, 70, 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: #FFB483;
    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(255, 51, 0, 0.25);
    color: #FFB483;
    border: 1px solid rgba(255, 179, 131, 0.3);
}

.bento-exchange-deal-status--dd {
    background: rgba(255, 166, 108, 0.12);
    color: #FFA66C;
}

@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: #0a0e1a;
    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(255, 51, 0, 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(77, 94, 193, 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(15, 17, 30, 0.92) 0%, rgba(10, 14, 26, 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(255, 80, 0, 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, #FF3300, #FFA66C);
    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(255, 102, 0, 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(255, 166, 108, 0.85);
}

.about-showcase__tab-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #FF3300, #FFA66C);
    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(255, 166, 108, 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 .sunset-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: #0f111e;
    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(255, 80, 0, 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: #151829;
    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 #FFA66C;
    outline-offset: 2px;
}

/* KPI Section */
.kpi-section {
    padding: 0;
    background: #0a0e1a;
    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(255, 186, 140, 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%, #FFD4A8 45%, #FFB483 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

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

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

.kpi-value--sunset {
    background: linear-gradient(145deg, #FFB483 0%, #FF6622 45%, #D25401 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

@supports not (background-clip: text) {
    .kpi-value--cream  { color: #FFE8D5; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--peach  { color: #FFB483; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--amber  { color: #FFA66C; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--orange { color: #FF7722; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--sunset { color: #FF3300; background: none; -webkit-text-fill-color: unset; }
    .kpi-value--flame  { color: #D25401; 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: #f7f9fc;
    border-top: 1px solid #e3e8ee;
}

.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: #0F111E;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.get-started-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #4F5B76;
    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 #E3E8EE;
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
}

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

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

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

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

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

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

.get-started-sunset::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #f7f9fc 0%,
        rgba(247, 249, 252, 0.6) 25%,
        transparent 55%
    );
    z-index: 1;
}

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

.get-started-sunset 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(15, 17, 30, 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(15, 17, 30, 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: #4F5B76;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background: #fff;
    color: #0F111E;
}

.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: #0F111E;
    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(15, 17, 30, 0.95) 0%,
        rgba(15, 17, 30, 0.7) 45%,
        rgba(15, 17, 30, 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(255, 180, 131, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.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: #4F5B76;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E3E8EE;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #0F111E;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: #D25401;
    box-shadow: 0 0 0 3px rgba(210, 84, 1, 0.12);
}

.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, #FFB483, #D25401);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.modal-success p {
    font-size: 0.9375rem;
    color: #4F5B76;
    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: #374151;
}

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

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

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

/* Footer */
.footer {
    background: #0D111D;
    color: #e5e7eb;
    padding: 4rem 0 0;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(130px, 1fr));
    gap: 2.5rem 2rem;
    padding-bottom: 2.5rem;
}

.footer-brand {
    max-width: 320px;
}

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

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

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

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f9fafb;
    margin: 0 0 1.125rem;
}

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

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

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

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

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

.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: #FFB483;
}

.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: #FFB483;
}

.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: #6b7280;
    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: #9ca3af;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

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

.legal-page main {
    flex: 1;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 20px 4rem;
}

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

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

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

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

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .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: #0F111E;
        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-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;
    }
    
    .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 #E3E8EE;
        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 #FF3300;
    }
    
    .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-sunset {
        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: 1fr 1fr;
        gap: 2rem 1.5rem;
    }

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

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

/* 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: 400;
    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(--color-accent-soft);
}

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

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

.lp-recovery .lq-section--product {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
}

.lp-recovery .lq-section {
    padding: var(--space-section) 0;
}

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

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

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

@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 {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1500;
    display: flex;
    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(15, 17, 30, 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(210, 84, 1, 0.25);
    color: #FFB483;
}

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

.page-float-alerts__card--warning {
    border-color: rgba(210, 84, 1, 0.65);
    background: linear-gradient(145deg, rgba(48, 28, 8, 0.96) 0%, rgba(62, 32, 6, 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(13, 17, 29, 0.96) 0%, rgba(30, 41, 59, 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(255, 236, 213, 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.375rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

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

.lq-section {
    padding: 5rem 0;
}

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

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

.lq-section--product {
    position: relative;
    background: linear-gradient(135deg, #0D111D 0%, #1e293b 100%);
    color: #fff;
    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: rgba(255, 255, 255, 0.9);
}

.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: #151829;
}

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

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

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

.lq-section--product .lq-section__title {
    color: #fff;
}

.lq-section__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.lq-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lq-split p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lq-formula-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    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: #6b7280;
    margin-bottom: 0.5rem;
}

.lq-formula-box__formula {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0D111D;
    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: #4b5563;
    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 #e5e7eb;
    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: #f3f4f6;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    cursor: default;
    transition: background 0.2s, color 0.2s;
}

.lq-wizard__progress-item.is-done {
    cursor: pointer;
    background: #ecfdf5;
    color: #059669;
}

.lq-wizard__progress-item.is-active {
    background: #0D111D;
    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: #0D111D;
    margin: 0 0 0.5rem;
}

.lq-wizard__panel-desc {
    color: #6b7280;
    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: #f3f4f6;
    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: #6b7280;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.lq-input-tabs__tab:hover {
    color: #374151;
}

.lq-input-tabs__tab.is-active {
    background: #fff;
    color: #0D111D;
    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: #374151;
    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: #6b7280;
    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 #d1d5db;
    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: #0D111D;
    background: #f3f4f6;
}

.lq-file-upload__dropzone:focus-visible {
    outline: 2px solid #0D111D;
    outline-offset: 2px;
}

.lq-file-upload__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.lq-file-upload__dropzone-title {
    font-weight: 600;
    color: #0D111D;
    margin: 0 0 0.375rem;
    font-size: 0.9375rem;
}

.lq-file-upload__dropzone-hint {
    font-size: 0.8125rem;
    color: #9ca3af;
    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: #f9fafb;
    border: 1px solid #e5e7eb;
    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: #374151;
}

.lq-file-upload__file-size {
    color: #9ca3af;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.lq-file-upload__file-remove {
    appearance: none;
    border: none;
    background: transparent;
    color: #9ca3af;
    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: #9ca3af;
    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: #f3f4f6;
    color: #374151;
}

.lq-file-upload__status--success {
    background: #ecfdf5;
    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 #d1d5db;
    border-top-color: #0D111D;
    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: #374151;
    margin-bottom: 0.375rem;
}

.lq-input-wrap {
    position: relative;
}

.lq-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    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: #9ca3af;
    font-size: 0.875rem;
    pointer-events: none;
}

.lq-input:focus {
    outline: none;
    border-color: #D25401;
    box-shadow: 0 0 0 3px rgba(210, 84, 1, 0.12);
}

.lq-field-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    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 #e5e7eb;
}

.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: #9ca3af;
    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: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.lq-kpi__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.lq-kpi__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D111D;
    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: #4b5563;
    margin-bottom: 1rem;
}

.lq-result-alert {
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.lq-result-alert--success {
    background: #ecfdf5;
    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: #0D111D;
}

.lq-result-alert__body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Lead form */
.lq-lead {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.lq-lead__title {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: #0D111D;
}

.lq-lead__desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lq-lead__submit {
    margin-top: 0.5rem;
}

.lq-lead__privacy {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.75rem 0 0;
}

.lq-lead__privacy a {
    color: #D25401;
}

.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(210, 84, 1, 0.12);
    color: #D25401;
}

.lq-card__icon--legal {
    background: rgba(15, 17, 30, 0.08);
    color: #374151;
}

.lq-card__icon--info {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.lq-card__icon--success {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.lq-card h3 {
    font-size: 1.0625rem;
    color: #0D111D;
    margin: 0 0 0.75rem;
}

.lq-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
    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: #0D111D;
    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: #0D111D;
}

.lq-step p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

.lq-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    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 #e5e7eb;
    vertical-align: top;
}

.lq-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.lq-table td {
    color: #4b5563;
    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: var(--color-surface-canvas);
    border-radius: 12px;
    padding: 0 1.25rem;
    box-shadow: 0 1px 2px rgba(13, 17, 29, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.lq-faq__item:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 14px rgba(13, 17, 29, 0.07);
}

.lq-faq__item[open] {
    background: #fff;
    border-color: rgba(210, 84, 1, 0.35);
    box-shadow: 0 4px 18px rgba(13, 17, 29, 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: #0D111D;
    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: #eef2f6;
    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: #D25401;
}

.lq-faq__item summary:hover::after {
    background-color: rgba(210, 84, 1, 0.12);
}

.lq-faq__item[open] summary {
    color: #0D111D;
    padding-bottom: 1rem;
}

.lq-faq__item[open] summary::after {
    transform: rotate(180deg);
    background-color: rgba(210, 84, 1, 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: #4b5563;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.lq-cta-final h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #0D111D;
    margin-bottom: 0.75rem;
}

.lq-cta-final p {
    font-size: 1.0625rem;
    color: #6b7280;
    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: 'Kalnia', serif;
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #FF3300, #FFA66C);
    -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: #0F111E;
}

.error-page__lead {
    color: #4F5B76;
    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: #D25401;
    font-weight: 500;
    text-decoration: none;
}

.error-page__link:hover {
    text-decoration: underline;
}

/* ─── Sunset 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: #f3f4f6;
    color: #374151;
}

.sr-chip--danger { background: #fef2f2; color: #dc2626; }
.sr-chip--warning { background: #fffbeb; color: #d97706; }
.sr-chip--success { background: #ecfdf5; color: #059669; }

.sr-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #374151;
    cursor: pointer;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.sr-check-label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sr-readiness {
    background: #fff;
    border: 1px solid #e5e7eb;
    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 (sunset-recovery.html) */
.lp-sunset-recovery {
    background: var(--color-surface-canvas);
    font-family: var(--font-ui);
    color: var(--color-ink-secondary);
    -webkit-font-smoothing: antialiased;
}

.lp-sunset-recovery .sr-section-head__title,
.lp-sunset-recovery .sr-quote__block p,
.lp-sunset-recovery .lq-cta-final > h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
    color: var(--color-ink);
}

.lp-sunset-recovery .sr-feature__eyebrow,
.lp-sunset-recovery .sr-methods__phase,
.lp-sunset-recovery .sr-feature__metric-label,
.lp-sunset-recovery .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-sunset-recovery .sr-suite-card__title,
.lp-sunset-recovery .sr-feature__title,
.lp-sunset-recovery .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;
}

/* Suite cards */
.sr-suite {
    padding: var(--space-section-lg) 0;
    background: var(--color-surface-canvas);
}

.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(15, 17, 30, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sr-suite-card:hover {
    box-shadow: 0 8px 32px rgba(15, 17, 30, 0.07);
    transform: translateY(-2px);
}

.sr-suite-card__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.5rem;
    margin-bottom: var(--space-stack-lg);
    border-radius: var(--radius-md);
    background: var(--color-blue-wash);
    overflow: hidden;
}

.sr-suite-card__visual svg {
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    z-index: 1;
    color: var(--color-blue);
}

.sr-suite-card__orb {
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.5;
}

.sr-suite-card__orb--green { background: var(--color-blue); }
.sr-suite-card__orb--amber { background: var(--color-blue-muted); }
.sr-suite-card__orb--orange { background: var(--color-accent-soft); }

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

/* Feature rows */
.sr-feature {
    padding: var(--space-section) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.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-xl);
    background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    box-shadow: 0 16px 48px rgba(13, 17, 29, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-stack-sm) var(--space-stack-md);
}

.sr-feature__panel--light {
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 4px 24px rgba(15, 17, 30, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-stack-sm);
}

.sr-feature__metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    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(--color-surface);
    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-sunset-recovery .sr-methods {
    padding: var(--space-section-lg) 0;
    background: var(--color-surface-canvas);
}

.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-lg);
    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(15, 17, 30, 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 — navy / slate blue + accent orange */
.sr-pillar-card__art--bwa {
    background: linear-gradient(145deg, var(--color-blue-wash) 0%, var(--color-blue-wash-deep) 100%);
}

.sr-pillar-card__art--bwa::before {
    width: 5rem;
    height: 5rem;
    background: rgba(58, 90, 155, 0.16);
    top: -1.5rem;
    right: -1rem;
}

.sr-pillar-card__art--bwa::after {
    width: 8rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--color-blue) 25%, var(--color-blue) 65%, transparent);
    bottom: 2.25rem;
    left: 1.5rem;
    transform: rotate(-8deg);
    box-shadow:
        0 -1.25rem 0 -1px rgba(58, 90, 155, 0.28),
        0 -2.5rem 0 -1px rgba(58, 90, 155, 0.14);
}

.sr-pillar-card__art--liquidity {
    background: linear-gradient(145deg, #eef2f8 0%, #d8e2ef 100%);
}

.sr-pillar-card__art--liquidity::before {
    width: 6rem;
    height: 6rem;
    border: 2px solid rgba(58, 90, 155, 0.28);
    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(58, 90, 155, 0.12);
    bottom: -0.75rem;
    right: 1.25rem;
}

.sr-pillar-card__art--runway {
    background: linear-gradient(180deg, var(--color-accent-wash) 0%, #fde8d8 100%);
}

.sr-pillar-card__art--runway::before {
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: var(--color-accent);
    bottom: 2.5rem;
    left: 0;
    opacity: 0.35;
}

.sr-pillar-card__art--runway::after {
    width: 3rem;
    height: 3rem;
    background: var(--color-accent-muted);
    top: 1.5rem;
    left: 2rem;
}

.sr-pillar-card__art--assets {
    background: linear-gradient(145deg, var(--color-accent-wash) 0%, #fde8d8 100%);
}

.sr-pillar-card__art--assets::before {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-sm);
    background: var(--color-accent-muted);
    top: 1.75rem;
    left: 2rem;
    box-shadow: 2.5rem 0.75rem 0 rgba(210, 84, 1, 0.08);
}

.sr-pillar-card__art--assets::after {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-sm);
    background: rgba(210, 84, 1, 0.06);
    top: 0.75rem;
    right: 1.5rem;
}

.sr-pillar-card__art--wc {
    background: linear-gradient(145deg, var(--color-blue-wash) 0%, #e2e8f0 100%);
}

.sr-pillar-card__art--wc::before {
    width: 5rem;
    height: 5rem;
    border: 2px solid rgba(58, 90, 155, 0.22);
    background: transparent;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.sr-pillar-card__art--wc::after {
    width: 2rem;
    height: 2rem;
    background: rgba(210, 84, 1, 0.18);
    top: 2.5rem;
    left: calc(50% + 1.5rem);
}

.sr-pillar-card__art--receivables {
    background: linear-gradient(145deg, #eef2f8 0%, var(--color-blue-wash-deep) 100%);
}

.sr-pillar-card__art--receivables::before {
    width: 3rem;
    height: 4rem;
    border-radius: 4px;
    background: rgba(58, 90, 155, 0.14);
    top: 1.5rem;
    left: 2.25rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(58, 90, 155, 0.08);
}

.sr-pillar-card__art--receivables::after {
    width: 4.5rem;
    height: 1px;
    border-radius: 0;
    background: rgba(210, 84, 1, 0.28);
    top: 2.75rem;
    left: 2.5rem;
    box-shadow: 0 0.75rem 0 rgba(58, 90, 155, 0.18), 0 1.5rem 0 rgba(58, 90, 155, 0.1);
}

.sr-pillar-card__art--investor {
    background: linear-gradient(145deg, #e8edf4 0%, #cbd5e1 100%);
}

.sr-pillar-card__art--investor::before {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 166, 108, 0.35);
    top: 2rem;
    left: calc(50% - 1.125rem);
}

.sr-pillar-card__art--investor::after {
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(58, 90, 155, 0.25);
    top: 1.25rem;
    left: calc(50% + 2rem);
    box-shadow: -5.5rem 2.5rem 0 rgba(58, 90, 155, 0.12), 3rem 3rem 0 rgba(210, 84, 1, 0.1);
}

.sr-pillar-card__art--debt {
    background: linear-gradient(145deg, var(--color-surface-muted) 0%, #e2e8f0 100%);
}

.sr-pillar-card__art--debt::before {
    width: 7rem;
    height: 3.5rem;
    border: 2px solid rgba(58, 90, 155, 0.2);
    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: var(--color-accent-muted);
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* 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 #eceef1;
    border-radius: 18px;
    padding: 1.625rem 1.75rem;
    box-shadow: 0 1px 2px rgba(15, 17, 30, 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(15, 17, 30, 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: #D25401; }

.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: #6b7280;
}

.sr-pillar-card__metric {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
}

.sr-pillar-card:not(.sr-pillar-card--calm) .sr-pillar-card__title {
    font-size: 1.125rem;
    margin: 0 0 0.625rem;
    color: #0D111D;
}

.sr-pillar-card__title a {
    color: inherit;
    text-decoration: none;
}

.sr-pillar-card__title a:hover {
    color: #D25401;
}

.sr-pillar-card__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4b5563;
    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: #6b7280;
    padding-left: 0.875rem;
    border-left: 2px solid #e5e7eb;
}

.sr-pillar-card__insights strong {
    color: #374151;
    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: #D25401;
    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: var(--space-section) 0;
    background: var(--color-surface);
}

.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-sunset-recovery .sr-product-band .sr-product-band__inner {
    max-width: 36rem;
}

.lp-sunset-recovery .lq-section--product {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
}

.lp-sunset-recovery .lq-product__eyebrow {
    color: var(--color-accent-soft);
}

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

.lp-sunset-recovery .lq-section--product .lq-section__title {
    font-family: var(--font-display);
}

.lp-sunset-recovery .lq-cta-final > h2 {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display);
    margin-bottom: var(--space-stack-md);
}

.lp-sunset-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-sunset-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(210, 84, 1, 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(15, 17, 30, 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(15, 17, 30, 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: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.lq-funnel__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #9ca3af;
    transition: color 0.25s ease;
}

.lq-funnel__step.is-active {
    color: #0D111D;
}

.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: #D25401;
    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 #e5e7eb;
    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: #6b7280;
    margin: 0 0 0.5rem;
}

.lq-funnel__score-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #0D111D;
    margin: 0;
}

.lq-funnel__score-value span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #9ca3af;
}

.lq-funnel__score-warning {
    font-size: 0.875rem;
    color: #6b7280;
    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: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.lq-funnel__metric-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.lq-funnel__metric-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0D111D;
}

.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: #0D111D;
}

.lq-funnel__issue {
    background: var(--color-surface-canvas, #fff);
    border: 1px solid #e5e7eb;
    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: #9ca3af;
    flex-shrink: 0;
}

.lq-funnel__issue-title {
    font-size: 1rem;
    margin: 0;
    color: #0D111D;
}

.lq-funnel__issue-teaser {
    font-size: 0.9375rem;
    color: #D25401;
    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: #6b7280;
    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, #0D111D 0%, #1B2434 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: #d1d5db;
}

.lq-funnel__gate-form .lq-field label {
    color: #d1d5db;
}

.lq-funnel__gate-submit {
    width: 100%;
    margin-top: 0.75rem;
}

.lq-funnel__gate-privacy {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.75rem 0 0;
}

.lq-funnel__gate-privacy a {
    color: #fb923c;
}

.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: #d1d5db;
    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;
    }
}
