/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://nordicleads.dk
Description: NordicLeads - Premium B2B Lead Generation. Clean, trustworthy, finance-inspired design.
Author: NordicLeads
Author URI: https://nordicleads.dk
Template: twentytwentyfive
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Force override parent theme styles for blog - AGGRESSIVE */
body.nl-blog-page,
body.home,
body.blog,
body.archive {
    overflow-x: hidden !important;
}

body.nl-blog-page main,
body.home main,
body.blog main,
body.archive main,
body.page-template-page-blog main {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

body.nl-blog-page .wp-site-blocks,
body.home .wp-site-blocks,
body.blog .wp-site-blocks,
body.archive .wp-site-blocks,
body.page-template-page-blog .wp-site-blocks {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.nl-blog-page .wp-block-group,
body.home .wp-block-group,
body.blog .wp-block-group,
body.archive .wp-block-group,
body.page-template-page-blog .wp-block-group {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

body.nl-blog-page .entry-content,
body.home .entry-content,
body.blog .entry-content,
body.archive .entry-content,
body.page-template-page-blog .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* =================================================================
   CSS Variables - NordicLeads Brand Colors
   ================================================================= */
:root {
    --nl-dark: #001f3f;
    --nl-dark-2: #002244;
    --nl-primary: #003366;
    --nl-accent: #0066cc;
    --nl-white: #ffffff;
    --nl-green: #10b981;
    --nl-gray-100: #f8fafc;
    --nl-gray-200: #e2e8f0;
    --nl-gray-400: #94a3b8;
    --nl-gray-600: #475569;
    --nl-gray-900: #0f172a;
    
    --nl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =================================================================
   Base Reset & Typography
   ================================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
    }
}

body {
    font-family: var(--nl-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--nl-gray-900);
    background: var(--nl-white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nl-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--nl-gray-900);
}

p { color: var(--nl-gray-600); }

a {
    color: var(--nl-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--nl-accent); }

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

/* =================================================================
   Skip Link
   ================================================================= */
.nl-skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: 8px;
    font-weight: 600;
}

.nl-skip-link:focus {
    top: 16px;
}

/* =================================================================
   HEADER - Transparent initially, solid on scroll
   ================================================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

#site-header.scrolled {
    background: var(--nl-white);
    border-bottom: 1px solid var(--nl-gray-200);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Header colors when transparent (on hero) */
#site-header:not(.scrolled) .nl-logo-text,
#site-header:not(.scrolled) .nl-nav-desktop > a,
#site-header:not(.scrolled) .nl-nav-dropdown-toggle {
    color: var(--nl-white);
}

#site-header:not(.scrolled) .nl-nav-desktop > a:hover,
#site-header:not(.scrolled) .nl-nav-dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Dropdown menu links should ALWAYS be dark (not white on transparent header) */
#site-header:not(.scrolled) .nl-nav-dropdown-menu a {
    color: var(--nl-gray-900) !important;
}

#site-header:not(.scrolled) .nl-nav-dropdown-menu a:hover {
    color: var(--nl-primary) !important;
}

#site-header:not(.scrolled) .nl-mobile-toggle {
    color: var(--nl-white);
}

/* Cases page - header should work exactly like frontpage */
/* No special CSS needed - uses same rules as frontpage */

.nl-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nl-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.nl-logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--nl-gray-900);
}

/* Navigation - Centered */
.nl-nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nl-nav-desktop > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--nl-gray-600);
    transition: color 0.2s ease;
}

.nl-nav-desktop > a:hover {
    color: var(--nl-gray-900);
}

@media (min-width: 1024px) {
    .nl-nav-desktop {
        display: flex;
    }
}

/* Navigation Dropdown */
.nl-nav-dropdown {
    position: relative;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nl-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    font-weight: 500;
    color: var(--nl-gray-600);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.nl-nav-dropdown-toggle:hover {
    color: var(--nl-gray-900);
}

.nl-dropdown-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nl-nav-dropdown-toggle[aria-expanded="true"] .nl-dropdown-arrow {
    transform: rotate(180deg);
}

.nl-nav-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 1rem) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--nl-white);
    border: 1px solid var(--nl-gray-200);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 220px;
    display: none !important;
    z-index: 1000;
}

.nl-nav-dropdown-menu.active {
    display: block !important;
}

.nl-nav-dropdown-menu a {
    display: block !important;
    padding: 0.75rem 1.25rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--nl-gray-900) !important;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.nl-nav-dropdown-menu a:hover {
    background-color: var(--nl-gray-100);
    color: var(--nl-primary) !important;
}

/* =================================================================
   KUNDE GENAKTIVERING CTA SECTION (Homepage)
   ================================================================= */
.nl-reactivation-cta {
    background: var(--nl-white);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--nl-gray-200);
    border-bottom: 1px solid var(--nl-gray-200);
}

.nl-reactivation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04) 0%, transparent 100%);
    pointer-events: none;
}

.nl-reactivation-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 50%;
    background: radial-gradient(circle at bottom left, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.nl-reactivation-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nl-reactivation-text {
    display: flex;
    flex-direction: column;
}

.nl-reactivation-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--nl-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.nl-reactivation-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--nl-gray-700);
    margin-bottom: 2rem;
    max-width: 90%;
}

.nl-reactivation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: grid;
    gap: 1rem;
}

.nl-reactivation-benefits li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nl-gray-700);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.nl-reactivation-benefits .nl-check-icon {
    width: 22px;
    height: 22px;
    color: var(--nl-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.nl-reactivation-benefits span {
    flex: 1;
}

.nl-btn-reactivation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background: var(--nl-primary);
    color: var(--nl-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.2);
}

.nl-btn-reactivation:hover {
    background: var(--nl-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.nl-btn-reactivation:active {
    transform: translateY(0);
}

.nl-btn-arrow {
    transition: transform 0.3s ease;
}

.nl-btn-reactivation:hover .nl-btn-arrow {
    transform: translateX(4px);
}

.nl-reactivation-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.nl-stat-card {
    background: var(--nl-white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid var(--nl-gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nl-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nl-primary) 0%, var(--nl-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nl-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-color: var(--nl-primary);
}

.nl-stat-card:hover::before {
    transform: scaleX(1);
}

.nl-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--nl-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.nl-stat-label {
    font-size: 0.9375rem;
    color: var(--nl-gray-600);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .nl-reactivation-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .nl-reactivation-title {
        font-size: 2.5rem;
    }
    
    .nl-reactivation-desc {
        max-width: 100%;
    }
    
    .nl-reactivation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .nl-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .nl-stat-number {
        font-size: 2.25rem;
    }
    
    .nl-stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .nl-reactivation-cta {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .nl-reactivation-cta {
        padding: 4.5rem 0;
    }
    
    .nl-reactivation-cta::before {
        width: 60%;
    }
    
    .nl-reactivation-cta::after {
        width: 50%;
        height: 40%;
    }
    
    .nl-reactivation-content {
        gap: 3rem;
    }
    
    .nl-reactivation-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .nl-reactivation-desc {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .nl-reactivation-benefits {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .nl-reactivation-benefits li {
        font-size: 0.9375rem;
        gap: 0.625rem;
    }
    
    .nl-reactivation-benefits .nl-check-icon {
        width: 20px;
        height: 20px;
    }
    
    .nl-btn-reactivation {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
    
    .nl-reactivation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
    }
    
    .nl-stat-card {
        padding: 1.5rem 0.875rem;
    }
    
    .nl-stat-number {
        font-size: 2rem;
        margin-bottom: 0.375rem;
    }
    
    .nl-stat-label {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
}

@media (max-width: 640px) {
    .nl-reactivation-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nl-stat-card {
        padding: 1.75rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .nl-stat-number {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .nl-stat-label {
        font-size: 0.9375rem;
        text-align: right;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .nl-reactivation-cta {
        padding: 3.5rem 0;
    }
    
    .nl-reactivation-title {
        font-size: 1.75rem;
    }
    
    .nl-stat-card {
        padding: 1.5rem 1.25rem;
    }
    
    .nl-stat-number {
        font-size: 2.25rem;
        margin-right: 1.25rem;
    }
    
    .nl-stat-label {
        font-size: 0.875rem;
    }
}

/* =================================================================
   Sticky Lead Bar
   ================================================================= */
.nl-sticky-lead-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #003366 0%, #00509e 100%);
    color: white;
    padding: 0.85rem 0;
    z-index: 1200;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nl-sticky-lead-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.nl-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.nl-sticky-text {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
}

.nl-sticky-icon {
    font-size: 1.15rem;
}

.nl-sticky-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nl-sticky-close {
    background: transparent;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.nl-sticky-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .nl-sticky-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .nl-sticky-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* =================================================================
   Lead Gen Popup
   ================================================================= */
.nl-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 1.25rem;
    overflow-y: auto;
}

.nl-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nl-popup-content {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    margin: auto;
}

.nl-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--nl-gray-600);
    transition: color 0.2s ease;
}

.nl-popup-close:hover {
    color: var(--nl-dark);
}

.nl-popup-desc {
    color: var(--nl-gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.nl-popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: var(--nl-gray-700);
    line-height: 1.7;
}

.nl-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-popup-form input,
.nl-popup-form textarea {
    width: 100%;
    border: 1px solid var(--nl-gray-200);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nl-popup-form input:focus,
.nl-popup-form textarea:focus {
    border-color: var(--nl-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.nl-form-label {
    font-weight: 600;
    color: var(--nl-gray-800);
}

.nl-consent {
    font-size: 0.9rem;
    color: var(--nl-gray-700);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.5;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--nl-gray-200);
    border-radius: 10px;
    background: var(--nl-gray-100);
}

.nl-consent input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nl-consent span {
    display: block;
    color: var(--nl-gray-700);
}

.nl-btn-full {
    width: 100%;
    justify-content: center;
}

.nl-popup-small {
    font-size: 0.85rem;
    color: var(--nl-gray-600);
    margin-top: -0.25rem;
}

.nl-popup-status {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.nl-popup-status.error {
    color: #dc2626;
}

.nl-popup-status.success {
    color: #16a34a;
}

@media (max-width: 540px) {
    .nl-popup-overlay {
        align-items: flex-start;
        padding: 1rem;
    }
    .nl-popup-content {
        padding: 1.5rem;
        max-width: 100%;
        max-height: calc(100vh - 1.5rem);
    }
}

/* Ensure dropdown menu text is ALWAYS dark, even on transparent header */
#site-header:not(.scrolled) .nl-nav-dropdown-menu a {
    color: var(--nl-gray-900) !important;
}

#site-header:not(.scrolled) .nl-nav-dropdown-menu a:hover {
    color: var(--nl-primary) !important;
    background-color: var(--nl-gray-100);
}

/* Mobile Dropdown */
.nl-mobile-dropdown {
    display: flex;
    flex-direction: column;
}

/* =================================================================
   Services - Lead Generation (page-services-lead-generation.php)
   ================================================================= */
.nl-service-page {
    background: #f8fafc;
    color: var(--nl-gray-900);
}

.nl-service-hero {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.nl-service-hero .nl-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 960px) {
    .nl-service-hero .nl-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.nl-service-hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0.35rem 0 0.75rem;
}

.nl-service-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--nl-gray-700);
    margin-bottom: 1.5rem;
}

.nl-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: #e0f2fe;
    color: #0ea5e9;
    font-weight: 700;
    border-radius: 999px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nl-service-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nl-service-hero-image {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.nl-service-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* Features */
.nl-service-features {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.nl-service-features .nl-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nl-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .nl-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.nl-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0ea5e9;
    display: grid;
    place-items: center;
}

.nl-feature-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.nl-feature-card p {
    color: var(--nl-gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Process */
.nl-service-process {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #ffffff;
}

.nl-service-process .nl-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nl-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 960px) {
    .nl-process-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.nl-process-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.nl-process-number {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #0ea5e9;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.nl-process-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.nl-process-step p {
    margin: 0;
    color: var(--nl-gray-700);
    line-height: 1.6;
}

/* Tech stack */
.nl-service-tech {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #f8fafc;
}

.nl-tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 900px) {
    .nl-tech-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.nl-tech-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.nl-tech-item h4 {
    margin: 0 0 0.4rem;
}

.nl-tech-item p {
    margin: 0;
    color: var(--nl-gray-700);
    line-height: 1.5;
}

/* Results */
.nl-service-results {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #ffffff;
}

.nl-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 720px) {
    .nl-results-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.nl-result-stat {
    background: #0f172a;
    color: #e0f2fe;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.nl-result-stat .nl-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.nl-result-stat .nl-stat-label {
    margin-top: 0.35rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* CTA */
.nl-service-cta {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #0f172a, #0b3a7a);
    color: #fff;
}

.nl-service-cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.nl-service-cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin: 0 0 0.75rem;
}

.nl-service-cta-content p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.nl-service-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nl-service-cta .nl-btn-secondary {
    border: 1.5px solid rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
    .nl-service-hero-cta a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.nl-mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nl-gray-600);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.nl-mobile-dropdown-toggle:active,
.nl-mobile-dropdown-toggle:hover {
    background: var(--nl-gray-100);
    color: var(--nl-gray-900);
}

.nl-mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    border-left: 2px solid var(--nl-gray-200);
    margin-left: 0.5rem;
    margin-top: 0.5rem;
}

.nl-mobile-dropdown-menu.active {
    display: flex;
}

.nl-mobile-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--nl-gray-600);
}

/* Header CTA */
.nl-header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nl-btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 44px;
    line-height: 1.1;
    background: var(--nl-primary);
    color: var(--nl-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

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

.nl-btn-header:active {
    background: var(--nl-dark-2);
}

/* Mobile Toggle */
.nl-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nl-gray-600);
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nl-mobile-toggle:active {
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .nl-mobile-toggle {
    display: none;
}
}

/* Mobile Menu */
.nl-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--nl-white);
    border-bottom: 1px solid var(--nl-gray-200);
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.nl-mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.nl-mobile-menu a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nl-gray-600);
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: background 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.nl-mobile-menu a:active,
.nl-mobile-menu a:hover {
    background: var(--nl-gray-100);
    color: var(--nl-gray-900);
}

@media (max-width: 540px) {
    #site-header {
        height: 64px;
    }

    .nl-header-inner {
        padding: 0 0.75rem;
        gap: 0.375rem;
        min-width: 0;
    }

    .nl-logo {
        gap: 0.5rem;
        min-width: 0;
    }

    .nl-logo-icon {
        width: 36px;
        height: 36px;
    }

    .nl-logo-text {
        font-size: 15px;
        min-width: 0;
    }

    .nl-header-cta {
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .nl-btn-header {
        padding: 7px 9px;
        font-size: 11px;
        min-height: 34px;
        line-height: 1.15;
        display: none;
    }

    .nl-mobile-toggle {
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
    }

    .nl-mobile-menu {
        top: 64px;
        max-height: calc(100vh - 64px);
    }
}

@media (max-width: 400px) {
    .nl-logo-text {
        font-size: 14px;
    }

    .nl-header-cta {
        gap: 0;
    }
}

/* =================================================================
   HERO SECTION - Clean B2B Trust with Aurora
   ================================================================= */
.nl-hero {
    background: var(--nl-dark);
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 5.55rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Aurora Background Effect */
.nl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(ellipse 40% 30% at 30% 20%, rgba(0, 102, 204, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 35% 25% at 70% 30%, rgba(0, 51, 102, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 30% 20% at 50% 70%, rgba(0, 102, 204, 0.12) 0%, transparent 70%);
    animation: aurora 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.nl-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(ellipse 35% 30% at 60% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 30% 25% at 25% 55%, rgba(0, 102, 204, 0.14) 0%, transparent 70%);
    animation: aurora 22s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes aurora {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    33% {
        transform: translate(2%, -2%) scale(1.02);
        opacity: 1;
    }
    66% {
        transform: translate(-2%, 1%) scale(0.99);
        opacity: 0.85;
}
    100% {
        transform: translate(1%, 2%) scale(1.01);
        opacity: 0.95;
}
}

@media (min-width: 1024px) {
    .nl-hero {
        min-height: 64vh;
        padding: 5.05rem 4rem 1.25rem;
    }
}

.nl-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    margin-left: calc(50% - 720px);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 4vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

@media (max-width: 1500px) {
    .nl-hero-inner {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nl-hero-inner {
        padding: 0 1.25rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nl-hero {
        min-height: auto;
        padding: 6.8rem 1rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .nl-hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    }
}

/* Hero Content */
.nl-hero-content {
    order: 2;
    max-width: 640px;
}

@media (min-width: 1024px) {
    .nl-hero-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nl-hero-content {
        order: 1;
    }

    .nl-hero-image {
        order: 2;
        max-width: 100%;
    }

    .nl-hero-title {
        font-size: clamp(2rem, 10vw, 2.85rem);
        margin-bottom: 1.25rem;
    }
}

.nl-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--nl-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.nl-hero-title span {
    color: var(--nl-gray-400);
}

.nl-hero-subtitle {
    font-size: 1.125rem;
    color: var(--nl-gray-400);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 540px;
}

.nl-hero-emotional {
    color: var(--nl-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Check Bullets */
.nl-hero-checks {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.nl-hero-checks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nl-gray-200);
}

.nl-hero-checks svg {
    width: 20px;
    height: 20px;
    color: var(--nl-green);
    flex-shrink: 0;
}

/* Hero CTAs */
.nl-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 320px;
}

@media (min-width: 640px) {
    .nl-hero-ctas {
        flex-direction: row;
        max-width: none;
    }
}

.nl-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--nl-white);
    color: var(--nl-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.nl-btn-primary:hover {
    background: var(--nl-gray-100);
    color: var(--nl-primary);
    transform: translateY(-2px);
}

.nl-btn-primary:active {
    transform: translateY(0);
}

.nl-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--nl-white);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--nl-gray-400);
    border-radius: 10px;
    transition: all 0.2s ease;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.nl-btn-secondary:hover {
    border-color: var(--nl-white);
    color: var(--nl-white);
}

.nl-btn-secondary:active {
    opacity: 0.8;
}

/* Trust Line */
.nl-hero-trust {
    font-size: 0.8125rem;
    color: var(--nl-gray-400);
    letter-spacing: 0.02em;
}

/* Outreach Link */
.nl-hero-outreach {
    margin-top: 1.25rem;
    font-size: 0.875rem;
}

.nl-hero-outreach a {
    color: var(--nl-gray-300);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nl-hero-outreach a:hover {
    color: var(--nl-white);
}

.nl-hero-outreach a span {
    transition: transform 0.2s ease;
}

.nl-hero-outreach a:hover span {
    transform: translateX(4px);
}

/* Hero Image */
.nl-hero-image {
    order: 1;
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .nl-hero-image {
        order: 2;
        overflow: visible;
        justify-self: end;
    }
}

.nl-hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: block;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .nl-hero-image img {
        width: 100%;
        max-width: 560px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nl-hero-image {
        margin: 0;
    }
    
    .nl-hero-image img {
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .nl-hero-checks {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .nl-hero-trust {
        line-height: 1.6;
    }
}

/* =================================================================
   TRUSTED BY SECTION - Clean B2B Social Proof (Part of Hero)
   ================================================================= */
.nl-trusted {
    background: #f8fafc;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .nl-trusted {
        padding: 2.5rem 2rem 3rem;
    }
}

.nl-trusted-inner {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.nl-trusted-headline {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .nl-trusted-headline {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

/* Slider Container */
.nl-trusted-slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    display: flex;
}

.nl-trusted-track {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    animation: scroll-logos 40s linear infinite;
    flex-shrink: 0;
}

.nl-trusted-slider:hover .nl-trusted-track {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Logo Items - Clean design with permanent styling */
.nl-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 220px;
    flex-shrink: 0;
}

.nl-logo-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nl-logo-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
}

.nl-logo-item img,
.nl-logo-item .nl-logo-svg {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
}

.nl-logo-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #334155;
    white-space: nowrap;
}

/* CTA on hover */
.nl-logo-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: #1e293b;
        opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nl-logo-item:hover .nl-logo-cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 639px) {
    .nl-trusted-track {
        animation-duration: 20s;
}

    .nl-logo-item {
        min-width: 200px;
        padding: 1rem 1.25rem;
    }
}

/* =================================================================
   FEATURES SECTION WITH HOVER EFFECTS
   ================================================================= */
.nl-features {
    background: var(--nl-white);
    padding: 6rem 2rem 5rem;
    border-bottom: 1px solid var(--nl-gray-200);
    position: relative;
}

.nl-features-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.nl-features-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--nl-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.nl-features-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .nl-features-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nl-features-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .nl-features {
        padding: 5rem 2rem 4rem;
    }
    
    .nl-features-header {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nl-features {
        padding: 4.5rem 1.5rem 3.5rem;
    }
    
    .nl-features-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .nl-features {
        padding: 4rem 1rem 3rem;
    }
    
    .nl-features-header {
        margin-bottom: 2.5rem;
    }
}

.nl-feature {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s ease;
}

/* Highlight first feature */
.nl-feature[data-index="0"] {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 51, 102, 0.05) 100%);
    box-shadow: 0 6px 24px rgba(0, 102, 204, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 1px rgba(0, 102, 204, 0.1);
    transform: scale(1.02);
    z-index: 2;
    padding: 2.75rem 2.5rem;
}

.nl-feature[data-index="0"]::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--nl-primary) 0%, var(--nl-accent) 100%);
    border-radius: 0 3px 3px 0;
    z-index: 1;
    box-shadow: 0 0 12px rgba(0, 102, 204, 0.4);
}

.nl-feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-accent) 100%);
    color: var(--nl-white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-family: 'Inter', sans-serif;
    will-change: opacity;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

/* Desktop: 4 columns - borders */
@media (min-width: 1024px) {
    .nl-feature {
        border-right: 1px solid var(--nl-gray-200);
        border-bottom: 1px solid var(--nl-gray-200);
    }
    
    .nl-feature[data-index="0"],
    .nl-feature[data-index="4"] {
        border-left: 1px solid var(--nl-gray-200);
    }
    
    .nl-feature[data-index="4"],
    .nl-feature[data-index="5"],
    .nl-feature[data-index="6"],
    .nl-feature[data-index="7"] {
        border-bottom: none;
    }
}

/* Tablet: 2 columns - borders */
@media (min-width: 768px) and (max-width: 1023px) {
    .nl-feature {
        border-right: 1px solid var(--nl-gray-200);
        border-bottom: 1px solid var(--nl-gray-200);
    }
    
    .nl-feature[data-index="0"],
    .nl-feature[data-index="2"],
    .nl-feature[data-index="4"],
    .nl-feature[data-index="6"] {
        border-left: 1px solid var(--nl-gray-200);
    }
    
    .nl-feature[data-index="6"],
    .nl-feature[data-index="7"] {
        border-bottom: none;
    }
}

/* Mobile: 1 column - borders */
@media (max-width: 767px) {
    .nl-feature {
        border-left: 1px solid var(--nl-gray-200);
        border-right: 1px solid var(--nl-gray-200);
        border-bottom: 1px solid var(--nl-gray-200);
    }
    
    .nl-feature[data-index="7"] {
        border-bottom: none;
    }
}

/* Top row hover gradient (index 0-3) */
.nl-feature[data-index="0"]::before,
.nl-feature[data-index="1"]::before,
.nl-feature[data-index="2"]::before,
.nl-feature[data-index="3"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(248, 250, 252, 1) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nl-feature[data-index="0"]:hover::before,
.nl-feature[data-index="1"]:hover::before,
.nl-feature[data-index="2"]:hover::before,
.nl-feature[data-index="3"]:hover::before {
    opacity: 1;
}

/* Bottom row hover gradient (index 4-7) */
.nl-feature[data-index="4"]::before,
.nl-feature[data-index="5"]::before,
.nl-feature[data-index="6"]::before,
.nl-feature[data-index="7"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 1) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nl-feature[data-index="4"]:hover::before,
.nl-feature[data-index="5"]:hover::before,
.nl-feature[data-index="6"]:hover::before,
.nl-feature[data-index="7"]:hover::before {
    opacity: 1;
}

.nl-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--nl-gray-600);
    transition: color 0.2s ease;
    position: relative;
    z-index: 10;
}

.nl-feature:hover .nl-feature-icon {
    color: var(--nl-primary);
}

/* First feature icon more prominent */
.nl-feature[data-index="0"] .nl-feature-icon {
    color: var(--nl-primary);
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(0, 102, 204, 0.3));
}

.nl-feature[data-index="0"] .nl-feature-title {
    color: var(--nl-primary);
}

.nl-feature[data-index="0"] .nl-feature-title span {
    font-weight: 700;
}

.nl-feature-icon svg {
    width: 100%;
    height: 100%;
}

.nl-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--nl-text-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.nl-feature-indicator {
    position: absolute;
    left: -2.5rem;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 24px;
    background: var(--nl-gray-300);
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease;
    transform-origin: center;
}

.nl-feature:hover .nl-feature-indicator {
    height: 32px;
    background: var(--nl-primary);
}

.nl-feature-title span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.nl-feature:hover .nl-feature-title span {
    transform: translateX(8px);
}

.nl-feature-desc {
    font-size: 0.875rem;
    color: var(--nl-gray-600);
    line-height: 1.6;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .nl-feature {
        padding: 2rem 1.5rem;
    }
    
    .nl-feature-indicator {
        left: -1.5rem;
    }
}

@media (max-width: 767px) {
    .nl-feature {
        padding: 1.75rem 1.25rem;
        border-right: none;
    }
    
    .nl-feature-indicator {
        left: -1.25rem;
    }
}

/* =================================================================
   SECTIONS - General
   ================================================================= */
.nl-section {
    padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
    .nl-section {
        padding: 6rem 2rem;
    }
}

.nl-section-light {
    background: var(--nl-gray-100);
}

.nl-section-white {
    background: var(--nl-white);
}

.nl-section-dark {
    background: linear-gradient(135deg, var(--nl-gray-900) 0%, #1e293b 100%);
}

.nl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nl-container-narrow {
    max-width: 800px;
}

@media (max-width: 768px) {
    .nl-container {
        padding: 0 1.25rem;
    }
}

/* Section Header */
.nl-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.nl-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.nl-section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.nl-section-header-light h2 {
    color: var(--nl-white);
}

.nl-section-header-light p {
    color: var(--nl-gray-400);
}

/* =================================================================
   STEPS / HOW IT WORKS
   ================================================================= */
.nl-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nl-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nl-step {
    background: var(--nl-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--nl-gray-200);
    transition: all 0.3s ease;
}

.nl-step:hover {
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.1);
    border-color: transparent;
}

.nl-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.nl-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.nl-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.nl-outreach-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nl-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nl-outreach-link:hover {
    color: var(--nl-accent);
    transform: translateX(4px);
}

/* Pricing Explanation */
.nl-pricing-explanation {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--nl-white);
    border-radius: 16px;
    border: 1px solid var(--nl-gray-200);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nl-pricing-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.nl-pricing-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nl-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nl-pricing-explanation {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .nl-pricing-question {
        font-size: 1.25rem;
    }
    
    .nl-pricing-answer {
        font-size: 0.9375rem;
    }
}

/* =================================================================
   TRUST GRID
   ================================================================= */
.nl-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nl-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nl-trust-card {
    background: var(--nl-gray-100);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--nl-gray-200);
}

.nl-trust-icon {
    width: 44px;
    height: 44px;
    background: var(--nl-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.nl-trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nl-white);
}

.nl-trust-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.nl-trust-card p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =================================================================
   PRICING
   ================================================================= */
.nl-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nl-pricing {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.nl-pricing-card {
    background: var(--nl-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--nl-gray-200);
    position: relative;
}

.nl-pricing-featured {
    border: 2px solid var(--nl-primary);
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.15);
}

@media (min-width: 768px) {
    .nl-pricing-featured {
        transform: scale(1.05);
    }
}

.nl-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nl-primary);
    color: var(--nl-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    }
    
.nl-pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    }

.nl-pricing-price {
    margin-bottom: 1.5rem;
}

.nl-pricing-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nl-gray-900);
}

.nl-pricing-period {
    color: var(--nl-gray-600);
    }
    
.nl-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    }
    
.nl-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--nl-gray-600);
}

.nl-pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--nl-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.nl-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    background: var(--nl-gray-100);
    color: var(--nl-gray-900);
    transition: all 0.2s ease;
}

.nl-pricing-btn:hover {
    background: var(--nl-gray-200);
    color: var(--nl-gray-900);
    }

.nl-pricing-btn-primary {
    background: var(--nl-primary);
    color: var(--nl-white);
}

.nl-pricing-btn-primary:hover {
    background: var(--nl-dark);
    color: var(--nl-white);
}

/* =================================================================
   FAQ
   ================================================================= */
.nl-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nl-faq-item {
    background: var(--nl-white);
    border: 1px solid var(--nl-gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.nl-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.nl-faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-gray-900);
}

.nl-faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--nl-gray-400);
    transition: transform 0.3s ease;
}

.nl-faq-item.active .nl-faq-question svg {
    transform: rotate(180deg);
}

.nl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nl-faq-item.active .nl-faq-answer {
    max-height: 500px;
}

.nl-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =================================================================
   CONTACT FORM
   ================================================================= */
.nl-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .nl-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.nl-contact-text {
    color: var(--nl-white);
}

.nl-contact-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--nl-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.nl-contact-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.nl-contact-text .nl-contact-email {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.nl-contact-text .nl-contact-email a {
    color: var(--nl-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.nl-contact-text .nl-contact-email a:hover {
    opacity: 0.8;
}

.nl-contact-form-wrapper {
    background: var(--nl-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Form Messages */
.nl-form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    animation: slideDown 0.3s ease;
}

.nl-form-message.hidden {
    display: none !important;
}

.nl-form-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.nl-form-success a {
    color: #065f46;
    text-decoration: underline;
}

.nl-form-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.nl-form-error a {
    color: #991b1b;
    text-decoration: underline;
}

.nl-form-message svg {
    flex-shrink: 0;
}

.nl-form-message p {
    margin: 0;
    color: inherit;
}

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

.nl-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .nl-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.nl-form-group {
    margin-bottom: 1rem;
}

.nl-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nl-gray-900);
    margin-bottom: 0.5rem;
}

.nl-form-group label span {
    color: #ef4444;
}

.nl-form-group input,
.nl-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--nl-font);
    border: 1px solid var(--nl-gray-200);
    border-radius: 8px;
    background: var(--nl-gray-100);
    transition: all 0.2s ease;
}

.nl-form-group input:focus,
.nl-form-group textarea:focus {
    outline: none;
    border-color: var(--nl-primary);
    background: var(--nl-white);
}

.nl-form-group textarea {
    resize: none;
}

.nl-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-dark) 100%);
    color: var(--nl-white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--nl-font);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    }

.nl-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.nl-form-disclaimer {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--nl-gray-400);
    text-align: center;
}

.nl-form-disclaimer a {
    color: var(--nl-primary);
}

.nl-contact-email {
    text-align: center;
    margin-top: 2rem;
    color: var(--nl-gray-400);
}

.nl-contact-email a {
    color: var(--nl-white);
    font-weight: 600;
}

/* =================================================================
   FOOTER (from footer.php - basic styling)
   ================================================================= */
footer {
    background: var(--nl-gray-900);
    color: var(--nl-gray-400);
    padding: 4rem 2rem 2rem;
}

/* =================================================================
   UTILITY - WordPress Overrides
   ================================================================= */
body.admin-bar #site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #site-header {
        top: 46px;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =================================================================
   PRINT
   ================================================================= */
@media print {
    #site-header, .nl-hero-ctas, footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}

/* =================================================================
   CASES PAGE - Clean Nordic Minimalism
   ================================================================= */

/* Cases Hero - Clean & Professional */
.nl-cases-hero {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.nl-cases-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 16, 46, 0.92) 0%,
        rgba(0, 52, 104, 0.9) 55%,
        rgba(0, 32, 72, 0.94) 100%
    );
    z-index: 0;
}

.nl-cases-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nl-cases-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--nl-white);
    letter-spacing: -0.03em;
}

.nl-cases-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .nl-cases-hero {
        padding: 10rem 0 8rem;
    }
    
    .nl-cases-title {
        font-size: 4rem;
    }
    
    .nl-cases-subtitle {
        font-size: 1.375rem;
    }
}

/* Cases Main Section - White Background */
.nl-cases-section {
    padding: 6rem 0;
    background: var(--nl-white);
}

.nl-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Case Card - Clean & Professional */
.nl-case-card {
    background: var(--nl-white);
    border: 1px solid var(--nl-gray-200);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nl-case-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: var(--nl-primary);
}

/* Case Logo */
.nl-case-logo-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nl-gray-100);
    border-radius: 12px;
    padding: 1.25rem;
    flex-shrink: 0;
}

.nl-case-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nl-case-logo-svg {
    width: 100%;
    height: 100%;
}

/* Case Title */
.nl-case-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--nl-gray-900);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* Case Content */
.nl-case-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-grow: 1;
}

.nl-case-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-case-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--nl-primary);
    margin-bottom: 0.5rem;
}

.nl-case-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--nl-gray-600);
}

/* Case Quote */
.nl-case-quote {
    margin: 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--nl-gray-100) 0%, rgba(0, 51, 102, 0.03) 100%);
    border-left: 4px solid var(--nl-primary);
    border-radius: 8px;
    margin-top: auto;
}

.nl-case-quote p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--nl-gray-700);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.nl-case-quote-author {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--nl-gray-900);
    font-style: normal;
    display: block;
}

/* Case CTA */
.nl-case-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nl-gray-200);
}

.nl-case-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nl-case-cta-link:hover {
    color: var(--nl-accent);
    gap: 0.75rem;
}

/* Blog Integration Section */
.nl-cases-blog {
    padding: 6rem 0;
    background: var(--nl-gray-100);
}

.nl-cases-blog-content {
    text-align: center;
}

.nl-cases-blog-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.nl-cases-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.nl-cases-blog-item {
    background: var(--nl-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--nl-gray-200);
    transition: all 0.3s ease;
}

.nl-cases-blog-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.nl-cases-blog-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nl-gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.nl-cases-blog-item-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--nl-gray-600);
    margin-bottom: 1rem;
}

.nl-cases-blog-item-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--nl-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nl-cases-blog-item-link:hover {
    color: var(--nl-accent);
}

/* Cases CTA Section - Clean Gradient */
.nl-cases-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-dark) 100%);
    color: var(--nl-white);
}

.nl-cases-cta-content {
    text-align: center;
}

.nl-cases-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--nl-white);
    letter-spacing: -0.02em;
}

.nl-cases-cta-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.nl-cases-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .nl-cases-hero {
        padding: 6rem 0 5rem;
    }
    
    .nl-cases-title {
        font-size: 2.5rem;
    }
    
    .nl-cases-subtitle {
        font-size: 1.125rem;
    }
    
    .nl-cases-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 700px;
    }
    
    .nl-cases-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .nl-cases-cta-title {
        font-size: 2rem;
    }
    
    .nl-cases-cta-text {
        font-size: 1.125rem;
    }
    
    .nl-cases-blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nl-cases-hero {
        padding: 5rem 0 4rem;
    }
    
    .nl-cases-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .nl-cases-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .nl-cases-section {
        padding: 4rem 0;
    }
    
    .nl-cases-grid {
        gap: 2rem;
        padding: 0;
    }
    
    .nl-case-card {
        padding: 1.75rem;
    }
    
    .nl-case-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .nl-cases-blog {
        padding: 4rem 0;
    }
    
    .nl-cases-blog-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .nl-cases-cta {
        padding: 4rem 0;
    }
    
    .nl-cases-cta-title {
        font-size: 1.75rem;
    }
    
    .nl-cases-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .nl-cases-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .nl-cases-cta-buttons .nl-btn-primary,
    .nl-cases-cta-buttons .nl-btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 14px 24px;
    }
}

/* =================================================================
   BLOG - Clean & Professional
   ================================================================= */

/* Blog Hero */
.nl-blog-hero {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%) !important;
    padding: calc(72px + 6rem) 0 4rem 0 !important; /* 72px for fixed header + original padding */
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    overflow: hidden;
}

.nl-blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 16, 46, 0.92) 0%,
        rgba(0, 52, 104, 0.9) 55%,
        rgba(0, 32, 72, 0.94) 100%
    );
    z-index: 0;
}

/* Default header styling - white background for all pages except frontpage */
#site-header {
    background: var(--nl-white) !important;
    border-bottom: 1px solid var(--nl-gray-200) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

#site-header .nl-logo-text,
#site-header .nl-nav-desktop > a {
    color: var(--nl-gray-900) !important;
}

#site-header .nl-btn-header {
    color: var(--nl-white) !important;
}

/* Frontpage header styling - transparent initially (overrides default) */
body.home #site-header {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
}

body.home #site-header .nl-logo-text,
body.home #site-header .nl-nav-desktop > a,
body.home #site-header .nl-btn-header {
    color: #ffffff !important;
}

/* All pages (including blog, cases, etc.) - white header with dark text */
body.blog #site-header,
body.archive #site-header,
body.nl-blog-page #site-header,
body.page-template-page-blog #site-header,
body.page-template-page-cases #site-header,
body.single #site-header,
body.page:not(.home) #site-header {
    background: var(--nl-white) !important;
    border-bottom: 1px solid var(--nl-gray-200) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

body.blog #site-header .nl-logo-text,
body.blog #site-header .nl-nav-desktop > a,
body.blog #site-header .nl-nav-dropdown-toggle,
body.archive #site-header .nl-logo-text,
body.archive #site-header .nl-nav-desktop > a,
body.archive #site-header .nl-nav-dropdown-toggle,
body.nl-blog-page #site-header .nl-logo-text,
body.nl-blog-page #site-header .nl-nav-desktop > a,
body.nl-blog-page #site-header .nl-nav-dropdown-toggle,
body.page-template-page-blog #site-header .nl-logo-text,
body.page-template-page-blog #site-header .nl-nav-desktop > a,
body.page-template-page-blog #site-header .nl-nav-dropdown-toggle,
body.page-template-page-cases #site-header .nl-logo-text,
body.page-template-page-cases #site-header .nl-nav-desktop > a,
body.page-template-page-cases #site-header .nl-nav-dropdown-toggle,
body.single #site-header .nl-logo-text,
body.single #site-header .nl-nav-desktop > a,
body.single #site-header .nl-nav-dropdown-toggle,
body.page:not(.home) #site-header .nl-logo-text,
body.page:not(.home) #site-header .nl-nav-desktop > a,
body.page:not(.home) #site-header .nl-nav-dropdown-toggle {
    color: var(--nl-gray-900) !important;
}

/* CTA button always white text */
body.blog #site-header .nl-btn-header,
body.archive #site-header .nl-btn-header,
body.nl-blog-page #site-header .nl-btn-header,
body.page-template-page-blog #site-header .nl-btn-header,
body.page-template-page-cases #site-header .nl-btn-header,
body.single #site-header .nl-btn-header,
body.page:not(.home) #site-header .nl-btn-header {
    color: var(--nl-white) !important;
}

/* Scrolled state - all pages get white header */
body.home #site-header.scrolled,
body.blog #site-header.scrolled,
body.archive #site-header.scrolled,
body.nl-blog-page #site-header.scrolled,
body.page-template-page-blog #site-header.scrolled,
body.page-template-page-cases #site-header.scrolled,
body.single #site-header.scrolled,
body.page:not(.home) #site-header.scrolled {
    background: var(--nl-white) !important;
    border-bottom: 1px solid var(--nl-gray-200) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

body.home #site-header.scrolled .nl-logo-text,
body.home #site-header.scrolled .nl-nav-desktop > a,
body.home #site-header.scrolled .nl-nav-dropdown-toggle,
body.blog #site-header.scrolled .nl-logo-text,
body.blog #site-header.scrolled .nl-nav-desktop > a,
body.blog #site-header.scrolled .nl-nav-dropdown-toggle,
body.archive #site-header.scrolled .nl-logo-text,
body.archive #site-header.scrolled .nl-nav-desktop > a,
body.archive #site-header.scrolled .nl-nav-dropdown-toggle,
body.nl-blog-page #site-header.scrolled .nl-logo-text,
body.nl-blog-page #site-header.scrolled .nl-nav-desktop > a,
body.nl-blog-page #site-header.scrolled .nl-nav-dropdown-toggle,
body.page-template-page-blog #site-header.scrolled .nl-logo-text,
body.page-template-page-blog #site-header.scrolled .nl-nav-desktop > a,
body.page-template-page-blog #site-header.scrolled .nl-nav-dropdown-toggle,
body.page-template-page-cases #site-header.scrolled .nl-logo-text,
body.page-template-page-cases #site-header.scrolled .nl-nav-desktop > a,
body.page-template-page-cases #site-header.scrolled .nl-nav-dropdown-toggle,
body.single #site-header.scrolled .nl-logo-text,
body.single #site-header.scrolled .nl-nav-desktop > a,
body.single #site-header.scrolled .nl-nav-dropdown-toggle,
body.page:not(.home) #site-header.scrolled .nl-logo-text,
body.page:not(.home) #site-header.scrolled .nl-nav-desktop > a,
body.page:not(.home) #site-header.scrolled .nl-nav-dropdown-toggle {
    color: var(--nl-gray-900) !important;
}

/* Ensure dropdown menu is always visible with dark text */
body #site-header .nl-nav-dropdown-menu a {
    color: var(--nl-gray-900) !important;
}

body #site-header .nl-nav-dropdown-menu a:hover {
    color: var(--nl-primary) !important;
}

/* CTA button always stays white text (has blue background) */
body.home #site-header.scrolled .nl-btn-header,
body.blog #site-header.scrolled .nl-btn-header,
body.archive #site-header.scrolled .nl-btn-header,
body.nl-blog-page #site-header.scrolled .nl-btn-header,
body.page-template-page-blog #site-header.scrolled .nl-btn-header,
body.page-template-page-cases #site-header.scrolled .nl-btn-header,
body.single #site-header.scrolled .nl-btn-header,
body.page:not(.home) #site-header.scrolled .nl-btn-header {
    color: var(--nl-white) !important;
}

@media (max-width: 600px) {
    #site-header .nl-btn-header {
        display: none !important;
    }

    #site-header .nl-header-cta {
        gap: 0.25rem !important;
    }
}

.nl-blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 1.25rem;
}

.nl-blog-hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
    color: var(--nl-white) !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere;
}

.nl-blog-hero-subtitle {
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
}

@media (min-width: 1024px) {
    .nl-blog-hero {
        padding: 8rem 0 6rem;
    }
    
    .nl-blog-hero-title {
        font-size: 3.5rem;
    }
}

/* Blog Section */
.nl-blog-section {
    padding: 5rem 0 !important;
    background: var(--nl-white) !important;
    width: 100% !important;
    max-width: 100% !important;
}

.nl-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-bottom: 4rem !important;
    width: 100% !important;
}

/* Blog Card */
.nl-blog-card {
    background: var(--nl-white) !important;
    border: 1px solid var(--nl-gray-200) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nl-blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: var(--nl-primary);
}

.nl-blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--nl-gray-100);
}

.nl-blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nl-blog-card:hover .nl-blog-thumbnail {
    transform: scale(1.05);
}

.nl-blog-card-content {
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nl-blog-card-meta {
    margin-bottom: 1rem;
}

.nl-blog-date {
    font-size: 0.875rem;
    color: var(--nl-gray-600);
    font-weight: 500;
}

.nl-blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--nl-gray-900);
    letter-spacing: -0.01em;
}

.nl-blog-card-title a {
    color: var(--nl-gray-900);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nl-blog-card-title a:hover {
    color: var(--nl-primary);
}

.nl-blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nl-gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.nl-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.nl-blog-card-link:hover {
    color: var(--nl-accent);
    gap: 0.75rem;
}

/* Blog Pagination */
.nl-blog-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.nl-blog-pagination .page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-blog-pagination .page-numbers li {
    margin: 0;
}

.nl-blog-pagination .page-numbers a,
.nl-blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-gray-600);
    text-decoration: none;
    border: 1px solid var(--nl-gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nl-blog-pagination .page-numbers a:hover {
    background: var(--nl-primary);
    color: var(--nl-white);
    border-color: var(--nl-primary);
}

.nl-blog-pagination .page-numbers .current {
    background: var(--nl-primary);
    color: var(--nl-white);
    border-color: var(--nl-primary);
}

/* Blog Empty State */
.nl-blog-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.nl-blog-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--nl-gray-900);
}

.nl-blog-empty p {
    font-size: 1.125rem;
    color: var(--nl-gray-600);
}

/* Single Post */
.nl-single-post {
    padding: 4rem 0 6rem;
    background: var(--nl-white);
}

.nl-single-post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.nl-single-post-meta {
    margin-bottom: 1rem;
}

.nl-single-post-date {
    font-size: 0.9375rem;
    color: var(--nl-gray-600);
    font-weight: 500;
}

.nl-single-post-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--nl-gray-900);
    letter-spacing: -0.02em;
}

.nl-single-post-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.nl-single-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.nl-single-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--nl-gray-700);
}

.nl-single-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--nl-gray-900);
    line-height: 1.3;
}

.nl-single-post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--nl-gray-900);
    line-height: 1.3;
}

.nl-single-post-content p {
    margin-bottom: 1.5rem;
}

.nl-single-post-content ul,
.nl-single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.nl-single-post-content li {
    margin-bottom: 0.75rem;
}

.nl-single-post-content a {
    color: var(--nl-primary);
    text-decoration: underline;
}

.nl-single-post-content a:hover {
    color: var(--nl-accent);
}

.nl-single-post-footer {
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid var(--nl-gray-200);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .nl-blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .nl-blog-hero-title {
        font-size: 2.5rem;
    }
    
    .nl-single-post-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .nl-blog-hero {
        padding: 5rem 0 3rem;
    }
    
    .nl-blog-hero-title {
        font-size: 1.9rem !important;
        line-height: 1.12 !important;
    }
    
    .nl-blog-hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }
    
    .nl-blog-section {
        padding: 4rem 0;
    }
    
    .nl-blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nl-blog-card-image {
        height: 200px;
    }
    
    .nl-blog-card-content {
        padding: 1.5rem;
    }
    
    .nl-blog-card-title {
        font-size: 1.25rem;
    }
    
    .nl-single-post {
        padding: 3rem 0 4rem;
    }
    
    .nl-single-post-title {
        font-size: 1.75rem;
    }
    
    .nl-single-post-content {
        font-size: 1rem;
    }
    
    .nl-single-post-content h2 {
        font-size: 1.5rem;
    }
    
    .nl-single-post-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .nl-blog-hero-content {
        padding: 0 1rem;
    }

    .nl-blog-hero-title {
        font-size: 1.7rem !important;
        letter-spacing: -0.01em !important;
    }
}

/* ======================================
   ULTRA CLEAN BLOG ENHANCEMENTS - 2025
   ====================================== */

/* Breadcrumbs */
.nl-breadcrumbs {
    padding: 1.5rem 0;
    background: var(--nl-white);
    border-bottom: 1px solid #e5e7eb;
    margin-top: 72px;
    position: relative;
    z-index: 1;
}

.nl-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9375rem;
}

.nl-breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--nl-gray-600);
}

.nl-breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--nl-gray-400);
    font-size: 1.125rem;
}

.nl-breadcrumb-list a {
    color: var(--nl-gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nl-breadcrumb-list a:hover {
    color: var(--nl-primary);
}

.nl-breadcrumb-list li:last-child {
    color: var(--nl-gray-900);
    font-weight: 500;
}

/* Blog Section Ultra Clean */
.nl-blog-section {
    padding: 5rem 0 !important;
    background: #fafafa !important;
}

.nl-blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)) !important;
    gap: 3rem !important;
}

.nl-blog-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
}

.nl-blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-4px) !important;
}

.nl-blog-card-image {
    height: 260px !important;
    position: relative;
}

.nl-blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-blog-placeholder-svg {
    width: 100%;
    height: 100%;
}

.nl-blog-thumbnail {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nl-blog-card:hover .nl-blog-thumbnail {
    transform: scale(1.08) !important;
}

.nl-blog-card-content {
    padding: 2.25rem !important;
}

.nl-blog-card-meta {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 1.25rem !important;
}

.nl-blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--nl-gray-500);
    font-weight: 500;
}

.nl-blog-read-time svg {
    opacity: 0.7;
}

.nl-blog-card-title {
    font-size: 1.625rem !important;
    line-height: 1.25 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nl-blog-card-excerpt {
    font-size: 1.0625rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nl-blog-card-link {
    display: inline-flex !important;
    padding: 0.75rem 1.5rem !important;
    border: 2px solid var(--nl-primary) !important;
    border-radius: 8px !important;
    background: transparent !important;
    align-self: flex-start !important;
    transition: all 0.25s ease !important;
}

.nl-blog-card-link:hover {
    background: var(--nl-primary) !important;
    color: var(--nl-white) !important;
    gap: 0.75rem !important;
    transform: translateX(2px) !important;
}

.nl-blog-card-link svg {
    transition: transform 0.25s ease;
}

.nl-blog-card-link:hover svg {
    transform: translateX(3px);
}

/* Enhanced Single Post */
.nl-single-container {
    max-width: 900px !important;
}

.nl-single-post {
    padding: 0 0 4rem !important;
}

.nl-single-post-header {
    margin: 4rem 0 3rem !important;
    padding: 0 2rem !important;
}

.nl-single-post-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 2rem !important;
}

.nl-single-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--nl-gray-500);
    font-weight: 500;
}

.nl-single-post-title {
    font-size: 3.25rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
}

.nl-single-post-excerpt {
    font-size: 1.375rem;
    line-height: 1.65;
    color: var(--nl-gray-700);
    margin-top: 1.5rem;
    font-weight: 400;
}

.nl-single-post-image {
    margin-bottom: 4rem !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.nl-single-post-content {
    max-width: 750px !important;
    font-size: 1.1875rem !important;
    line-height: 1.85 !important;
    padding: 0 2rem !important;
}

.nl-single-post-content h2 {
    font-size: 2.25rem !important;
    margin: 3rem 0 1.75rem !important;
    line-height: 1.25 !important;
}

.nl-single-post-content h3 {
    font-size: 1.75rem !important;
    margin: 2.5rem 0 1.25rem !important;
}

.nl-single-post-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--nl-gray-900);
}

.nl-single-post-content p {
    margin-bottom: 1.75rem;
}

.nl-single-post-content strong {
    font-weight: 700;
    color: var(--nl-gray-900);
}

.nl-single-post-content blockquote {
    border-left: 4px solid var(--nl-primary);
    padding-left: 1.75rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--nl-gray-700);
    font-size: 1.25rem;
}

.nl-single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nl-single-post-content code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.95em;
    font-family: 'Courier New', monospace;
}

.nl-single-post-content pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.nl-single-post-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Author Box */
.nl-single-author {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    margin: 4rem 0 3rem;
    border: 1px solid #e5e7eb;
}

.nl-author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.nl-author-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.nl-author-content {
    flex: 1;
}

.nl-author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 0.5rem;
}

.nl-author-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nl-gray-600);
}

/* Post Navigation */
.nl-single-post-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.nl-post-nav-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nl-post-nav-item:hover {
    background: var(--nl-white);
    border-color: var(--nl-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.nl-post-nav-prev {
    text-align: left;
}

.nl-post-nav-next {
    text-align: right;
}

.nl-post-nav-label {
    font-size: 0.875rem;
    color: var(--nl-gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nl-post-nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nl-gray-900);
    line-height: 1.4;
}

.nl-single-post-footer {
    text-align: center !important;
    padding: 0 2rem !important;
    margin-top: 4rem !important;
    border: none !important;
}

.nl-btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-gray-700);
    background: var(--nl-white);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nl-btn-back-to-blog:hover {
    background: var(--nl-gray-900);
    color: var(--nl-white) !important;
    border-color: var(--nl-gray-900);
    transform: translateX(-3px);
}

.nl-btn-back-to-blog svg {
    transition: transform 0.3s ease;
}

.nl-btn-back-to-blog:hover svg {
    transform: translateX(-3px);
}

/* Single Post CTA */
.nl-single-cta {
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.nl-single-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nl-single-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--nl-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.nl-single-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Mobile Responsiveness for Enhanced Blog */
@media (max-width: 768px) {
    .nl-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .nl-blog-card-image {
        height: 220px !important;
    }
    
    .nl-blog-card-content {
        padding: 1.75rem !important;
    }
    
    .nl-blog-card-title {
        font-size: 1.375rem !important;
    }
    
    .nl-breadcrumbs {
        padding: 1rem 0;
        margin-top: 64px;
    }
    
    .nl-single-post-header {
        margin: 2rem 0 2rem !important;
    }
    
    .nl-single-post-title {
        font-size: 2rem !important;
    }
    
    .nl-single-post-excerpt {
        font-size: 1.125rem;
    }
    
    .nl-single-post-content {
        font-size: 1.0625rem !important;
    }
    
    .nl-single-post-content h2 {
        font-size: 1.75rem !important;
    }
    
    .nl-single-post-content h3 {
        font-size: 1.375rem !important;
    }
    
    .nl-single-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nl-single-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nl-single-cta-title {
        font-size: 2rem;
    }
    
    .nl-single-cta-text {
        font-size: 1.125rem;
    }
}

/* ======================================
   CASE STUDY PAGES - ULTRA CLEAN
   ====================================== */

.nl-case-study {
    background: var(--nl-white);
}

.nl-case-container {
    max-width: 1100px !important;
}

/* Case Hero */
.nl-case-hero {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--nl-white);
    position: relative;
    overflow: hidden;
}

.nl-case-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 16, 46, 0.92) 0%,
        rgba(0, 52, 104, 0.9) 55%,
        rgba(0, 32, 72, 0.94) 100%
    );
    z-index: 0;
}

.nl-case-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nl-case-logo {
    margin-bottom: 2rem;
}

.nl-case-logo img {
    max-width: 200px;
    height: auto;
    background: var(--nl-white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nl-case-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--nl-white);
    opacity: 0.95;
}

.nl-case-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    text-shadow:
        0 12px 36px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.35);
}

.nl-case-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.65;
    color: #ffffff !important;
    margin-bottom: 3rem;
    text-shadow:
        0 10px 28px rgba(0, 0, 0, 0.45),
        0 3px 8px rgba(0, 0, 0, 0.35);
    opacity: 1 !important;
}

.nl-case-hero-subtitle * {
    color: #ffffff !important;
}

.nl-case-hero p {
    color: #ffffff !important;
}

.nl-case-company-name {
    color: #ffffff !important;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Stats Bar */
.nl-case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.nl-case-stat {
    text-align: center;
}

.nl-case-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--nl-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.nl-case-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Featured Image */
.nl-case-featured-image {
    padding: 4rem 0;
    background: #fafafa;
}

.nl-case-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Content Section */
.nl-case-content-section {
    padding: 5rem 0;
    background: var(--nl-white);
}

.nl-case-content {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: var(--nl-gray-800);
}

.nl-case-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--nl-gray-900);
    line-height: 1.25;
}

.nl-case-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    color: var(--nl-gray-900);
}

.nl-case-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--nl-primary);
}

.nl-case-content p {
    margin-bottom: 1.75rem;
}

.nl-case-content strong {
    font-weight: 700;
    color: var(--nl-gray-900);
}

.nl-case-content ul,
.nl-case-content ol {
    margin: 1.75rem 0;
    padding-left: 2rem;
}

.nl-case-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.nl-case-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Quote Section */
.nl-case-quote-section {
    background: #fafafa;
    padding: 5rem 0;
}

.nl-case-quote-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--nl-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nl-case-quote-large p {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--nl-gray-900);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.nl-case-quote-large cite {
    font-size: 1.125rem;
    color: var(--nl-gray-700);
    font-style: normal;
    font-weight: 600;
}

.nl-case-quote-role {
    color: var(--nl-gray-600);
    font-weight: 400;
}

/* Results Section */
.nl-case-results-section {
    padding: 5rem 0;
    background: var(--nl-white);
}

.nl-case-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--nl-gray-900);
}

.nl-case-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.nl-case-result-card {
    padding: 2.5rem;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.nl-case-result-card:hover {
    background: var(--nl-white);
    border-color: var(--nl-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.nl-case-result-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: 12px;
}

.nl-case-result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nl-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.nl-case-result-label {
    font-size: 1.0625rem;
    color: var(--nl-gray-700);
    line-height: 1.5;
}

/* CTA Section */
.nl-case-cta-section {
    padding: 5rem 0;
    background: #fafafa;
}

.nl-case-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, var(--nl-primary) 0%, var(--nl-dark) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--nl-white);
    box-shadow: 0 12px 48px rgba(0, 102, 204, 0.25);
}

.nl-case-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--nl-white);
    line-height: 1.2;
}

.nl-case-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.nl-case-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nl-btn-large {
    padding: 1.125rem 2.5rem !important;
    font-size: 1.125rem !important;
}

/* Related Cases */
.nl-case-related {
    padding: 5rem 0;
    background: var(--nl-white);
}

.nl-case-related-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--nl-gray-900);
}

.nl-case-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.nl-case-related-card {
    display: flex;
    flex-direction: column;
    background: var(--nl-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nl-case-related-card:hover {
    border-color: var(--nl-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.nl-case-related-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.nl-case-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nl-case-related-card:hover .nl-case-related-image img {
    transform: scale(1.08);
}

.nl-case-related-content {
    padding: 2rem;
}

.nl-case-related-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.nl-case-related-content p {
    font-size: 1rem;
    color: var(--nl-gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.nl-case-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-primary);
    transition: gap 0.2s ease;
}

.nl-case-related-card:hover .nl-case-related-link {
    gap: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nl-case-hero {
        padding: 6rem 0 4.5rem;
    }
    
    .nl-case-hero-title {
        font-size: 2.25rem;
    }
    
    .nl-case-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .nl-case-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .nl-case-stat-number {
        font-size: 2.5rem;
    }
    
    .nl-case-featured-image {
        padding: 2rem 0;
    }
    
    .nl-case-content-section {
        padding: 3rem 0;
    }
    
    .nl-case-content {
        font-size: 1.0625rem;
    }
    
    .nl-case-content h2 {
        font-size: 1.875rem;
    }
    
    .nl-case-quote-section {
        padding: 3rem 0;
    }
    
    .nl-case-quote-large {
        padding: 2rem;
    }
    
    .nl-case-quote-large p {
        font-size: 1.375rem;
    }
    
    .nl-case-results-section {
        padding: 3rem 0;
    }
    
    .nl-case-results-grid {
        grid-template-columns: 1fr;
    }
    
    .nl-case-cta-section {
        padding: 3rem 0;
    }
    
    .nl-case-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .nl-case-cta-title {
        font-size: 2rem;
    }
    
    .nl-case-cta-text {
        font-size: 1.125rem;
    }
    
    .nl-case-cta-buttons {
        flex-direction: column;
    }
    
    .nl-btn-large {
        width: 100%;
    }
    
    .nl-case-related {
        padding: 3rem 0;
    }
    
    .nl-case-related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ======================================
   CASE CARDS UPDATES - OVERVIEW PAGE
   ====================================== */

.nl-case-excerpt {
    font-size: 1.0625rem !important;
    line-height: 1.7 !important;
    color: var(--nl-gray-700) !important;
    margin-bottom: 1.5rem !important;
}

.nl-case-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
}

.nl-stat-mini {
    text-align: center;
}

.nl-stat-mini strong {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--nl-primary);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.nl-stat-mini span {
    display: block;
    font-size: 0.875rem;
    color: var(--nl-gray-600);
    font-weight: 500;
}

.nl-case-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nl-white);
    background: var(--nl-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.nl-case-read-more:hover {
    background: var(--nl-dark);
    gap: 0.75rem;
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .nl-case-stats-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nl-stat-mini strong {
        font-size: 1.5rem;
    }
}
/* =================================================================
   CASES PAGE V2 - Modern, Clean & Visual
   ================================================================= */

/* Hero Section - Simple & Clean */
.nl-cases-hero-v2 {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 10rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.nl-cases-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 16, 46, 0.92) 0%,
        rgba(0, 52, 104, 0.9) 55%,
        rgba(0, 32, 72, 0.94) 100%
    );
    z-index: 0;
}

.nl-cases-hero-content-v2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nl-cases-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--nl-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.nl-cases-title-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--nl-white);
    letter-spacing: -0.03em;
}

.nl-cases-subtitle-v2 {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nl-cases-hero-v2 {
        padding: 6.5rem 0 4.5rem;
    }
    
    .nl-cases-title-v2 {
        font-size: 2.25rem;
    }
    
    .nl-cases-subtitle-v2 {
        font-size: 1.125rem;
    }
}

/* Container Wide */
.nl-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cases Section */
.nl-cases-section-v2 {
    padding: 6rem 0;
    background: #fafafa;
}

/* Case Card V2 - Modern Visual Design */
.nl-case-card-v2 {
    background: var(--nl-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2.5rem;
    display: grid;
    gap: 0;
}

.nl-case-card-v2:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Featured Large Card */
.nl-case-featured {
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
}

/* Case Visual / Image Area */
.nl-case-visual {
    position: relative;
    overflow: hidden;
}

.nl-case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

/* Color Themes for Each Case */
.nl-case-image-placeholder.dentaldesk {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.nl-case-image-placeholder.dmify {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.nl-case-image-placeholder.auto {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
}

.nl-case-icon {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.nl-case-text-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nl-white);
    letter-spacing: -0.02em;
}

.nl-case-logo-wrapper-v2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =================================================================
   LEAD GENERATION PAGE - Ultra Modern & Creative Design
   ================================================================= */

.nl-leadgen-page {
    background: var(--nl-white);
}

/* Hero Section - Bold & Visual */
.nl-leadgen-hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.nl-leadgen-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 16, 46, 0.92) 0%,
        rgba(0, 52, 104, 0.9) 55%,
        rgba(0, 32, 72, 0.94) 100%
    );
    z-index: 0;
}

.nl-leadgen-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.nl-leadgen-hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.nl-leadgen-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--nl-white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nl-leadgen-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--nl-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-leadgen-title-line {
    display: block;
}

.nl-leadgen-title-accent {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nl-leadgen-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* Stats Bar - Floating Cards */
.nl-leadgen-stats-bar {
    padding: 0 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.nl-leadgen-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.nl-leadgen-stat-card {
    background: var(--nl-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-leadgen-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nl-leadgen-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--nl-primary) 0%, #003366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-white);
    flex-shrink: 0;
}

.nl-leadgen-stat-icon svg {
    width: 28px;
    height: 28px;
}

.nl-leadgen-stat-content {
    flex: 1;
}

.nl-leadgen-stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--nl-gray-900);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.nl-leadgen-stat-label {
    font-size: 0.9375rem;
    color: var(--nl-gray-600);
    line-height: 1.5;
    font-weight: 500;
}

/* Content Section - Modern Layout */
.nl-leadgen-content {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.nl-leadgen-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.nl-leadgen-main {
    width: 100%;
}

.nl-leadgen-article {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Intro Card */
.nl-leadgen-intro-card {
    background: linear-gradient(135deg, var(--nl-primary) 0%, #003366 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--nl-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.nl-leadgen-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.nl-leadgen-intro-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--nl-white);
}

.nl-leadgen-intro-icon svg {
    width: 32px;
    height: 32px;
}

.nl-leadgen-lead {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Section Cards */
.nl-leadgen-section-card {
    background: var(--nl-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--nl-gray-200);
    transition: all 0.3s ease;
}

.nl-leadgen-section-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nl-leadgen-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--nl-gray-100);
}

.nl-leadgen-section-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--nl-primary);
    line-height: 1;
    opacity: 0.15;
    font-variant-numeric: tabular-nums;
    min-width: 80px;
}

.nl-leadgen-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.nl-leadgen-section-content {
    padding-left: 0;
}

@media (min-width: 768px) {
    .nl-leadgen-section-content {
        padding-left: 6.5rem;
    }
}

.nl-leadgen-section-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--nl-gray-700);
    margin: 0 0 1.5rem 0;
}

.nl-leadgen-section-content p:last-child {
    margin-bottom: 0;
}

/* ROI Flow Section */
.nl-leadgen-roi-flow {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid var(--nl-gray-200);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nl-leadgen-roi-flow {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

.nl-leadgen-roi-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--nl-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--nl-gray-200);
    min-width: 200px;
    flex: 1;
    transition: all 0.3s ease;
}

.nl-leadgen-roi-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nl-leadgen-roi-step.nl-leadgen-roi-final {
    background: linear-gradient(135deg, var(--nl-primary) 0%, #003366 100%);
    color: var(--nl-white);
    border-color: var(--nl-primary);
}

.nl-leadgen-roi-step.nl-leadgen-roi-final .nl-leadgen-roi-number {
    color: var(--nl-white);
}

.nl-leadgen-roi-step.nl-leadgen-roi-final .nl-leadgen-roi-text {
    color: rgba(255, 255, 255, 0.95);
}

.nl-leadgen-roi-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--nl-primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.nl-leadgen-roi-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--nl-gray-700);
    font-weight: 500;
}

.nl-leadgen-roi-arrow {
    font-size: 2rem;
    color: var(--nl-primary);
    font-weight: 300;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .nl-leadgen-roi-arrow {
        transform: rotate(90deg);
    }
}

/* Form Select Styling */
.nl-contact-form select {
    width: 100%;
    border: 1px solid var(--nl-gray-200);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: var(--nl-white);
    color: var(--nl-gray-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.nl-contact-form select:focus {
    border-color: var(--nl-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.nl-contact-form select option {
    padding: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nl-leadgen-hero {
        padding: 8rem 1.5rem 4rem;
        min-height: 60vh;
    }
    
    .nl-leadgen-stats-bar {
        padding: 0 1.5rem;
        margin-top: -3rem;
    }
    
    .nl-leadgen-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nl-leadgen-stat-card {
        padding: 1.5rem;
    }
    
    .nl-leadgen-content {
        padding: 4rem 1.5rem;
    }
    
    .nl-leadgen-intro-card {
        padding: 2rem;
    }
    
    .nl-leadgen-lead {
        font-size: 1.25rem;
    }
    
    .nl-leadgen-section-card {
        padding: 2rem;
    }
    
    .nl-leadgen-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .nl-leadgen-section-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .nl-leadgen-heading {
        font-size: 1.75rem;
    }
    
    .nl-leadgen-section-content {
        padding-left: 0;
    }
    
    .nl-leadgen-section-content p {
        font-size: 1.0625rem;
    }
}

/* Guarantee Box */
.nl-leadgen-guarantee-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--nl-primary);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.nl-leadgen-guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--nl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-white);
    flex-shrink: 0;
}

.nl-leadgen-guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.nl-leadgen-guarantee-content {
    flex: 1;
}

.nl-leadgen-guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

.nl-leadgen-guarantee-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--nl-gray-700);
    margin: 0;
}

@media (max-width: 768px) {
    .nl-leadgen-guarantee-box {
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
    }
    
    .nl-leadgen-guarantee-icon {
        width: 48px;
        height: 48px;
    }
    
    .nl-leadgen-guarantee-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .nl-leadgen-guarantee-title {
        font-size: 1.375rem;
    }
    
    .nl-leadgen-guarantee-text {
        font-size: 1rem;
    }
}

.nl-case-logo-img-v2 {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.nl-logo-svg-v2 {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.15));
}

/* Case Content */
.nl-case-content-v2 {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nl-case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.nl-case-industry,
.nl-case-time {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--nl-gray-700);
    letter-spacing: 0.3px;
}

.nl-case-title-v2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nl-gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nl-case-title-v2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nl-case-title-v2 a:hover {
    color: var(--nl-blue-600);
    text-decoration: underline;
}

.nl-case-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nl-gray-800);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.nl-case-excerpt-v2 {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--nl-gray-600);
    margin-bottom: 2rem;
}

/* Stats - Inline Horizontal */
.nl-case-stats-v2 {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nl-stat-item-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nl-stat-number-v2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--nl-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.nl-stat-label-v2 {
    font-size: 0.875rem;
    color: var(--nl-gray-600);
    font-weight: 500;
    text-transform: lowercase;
}

/* Case Link */
.nl-case-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--nl-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: #f0f9ff;
    border-radius: 12px;
    align-self: flex-start;
}

.nl-case-link-v2:hover {
    background: var(--nl-primary);
    color: var(--nl-white);
    gap: 1rem;
}

.nl-case-link-v2 svg {
    transition: transform 0.3s ease;
}

.nl-case-link-v2:hover svg {
    transform: translateX(4px);
}

/* Grid for Side-by-Side Cases */
.nl-cases-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.nl-cases-grid-v2 .nl-case-card-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
}

.nl-cases-grid-v2 .nl-case-visual {
    min-height: 280px;
}

/* Social Proof Section V2 - Clean & Minimal */
.nl-cases-proof-v2 {
    padding: 4rem 0;
    background: var(--nl-white);
    text-align: center;
}

.nl-cases-proof-text-v2 {
    font-size: 1.25rem;
    color: var(--nl-gray-700);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* CTA Section V2 - Clean & Integrated */
.nl-cases-cta-v2 {
    padding: 6rem 0;
    background: #fafafa;
}

.nl-cases-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem;
    background: var(--nl-white);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nl-cases-cta-title-v2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nl-cases-cta-text-v2 {
    font-size: 1.125rem;
    color: var(--nl-gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Mobile CTA label override on cases page */
@media (max-width: 768px) {
    .nl-cases-cta-content-v2 .nl-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    .nl-cases-cta-content-v2 .nl-btn-primary::after {
        content: 'Kontakt os';
    }
    .nl-cases-cta-content-v2 .nl-btn-primary .nl-mobile-hide {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nl-case-featured {
        grid-template-columns: 1fr;
        grid-template-rows: 350px auto;
    }
    
    .nl-cases-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .nl-case-content-v2 {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nl-cases-section-v2 {
        padding: 4rem 0;
    }
    
    .nl-case-featured {
        grid-template-rows: 280px auto;
    }
    
    .nl-cases-grid-v2 .nl-case-visual {
        min-height: 220px;
    }
    
    .nl-case-content-v2 {
        padding: 2rem;
    }
    
    .nl-case-title-v2 {
        font-size: 1.625rem;
    }
    
    .nl-case-headline {
        font-size: 1.125rem;
    }
    
    .nl-case-excerpt-v2 {
        font-size: 1rem;
    }
    
    .nl-case-stats-v2 {
        gap: 1.5rem;
    }
    
    .nl-stat-number-v2 {
        font-size: 1.875rem;
    }
    
    .nl-cases-proof-text-v2 {
        font-size: 1.125rem;
    }
    
    .nl-cases-cta-box {
        padding: 2.5rem 2rem;
    }
    
    .nl-cases-cta-title-v2 {
        font-size: 1.75rem;
    }
    
    .nl-cases-cta-text-v2 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nl-container-wide {
        padding: 0 1.25rem;
    }
    
    .nl-case-card-v2 {
        border-radius: 16px;
    }
    
    .nl-case-stats-v2 {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =================================================================
   UNSUBSCRIBE / DNC PAGE
   ================================================================= */
.nl-unsubscribe-page {
    background: var(--nl-gray-100);
    min-height: calc(100vh - 72px);
    padding-top: 72px; /* Space for fixed header */
}

.nl-unsubscribe-page .nl-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nl-unsubscribe-page .nl-container > div {
    max-width: 42rem;
    margin: 0 auto;
}

.nl-unsubscribe-page .max-w-2xl {
    max-width: 42rem;
    margin: 0 auto;
}

.nl-unsubscribe-page .max-w-md {
    max-width: 28rem;
    margin: 0 auto;
}

.nl-unsubscribe-page .nl-card {
    background: var(--nl-white);
    border: 1px solid var(--nl-gray-200);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.nl-unsubscribe-page .nl-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nl-gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.nl-unsubscribe-page .nl-text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nl-gray-600);
}

.nl-unsubscribe-form input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--nl-gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nl-unsubscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--nl-primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.nl-unsubscribe-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#unsubscribe-success {
    animation: fadeIn 0.3s ease-in;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nl-unsubscribe-page {
        padding-top: 64px; /* Slightly less padding on mobile */
    }
    
    .nl-unsubscribe-page .nl-container {
        padding: 2rem 1.25rem;
    }
    
    .nl-unsubscribe-page .nl-h1 {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
    
    .nl-unsubscribe-page .nl-text-lg {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .nl-unsubscribe-page .nl-card {
        padding: 1.75rem 1.25rem !important;
        border-radius: 12px;
    }
    
    .nl-unsubscribe-page .nl-card {
        padding: 2rem 1.5rem !important;
    }
    
    .nl-unsubscribe-form {
        margin-top: 1rem;
    }
    
    .nl-unsubscribe-form input[type="email"] {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .nl-unsubscribe-form button[type="submit"] {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    #unsubscribe-success {
        padding: 1.25rem !important;
    }
    
    #unsubscribe-success svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    #unsubscribe-success p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .nl-unsubscribe-page .nl-container {
        padding: 1.5rem 1rem;
    }
    
    .nl-unsubscribe-page .nl-card {
        padding: 1.5rem 1rem !important;
    }
    
    .nl-unsubscribe-page .nl-h1 {
        font-size: 1.625rem;
    }
    
    .nl-unsubscribe-page svg.w-16 {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .nl-unsubscribe-form input[type="email"] {
        padding: 0.625rem 0.75rem;
    }
}
