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

.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 {
    height: 24px;
    width: auto;
}

.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: 600;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: linear-gradient(135deg, #FF3300, #D25401);
    color: #fff;
    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),
        box-shadow 0.2s 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 {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 3px 12px rgba(255, 51, 0, 0.3);
}

.header--scrolled .btn-nav-cta:hover {
    transform: translateY(-1px) 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);
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    min-height: 44px;
    padding: 0 1.125rem;
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-block;
    min-height: 52px;
    display: flex;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4d5ec1 0%, #3a5a9b 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    color: #fff;
    box-shadow: 0 4px 12px rgba(126, 1, 210, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #406a99, #4865a8, #0f3b6c, #31689c);
    border-radius: inherit;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0c163b 0%, #06063e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 25, 67, 0.4), 0 0 20px rgba(38, 32, 149, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

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

.btn-cta-primary {
    background: #D25401;
    color: #fff;
    border: 1px solid transparent;
    box-shadow: none;
}

.btn-cta-primary:hover {
    background: #b84901;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(210, 84, 1, 0.25);
}

.btn-cta-secondary {
    background: #fff;
    color: #D25401;
    border: 1px solid #e3e8ee;
    box-shadow: none;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #b84901;
    border-color: #D25401;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.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 {
    width: 100%;
    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;
    }
    
    .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,
.btn-cta-primary:focus,
.btn-cta-secondary:focus,
input:focus,
textarea:focus {
    outline: 2px solid #D25401;
    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;
    }
}

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

/* 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__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--warning .page-float-alerts__title {
    color: #FFB483;
}

.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 {
    background: linear-gradient(135deg, #0D111D 0%, #1e293b 100%);
    color: #fff;
}

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

.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 {
    width: 100%;
    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: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.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: 50%;
    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: 640px;
}

.lq-faq {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lq-faq__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 1.25rem;
}

.lq-faq__item summary {
    padding: 1rem 0;
    font-weight: 600;
    color: #0D111D;
    cursor: pointer;
    list-style: none;
}

.lq-faq__item summary::-webkit-details-marker {
    display: none;
}

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

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

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