:root {
    --primary: #255879;
    --primary-dark: #1a3f57;
    --primary-light: #3a7a9e;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
    --bg-white: #ffffff;
    --bg-light: #f5f5f7;
    --bg-dark: #1d1d1f;
    --border: rgba(0, 0, 0, 0.08);
    --font: 'Poppins', sans-serif;
    --header-h: 60px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

img, svg {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto;
}

* { cursor: default; }

button, a, .menu-toggle, .user-profile, .dropdown-item,
.menu-dropdown-item, .profile-name, .profile-avatar,
.header-logo, .n-social-icon, .n-industry-card {
    cursor: pointer !important;
}

html {
    scrollbar-width: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar { display: none; }

body {
    font-family: var(--font);
    line-height: 1.6;
    color: #333;
    background-color: transparent;
    overflow-x: hidden;
}

button, input, select, textarea {
    font-family: var(--font);
}

/* ─── HEADER ─── */
header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 8vh;
    background-color: var(--primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0.1vh solid rgba(204, 204, 204, 0.3);
    color: white;
    padding: 0 2vw;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-left { justify-self: start; }
.header-right { justify-self: end; position: relative; display: flex; align-items: center; height: 100%; }

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: background 0.18s ease;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.12); }
.menu-toggle:active { background: rgba(255, 255, 255, 0.08); }
.menu-toggle svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
}

.menu-dropdown {
    position: fixed;
    top: 8vh;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    padding: 4vh 0;
}
.menu-dropdown.show {
    display: flex;
    justify-content: center;
}
.menu-dropdown-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11vw;
    padding: 0 2vw;
    position: relative;
}
.menu-dropdown-column { padding: 0; }
.menu-dropdown-column-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 18px;
    padding: 1.5vh 0 1vh 0;
    margin-bottom: 0.5vh;
}
.menu-dropdown-item {
    padding: 0.8vh 0;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-family: var(--font);
    transition: color 0.2s ease;
    color: #555;
    display: block;
    line-height: 1.4;
    font-weight: 500;
}
.menu-dropdown-item:hover { color: var(--primary); }
.menu-dropdown-item.active { color: var(--primary); font-weight: 600; }
.menu-dropdown-footer {
    position: absolute;
    bottom: 2vh;
    right: 2vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8vh;
}
.menu-dropdown-social { display: flex; gap: 15px; }
.menu-dropdown-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.menu-dropdown-social-icon:hover { background-color: #1e4a5f !important; transform: scale(1.1); }
.menu-dropdown-social-icon svg { width: 20px; height: 20px; fill: white; }

.header-logo-container { justify-self: center; overflow: visible; height: 8vh; display: flex; align-items: center; }
.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white !important;
    font-size: 0;
    font-weight: 700;
}
.header-logo img {
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
}
.header-logo img:not(.header-logo-wordmark) {
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.header-logo-wordmark-wrap {
    height: 28px;
    width: 133px;
    background-image: url('https://xkdjylcywxpwdnuupqge.supabase.co/storage/v1/object/public/images/fillZone.png');
    background-size: auto 98px;
    background-position: -29px -35px;
    background-repeat: no-repeat;
}
.header-logo-wordmark {
    display: none;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    padding: 8px 26px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    position: relative;
}
.user-profile:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
}
.user-profile:active {
    background: rgba(245, 245, 247, 0.95);
    transform: scale(0.97);
}
.profile-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.01em;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--primary);
}
.profile-avatar > * { border-radius: 50%; overflow: hidden; }
.profile-avatar.has-image {
    background: #e8eef2;
    font-size: 0;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.profile-avatar.wide-image img {
    max-width: 90%;
    max-height: 60%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}
.profile-name {
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(250, 250, 252, 0.88);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.16);
    min-width: 200px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    padding: 6px 0;
}
.dropdown-menu.show { display: block; }
.dropdown-item {
    padding: 10px 18px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 13.5px;
    font-family: var(--font);
    color: #1d1d1f;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: background-color 0.15s ease;
    border-radius: 0;
}
.dropdown-item:hover { background-color: rgba(0, 0, 0, 0.05); }
.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.dropdown-item:last-child { color: #ff3b30; }

/* ─── MAIN ─── */
main {
    padding-top: 8vh;
    overflow-x: hidden;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }

/* ─── HERO ─── */
.n-hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    overflow: hidden;
}

.n-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://xkdjylcywxpwdnuupqge.supabase.co/storage/v1/object/public/images/background_2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    animation: heroBgPan 30s ease-in-out infinite alternate;
}
@keyframes heroBgPan {
    from { transform: scale(1.05) translate(-1%, -1%); }
    to   { transform: scale(1.05) translate(1%, 1%); }
}

.n-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.n-hero-eyebrow {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.n-hero-title {
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 16px;
}
.n-hero-title span {
    color: #888;
    display: block;
    font-weight: 300;
    font-size: clamp(24px, 3.5vw, 48px);
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.n-hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.n-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.n-hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.n-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.n-chevron {
    width: 28px;
    height: 14px;
    color: var(--primary);
    opacity: 0;
}
.n-chevron-1 { animation: chevronFade 1.5s ease-in-out infinite 0s; }
.n-chevron-2 { animation: chevronFade 1.5s ease-in-out infinite 0.25s; }
.n-chevron-3 { animation: chevronFade 1.5s ease-in-out infinite 0.5s; }
@keyframes chevronFade {
    0% { opacity: 0; transform: translateY(-4px); }
    40% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(4px); }
    100% { opacity: 0; transform: translateY(4px); }
}

/* ─── BUTTONS ─── */
.n-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1.5px solid var(--primary);
}
.n-btn-primary {
    background: white;
    color: var(--primary);
}
.n-btn-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@keyframes heartbeat {
    0%   { transform: scale(1); }
    14%  { transform: scale(1.06); }
    28%  { transform: scale(1); }
    42%  { transform: scale(1.04); }
    56%  { transform: scale(1); }
    100% { transform: scale(1); }
}
.n-btn-heartbeat {
    animation: heartbeat 2.2s ease-in-out infinite;
}
.n-btn-heartbeat:hover {
    animation: none;
}
.n-btn-secondary {
    background: white;
    color: var(--primary);
}
.n-btn-secondary:hover {
    background: rgba(37, 88, 121, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ─── STATS BAR ─── */
.n-stats-bar {
    background: var(--bg-light);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}
.n-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.n-stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 24px;
}
.n-stat-value {
    display: block;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.n-stat-desc {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 4px;
}
.n-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── GENERIC SECTION ─── */
.n-section { padding: 100px 24px; }
.n-section-inner { max-width: 1100px; margin: 0 auto; }
.n-section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
}
.n-section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 60px;
}

/* ─── VALUE SECTION ─── */
.n-value-section { background: var(--bg-white); }
.n-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.n-value-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
}
.n-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}
.n-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}
.n-value-icon svg { width: 100%; height: 100%; }
.n-value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.n-value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* ─── INDUSTRIES ─── */
.n-industries-section { background: var(--bg-light); }
.n-industries-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
    margin: -24px 0 56px;
}
.n-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.n-industry-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.n-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 88, 121, 0.2);
}
.n-industry-img-wrap {
    aspect-ratio: 1/1;
    max-height: 220px;
    margin: 0 auto;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.n-industry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.n-industry-card:hover .n-industry-img-wrap img { transform: scale(1.06); }
.n-industry-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}
.n-industry-body h3 { width: 100%; }
.n-industry-body p {
    width: 100%;
    flex: 1;
}
.n-industry-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.n-industry-body p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 14px;
}
.n-industry-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.01em;
}
.n-industry-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--primary);
    background: white;
    color: var(--primary);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.n-industry-card:hover .n-industry-btn {
    background: rgba(37, 88, 121, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ─── HOW IT WORKS ─── */
.n-how-section { background: white; }
.n-how-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
    margin: -24px 0 56px;
}
.n-how-cta {
    margin-top: 56px;
    text-align: center;
}
.n-steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-top: 8px;
}
.n-step {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
}
.n-step-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(37, 88, 121, 0.1);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}
.n-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.n-step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}
.n-step-connector {
    width: 40px;
    flex-shrink: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(37,88,121,0.2), rgba(37,88,121,0.5));
    margin-top: 28px;
    align-self: flex-start;
}

/* ─── PILLARS SECTION ─── */
.n-pillars-section {
    background: var(--bg-light);
}
.n-pillars-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
    margin: -24px 0 56px;
}

.n-coverage-chart {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px 48px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.n-coverage-bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 0;
    margin-bottom: 20px;
}

.n-cbar {
    background: var(--primary);
    color: white;
    border-radius: 100px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n-cbar-oem    { grid-column: 1 / 6; background: linear-gradient(to right, #255879, #8ab2c9); }
.n-cbar-private{ grid-column: 2 / 6; background: linear-gradient(to right, #255879, #8ab2c9); }
.n-cbar-white  { grid-column: 3 / 6; background: linear-gradient(to right, #255879, #8ab2c9); }
.n-cbar-lohn   { grid-column: 3 / 5; background: linear-gradient(to right, #255879, #8ab2c9); }
.n-cbar-coop   { grid-column: 4 / 6; background: linear-gradient(to right, #255879, #8ab2c9); }

.n-process-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1.5px solid rgba(37,88,121,0.1);
    padding-top: 16px;
}

.n-pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.n-pstep img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.n-pstep span {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
}

.n-pillars-desc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.n-pdesc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    align-self: stretch;
    transition: opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.n-cbar { cursor: pointer; transition: opacity 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease; }

.n-cbar.n-cbar-dimmed { opacity: 0.35; }
.n-cbar.n-cbar-active { filter: brightness(1.12); box-shadow: 0 4px 16px rgba(37,88,121,0.35); }

.n-pdesc.n-pdesc-active {
    border-color: var(--primary);
    background: rgba(37,88,121,0.05);
    box-shadow: 0 4px 16px rgba(37,88,121,0.12);
}
.n-pdesc.n-pdesc-dimmed { opacity: 0.4; }

.n-pdesc-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.n-pdesc p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.n-pillars-cta {
    text-align: center;
}

/* ─── PROVIDER SECTION ─── */
.n-provider-section {
    background: var(--primary);
    padding: 0;
}
.n-provider-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    min-height: 500px;
}
.n-provider-text-top {
    grid-column: 1;
    grid-row: 1;
    padding: 80px 60px 24px 48px;
}
.n-provider-text-bottom {
    grid-column: 1;
    grid-row: 2;
    padding: 0 60px 80px 48px;
}
.n-section-label-light {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    display: block;
}
.n-provider-text-top h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.n-provider-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
}
.n-provider-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.n-provider-actions .n-btn-primary,
.n-provider-actions .n-btn-secondary {
    min-width: 180px;
    width: 180px;
    justify-content: center;
}
.n-provider-actions .n-btn-primary {
    background: var(--primary);
    color: white;
    border-color: white;
}
.n-provider-actions .n-btn-primary:hover {
    background: var(--primary-dark, #1a3f57);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.n-provider-actions .n-btn-secondary {
    border-color: white;
    color: white;
    background: transparent;
}
.n-provider-actions .n-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 480px) {
    .n-provider-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .n-provider-actions .n-btn-primary,
    .n-provider-actions .n-btn-secondary {
        width: 100%;
        min-width: unset;
    }
}
.n-provider-image {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0 40px;
    overflow: hidden;
}
.n-provider-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: visible;
}
.n-provider-image img {
    width: 105%;
    max-width: 105%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
    position: relative;
    z-index: 1;
    margin-bottom: -12px;
}

/* ─── LKW CARDS ROW ─── */
.lkw-cards-row {
    display: flex;
    gap: 18px;
    width: 100%;
    position: relative;
    z-index: 2;
}

@keyframes lkw-card-float-a {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
@keyframes lkw-card-float-b {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
@keyframes lkw-card-float-c {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.lkw-card {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 16px 14px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
    text-align: center;
    min-height: 155px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease;
}
.lkw-card:nth-child(1) { animation: lkw-card-float-a 4.8s ease-in-out infinite; }
.lkw-card:nth-child(2) { animation: lkw-card-float-b 5.4s ease-in-out infinite 0.8s; }
.lkw-card:nth-child(3) { animation: lkw-card-float-c 4.2s ease-in-out infinite 1.4s; }
.lkw-card:hover {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 16px 48px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,1);
    transform: translateY(-6px) scale(1.03) !important;
    animation-play-state: paused;
}

.lkw-card-title {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    color: #8e8e93;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.lkw-card-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    flex: 1;
    justify-content: center;
    min-height: 0;
}

.lkw-card-info {
    display: block;
    font-size: 8.5px;
    color: #8e8e93;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    flex-shrink: 0;
}

.lkw-card-value {
    font-size: 24px;
    font-weight: 700;
    color: #255879;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}
.lkw-card-delta {
    font-size: 10px;
    font-weight: 600;
    color: #34c759;
    display: block;
}

.lkw-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(37,88,121,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.lkw-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #255879, #3a7a9e);
    border-radius: 2px;
}

.lkw-count-badge {
    font-size: 9.5px;
    font-weight: 700;
    color: white;
    background: #255879;
    border-radius: 20px;
    padding: 3px 10px;
    line-height: 1.4;
    display: inline-block;
    margin-top: 18px;
    flex-shrink: 0;
}

.lkw-card-svg {
    width: 100%;
    height: 48px;
    overflow: visible;
}
.lkw-card-svg-lg {
    height: 76px;
}

.lkw-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 48px;
    width: 100%;
}
.lkw-mbar {
    flex: 1;
    background: rgba(37,88,121,0.1);
    border-radius: 3px 3px 1px 1px;
}
.lkw-mbar-hi {
    background: #255879;
}

.lkw-trend-svg {
    width: 100%;
    height: 38px;
}

.lkw-trend-badge {
    font-size: 9.5px;
    font-weight: 700;
    color: #34c759;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-top: 2px;
}

.lkw-network-svg {
    width: 100%;
    height: 36px;
}

.lkw-inbox-svg {
    width: 100%;
    height: 62px;
    overflow: visible;
}

.lkw-country-row {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.lkw-ctag {
    font-size: 9px;
    font-weight: 600;
    color: #255879;
    background: rgba(37,88,121,0.08);
    border: 1px solid rgba(37,88,121,0.18);
    border-radius: 5px;
    padding: 2px 5px;
    letter-spacing: 0.04em;
}
.lkw-ctag-more {
    color: #8e8e93;
    background: transparent;
    border-color: transparent;
}

.lkw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}
.lkw-tag {
    font-size: 10px;
    font-weight: 500;
    color: #255879;
    background: rgba(37,88,121,0.08);
    border: 1px solid rgba(37,88,121,0.15);
    border-radius: 5px;
    padding: 2px 7px;
    white-space: nowrap;
}
.lkw-tag-cert {
    color: #255879;
    background: rgba(37,88,121,0.14);
    border-color: rgba(37,88,121,0.28);
}


/* ─── CTA SECTION ─── */
.n-cta-section {
    background: var(--bg-light);
    text-align: center;
}
.n-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 24px;
}
.n-cta-inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.n-cta-inner p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

/* ─── FOOTER (identisch index.html) ─── */
.footer-section {
    background-color: white !important;
    background-image: none !important;
    position: relative;
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto !important;
    min-height: auto !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    padding: 0 5vw;
    width: 100%;
}

.footer-column {
    text-align: left;
    min-width: 0;
    flex: 1;
    max-width: 250px;
    color: white;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    border-bottom: 2px solid white;
    padding-bottom: 8px;
}

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

.footer-column li {
    margin-bottom: 4px;
    color: white !important;
    font-size: 16px;
    opacity: 1 !important;
    line-height: 1.5;
}

.footer-column a {
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.footer-column a:hover {
    opacity: 1;
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 20px;
    width: 100%;
}

.footer-bottom p {
    color: white;
    font-size: 14px;
    opacity: 1;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 1 !important;
    backdrop-filter: none !important;
    filter: none !important;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    opacity: 1;
}

/* ─── FLIP COUNTER (identisch index.html) ─── */
.stat-card {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr auto 1fr;
        padding: 0 15px;
        z-index: 1000 !important;
    }

    .header-logo { font-size: 0; }
    .header-logo img { font-size: initial; }
    .header-logo-wordmark-wrap { display: none; }

    .menu-toggle svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }

    .menu-dropdown {
        top: 8vh !important;
        padding: 0 !important;
        height: auto !important;
        max-height: calc(100vh - 8vh) !important;
        overflow-y: auto !important;
        border-bottom: 1px solid rgba(204, 204, 204, 0.3) !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
        display: none;
        width: 100% !important;
        min-width: auto !important;
        left: 0 !important;
        right: 0 !important;
    }
    .menu-dropdown.show { display: flex !important; flex-direction: column !important; }

    .menu-dropdown-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .menu-dropdown-column {
        width: 100% !important;
        border-bottom: 1px solid rgba(37, 88, 121, 0.1);
        padding: 0 !important;
    }
    .menu-dropdown-column:last-child { border-bottom: none !important; }
    .menu-dropdown-column-title {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        padding: 15px 20px !important;
        margin: 0 !important;
        font-size: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .menu-dropdown-column-title::after {
        content: '▼';
        font-size: 10px;
        transition: transform 0.3s ease;
        color: #255879;
    }
    .menu-dropdown-column.active .menu-dropdown-column-title::after { transform: rotate(180deg); }
    .menu-dropdown-item {
        display: none !important;
        padding: 12px 30px !important;
        font-size: 14px !important;
        text-align: left !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        color: #555 !important;
    }
    .menu-dropdown-column.active .menu-dropdown-item { display: block !important; }
    .menu-dropdown-footer { display: none !important; }

    .profile-name { display: none !important; }

    .profile-avatar {
        width: 22px !important;
        height: 22px !important;
        font-size: 10px !important;
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--primary) !important;
    }

    .user-profile {
        padding: 3px !important;
        gap: 0 !important;
    }

    .user-profile:hover {
        background: rgba(255, 255, 255, 1) !important;
    }

    .dropdown-item {
        font-size: 14px !important;
        padding: 12px 18px;
    }

    .dropdown-menu {
        min-width: 190px !important;
    }

    .n-value-grid { grid-template-columns: 1fr; gap: 16px; }
    .n-value-section .n-section-title { margin-bottom: 32px; }

    .n-pillars-intro { font-size: 17px; }
    .n-how-intro { font-size: 17px; }
    .n-industries-intro { font-size: 17px; }
    .n-coverage-chart { padding: 28px 20px 24px; }
    .n-coverage-bars { gap: 10px 0; }
    .n-cbar { height: 30px; font-size: 12px; padding: 0 14px; }
    .n-pstep span { font-size: 10px; }
    .n-pstep img { width: 44px; height: 44px; }
    .n-pillars-desc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

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

    .n-steps {
        flex-direction: column;
        gap: 0;
    }
    .n-step {
        padding: 0 16px;
    }
    .n-step-connector {
        width: 2px;
        height: 32px;
        margin: 0 0 0 28px;
        background: linear-gradient(180deg, rgba(37,88,121,0.2), rgba(37,88,121,0.5));
        align-self: auto;
    }

    .n-provider-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .n-provider-text-top {
        grid-column: 1;
        grid-row: 1;
        padding: 48px 24px 0;
    }
    .n-provider-text-top h2 { margin-bottom: 0; }
    .n-provider-image {
        grid-column: 1;
        grid-row: 2;
        min-height: unset;
        padding: 0 8px 0;
        margin-top: 0;
    }
    .n-provider-text-bottom {
        grid-column: 1;
        grid-row: 3;
        padding: 24px 24px 40px;
    }
    .n-provider-image img {
        width: 100%;
        max-width: unset;
        margin-bottom: 12px;
    }
    .n-provider-visual { padding: 0; }
    .lkw-cards-row { gap: 6px; padding: 0 4px; }
    .lkw-card {
        padding: 8px 5px 8px;
        border-radius: 12px;
        min-height: 110px;
        flex: 1;
        min-width: 0;
        gap: 0;
        justify-content: space-between;
    }
    .lkw-card-title {
        font-size: 7.5px;
        letter-spacing: 0.05em;
        flex-shrink: 0;
    }
    .lkw-card-graphic {
        flex: 1;
        gap: 2px;
        width: 100%;
        justify-content: center;
    }
    .lkw-card-svg { height: 22px; max-height: 22px; width: 100%; flex-shrink: 0; }
    .lkw-mini-bars { gap: 3px; height: 20px !important; max-height: 20px; width: 100%; flex-shrink: 0; }
    .lkw-mini-bars .lkw-mbar:nth-child(1),
    .lkw-mini-bars .lkw-mbar:nth-child(2) { display: none; }
    .lkw-mbar { border-radius: 2px; }
    .lkw-count-badge { font-size: 8px; padding: 2px 6px; }
    .lkw-card-value { font-size: 20px; }

    .n-stats-inner { flex-wrap: wrap; gap: 0; }
    .n-stat-item { min-width: 50%; }
    .n-stat-divider { display: none; }

    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-column {
        text-align: center !important;
        width: 100% !important;
        max-width: none !important;
    }

    .footer-column h3 {
        display: inline-block !important;
        width: auto !important;
        margin-bottom: 15px !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

@media (max-width: 600px) {
    .n-hero { padding: 60px 20px 100px; }
    .n-hero-eyebrow { font-size: 9px; }
    .n-hero-title { letter-spacing: -0.02em; }
    .n-hero-actions { flex-direction: column; align-items: center; }
    .n-btn { width: fit-content; max-width: 300px; }

    .n-section { padding: 72px 20px; }

    .n-industry-grid { grid-template-columns: 1fr; }

    .n-pillars-desc-grid { grid-template-columns: 1fr; }
    .n-coverage-chart { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .n-coverage-bars, .n-process-row { min-width: 620px; margin-right: 20px; }

    .n-cta-inner { padding: 72px 20px; }

    .n-stats-inner { gap: 0; }
    .n-stat-item { min-width: 50%; padding: 16px 12px; }
}
