/* Deprixa Plus — Enterprise landing overrides (FedEx-inspired hierarchy, own branding) */

:root {
    --lx-primary: #FF4800;
    --lx-primary-dark: #d63a00;
    --lx-dark: #0f1419;
    --lx-dark-soft: #1a2332;
    --lx-gray-900: #111827;
    --lx-gray-700: #374151;
    --lx-gray-500: #6b7280;
    --lx-gray-200: #e5e7eb;
    --lx-gray-100: #f3f4f6;
    --lx-white: #ffffff;
    --lx-shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.06);
    --lx-shadow-md: 0 6px 20px rgba(15, 20, 25, 0.08);
    --lx-shadow-lg: 0 16px 40px rgba(15, 20, 25, 0.11);
    --lx-radius: 6px;
    --lx-radius-lg: 10px;
    --lx-section-py: 4.75rem;
    --lx-container: 1200px;
}

body.lx-landing {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lx-gray-700);
    background: var(--lx-white);
    overflow-x: hidden;
    font-size: 0.9375rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lx-landing .btn-primary {
    background: var(--lx-primary);
    border-color: var(--lx-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--lx-radius);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lx-landing .btn-primary:hover {
    background: var(--lx-primary-dark);
    border-color: var(--lx-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-md);
}

.lx-landing .btn-outline-dark {
    border-radius: var(--lx-radius);
    font-weight: 600;
    border-width: 2px;
}

.lx-landing .btn-outline-primary {
    color: var(--lx-primary);
    border-color: var(--lx-primary);
    border-radius: var(--lx-radius);
    font-weight: 600;
}

.lx-landing .btn-outline-primary:hover {
    background: var(--lx-primary);
    border-color: var(--lx-primary);
}

.lx-landing .text-primary { color: var(--lx-primary) !important; }

/* ── Utility bar ── */
.lx-utility {
    background: var(--lx-dark);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lx-utility a { color: rgba(255, 255, 255, 0.85); transition: color 0.15s; }
.lx-utility a:hover { color: var(--lx-white); text-decoration: none; }
.lx-utility .lx-divider { opacity: 0.25; margin: 0 0.75rem; }

.lx-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-left: 0.35rem;
    font-size: 0.75rem;
}

.lx-social a:hover { background: var(--lx-primary); color: var(--lx-white) !important; }

/* ── Navbar ── */
.lx-navbar {
    background: var(--lx-white) !important;
    box-shadow: var(--lx-shadow-sm);
    padding: 0.85rem 0;
    transition: box-shadow 0.25s;
}

.lx-navbar.lx-scrolled { box-shadow: var(--lx-shadow-md); }

.lx-navbar .navbar-brand-logo { max-height: 44px; width: auto; }

.lx-navbar .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--lx-gray-900) !important;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.01em;
}

.lx-navbar .navbar-nav .nav-link:hover,
.lx-navbar .navbar-nav .nav-link.active {
    color: var(--lx-primary) !important;
}

.lx-nav-cta {
    font-size: 0.875rem;
    padding: 0.55rem 1.35rem !important;
}

/* ── Hero ── */
.lx-hero {
    position: relative;
    background: #1a2332;
    overflow: hidden;
    padding: 3.75rem 0 0;
    min-height: 520px;
}

.lx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/header.jpg") center 35%/cover no-repeat;
    opacity: 1;
    filter: saturate(1.12) contrast(1.06) brightness(1.02);
    transform: scale(1.02);
}

.lx-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 14, 20, 0.58) 0%, rgba(10, 14, 20, 0.32) 42%, rgba(10, 14, 20, 0.18) 68%, rgba(10, 14, 20, 0.35) 100%),
        linear-gradient(180deg, rgba(10, 14, 20, 0.08) 0%, rgba(10, 14, 20, 0.45) 100%);
    pointer-events: none;
}

.lx-hero .container { position: relative; z-index: 2; }

.lx-hero-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lx-primary);
    margin-bottom: 1.125rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.lx-hero h1 {
    font-size: clamp(2.125rem, 4.8vw, 3.375rem);
    font-weight: 700;
    color: var(--lx-white);
    line-height: 1.08;
    margin-bottom: 1.375rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lx-hero-lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 1.75rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.lx-hero-actions .btn { margin-right: 0.65rem; margin-bottom: 0.65rem; padding: 0.8rem 1.65rem; font-size: 0.9375rem; }

.lx-hero-actions .btn-primary {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.lx-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.lx-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.lx-trust-item i { color: var(--lx-primary); font-size: 0.9375rem; }

/* Hero glass stats bar */
.lx-hero-stats-bar {
    margin-top: 2.5rem;
    padding-bottom: 2.25rem;
}

.lx-glass-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: rgba(12, 16, 24, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--lx-radius-lg);
    padding: 1.35rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.lx-glass-stat {
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-glass-stat:last-child { border-right: none; }

.lx-glass-stat-icon {
    display: block;
    font-size: 1.125rem;
    color: var(--lx-primary);
    margin-bottom: 0.5rem;
}

.lx-glass-stat-value {
    display: block;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--lx-white);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.lx-glass-stat-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 0.35rem;
}

/* Tracking card — dark glass on cinematic hero */
.lx-track-card {
    background: rgba(12, 16, 24, 0.62);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--lx-radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.lx-track-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lx-track-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--lx-radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary);
    font-size: 1.15rem;
}

.lx-track-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lx-white);
    margin: 0;
}

.lx-track-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.lx-track-label {
    color: rgba(255, 255, 255, 0.55);
}

.lx-track-input {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: var(--lx-radius) !important;
    padding: 0.875rem 1rem 0.875rem 2.5rem !important;
    font-size: 0.875rem !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lx-track-input:focus {
    border-color: var(--lx-primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 72, 0, 0.2) !important;
    background: var(--lx-white) !important;
}

.lx-track-hint {
    color: rgba(255, 255, 255, 0.5);
}

.lx-track-btn {
    width: 100%;
    padding: 0.875rem !important;
    font-size: 0.875rem !important;
    margin-top: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lx-hero-stats {
    display: none;
}

.lx-hero-stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--lx-gray-100);
    border-radius: var(--lx-radius);
}

.lx-hero-stat strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lx-gray-900);
}

.lx-hero-stat span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lx-gray-500);
    font-weight: 600;
}

/* ── Section headers ── */
.lx-section { padding: var(--lx-section-py) 0; }
.lx-section-alt { background: var(--lx-gray-100); }
.lx-section-services {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}
.lx-section-services .lx-section-title { color: var(--lx-gray-900); }
.lx-section-services .lx-section-desc { color: var(--lx-gray-700); }
.lx-section-dark {
    background: linear-gradient(165deg, #1e2838 0%, #243044 50%, #1a2332 100%);
    color: var(--lx-white);
}

.lx-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lx-primary);
    margin-bottom: 0.75rem;
}

.lx-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--lx-gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lx-section-dark .lx-section-title { color: var(--lx-white); }
.lx-section-desc {
    font-size: 1.0625rem;
    color: var(--lx-gray-500);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ── Quick actions ── */
.lx-actions-wrap {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 1.25rem;
}

.lx-action-card {
    display: block;
    background: var(--lx-white);
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none !important;
    color: inherit;
}

.lx-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lx-shadow-md);
    border-color: var(--lx-primary);
}

.lx-action-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: var(--lx-radius);
    background: rgba(255, 72, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary);
    font-size: 1.35rem;
}

.lx-action-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lx-gray-900);
    margin-bottom: 0.35rem;
}

.lx-action-card p {
    font-size: 0.8125rem;
    color: var(--lx-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ── Benefits grid ── */
.lx-benefit-card {
    padding: 1.75rem;
    background: var(--lx-white);
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-lg);
    height: 100%;
    transition: box-shadow 0.2s;
}

.lx-benefit-card:hover { box-shadow: var(--lx-shadow-md); }

.lx-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--lx-radius);
    background: var(--lx-dark);
    color: var(--lx-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.lx-benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lx-gray-900);
    margin-bottom: 0.5rem;
}

.lx-benefit-card p {
    font-size: 0.875rem;
    color: var(--lx-gray-500);
    margin: 0;
    line-height: 1.65;
}

/* ── Service cards ── */
.lx-service-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lx-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lx-shadow-md);
}

.lx-service-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.125rem 1.35rem;
    background: linear-gradient(135deg, #2a3548 0%, #3d4d66 100%);
    color: var(--lx-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lx-service-head i { font-size: 1.25rem; color: var(--lx-primary); }

.lx-service-body {
    padding: 1.35rem;
    background: var(--lx-white);
}

.lx-service-body p {
    font-size: 0.875rem;
    color: var(--lx-gray-700);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.lx-service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lx-primary);
    text-decoration: none;
}

.lx-service-link:hover { text-decoration: underline; color: var(--lx-primary-dark); }

.lx-service-head h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

/* ── Stats counters ── */
.lx-stats-grid { margin-top: 0.5rem; }

.lx-stat-glass {
    text-align: center;
    padding: 1.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lx-radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 100%;
    transition: border-color 0.2s, background 0.2s;
}

.lx-stat-glass:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
}

.lx-stat-glass-icon {
    display: block;
    font-size: 1.25rem;
    color: var(--lx-primary);
    margin-bottom: 0.65rem;
}

.lx-stat-glass-value {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--lx-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.lx-stat-block { text-align: center; padding: 1.5rem 1rem; }

.lx-stat-block .counter-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--lx-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.lx-section-dark .lx-stat-block .counter-value { color: var(--lx-white); }

.lx-stat-block .lx-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* ── About ── */
.lx-about-img-wrap { position: relative; border-radius: var(--lx-radius-lg); overflow: hidden; }

.lx-about-img-wrap img { width: 100%; display: block; }

.lx-about-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lx-primary);
    color: var(--lx-dark);
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
}

.lx-about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 700;
    color: var(--lx-gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.lx-about-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--lx-gray-500);
    margin-bottom: 1.5rem;
}

/* ── Industry cards ── */
.lx-industry-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lx-industry-card:hover {
    border-color: var(--lx-primary);
    box-shadow: var(--lx-shadow-sm);
}

.lx-industry-card i {
    font-size: 1.5rem;
    color: var(--lx-primary);
    margin-bottom: 1rem;
    display: block;
}

.lx-industry-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lx-gray-900);
    margin-bottom: 0.5rem;
}

.lx-industry-card p {
    font-size: 0.875rem;
    color: var(--lx-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── Trust band ── */
.lx-trust-band {
    background: var(--lx-gray-100);
    border-top: 1px solid var(--lx-gray-200);
    border-bottom: 1px solid var(--lx-gray-200);
}

.lx-trust-band-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.lx-trust-band-item i {
    font-size: 1.5rem;
    color: var(--lx-primary);
    margin-top: 0.15rem;
}

.lx-trust-band-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lx-gray-900);
    margin-bottom: 0.35rem;
}

.lx-trust-band-item p {
    font-size: 0.875rem;
    color: var(--lx-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── Testimonials ── */
.lx-testimonial {
    background: var(--lx-white);
    border: 1px solid var(--lx-gray-200);
    border-radius: var(--lx-radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--lx-shadow-sm);
}

.lx-testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--lx-primary);
    opacity: 0.35;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.lx-testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--lx-gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lx-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--lx-gray-200);
}

.lx-testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.lx-testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--lx-gray-900);
}

.lx-testimonial-author span {
    font-size: 0.8125rem;
    color: var(--lx-gray-500);
}

/* ── Contact ── */
.lx-contact-panel {
    background: var(--lx-gray-100);
    border-radius: var(--lx-radius-lg);
    padding: 2rem;
    border: 1px solid var(--lx-gray-200);
}

.lx-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.lx-contact-row i {
    color: var(--lx-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.lx-contact-row a { color: var(--lx-gray-900); font-weight: 500; }

.lx-map-wrap {
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lx-gray-200);
}

/* ── CTA ── */
.lx-cta {
    background: linear-gradient(135deg, var(--lx-dark) 0%, var(--lx-dark-soft) 100%);
    padding: 4.5rem 0;
    text-align: center;
}

.lx-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--lx-white);
    margin-bottom: 1rem;
}

.lx-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.lx-cta .btn-light {
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--lx-radius);
}

/* ── Footer ── */
.lx-footer {
    background: var(--lx-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.lx-footer h5 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lx-white);
    margin-bottom: 1.25rem;
}

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

.lx-footer ul li { margin-bottom: 0.65rem; }

.lx-footer ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.lx-footer ul a:hover { color: var(--lx-primary); }

.lx-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.lx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.lx-footer-bottom a { color: rgba(255, 255, 255, 0.65); }

/* ── Back to top ── */
.lx-landing .back-to-top {
    border-radius: var(--lx-radius);
    box-shadow: var(--lx-shadow-md);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    :root { --lx-section-py: 3.25rem; }
    .lx-actions-wrap { margin-top: 0; padding-top: 0.5rem; }
    .lx-hero { padding: 2.75rem 0 0; min-height: auto; }
    .lx-glass-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.15rem; }
    .lx-glass-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.85rem; }
    .lx-glass-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .lx-glass-stat:nth-last-child(-n+2) { border-bottom: none; }
    .lx-track-card { margin-top: 2rem; }
    .lx-hero-stats-bar { margin-top: 2rem; padding-bottom: 1.75rem; }
}

@media (max-width: 575.98px) {
    .lx-utility .lx-utility-item { display: block; margin-bottom: 0.25rem; }
    .lx-utility .lx-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   FINAL POLISH PASS — typography, trust, tracking, motion
   ═══════════════════════════════════════════════════════════ */

.lx-landing h1, .lx-landing h2, .lx-landing h3, .lx-landing h4 {
    letter-spacing: -0.02em;
}

.lx-hero h1 {
    font-size: clamp(1.875rem, 4.2vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lx-hero-lead {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
}

.lx-hero-actions .btn-primary { font-size: 0.9375rem; }
.lx-hero-actions .btn-outline-light {
    font-weight: 600;
    font-size: 0.9375rem;
    border-width: 2px;
    border-radius: var(--lx-radius);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.lx-hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Guarantee pills */
.lx-guarantee-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lx-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
}

.lx-guarantee-pill i { color: var(--lx-primary); font-size: 0.7rem; }

/* Confidence bar */
.lx-confidence-bar {
    background: var(--lx-white);
    border-bottom: 1px solid var(--lx-gray-200);
    padding: 0.85rem 0;
}

.lx-confidence-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lx-gray-700);
}

.lx-confidence-inner i {
    color: var(--lx-primary);
    margin-right: 0.35rem;
}

/* Tracking card polish */
.lx-track-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.lx-track-input-wrap {
    position: relative;
}

.lx-track-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lx-gray-500);
    font-size: 0.875rem;
    pointer-events: none;
    transition: color 0.2s;
}

.lx-track-input {
    padding-left: 2.5rem !important;
    font-family: "SF Mono", "Menlo", "Consolas", monospace !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.04em;
}

.lx-track-input::placeholder {
    color: #9ca3af;
    font-family: "Poppins", sans-serif;
    letter-spacing: normal;
}

.lx-track-input-wrap:focus-within .lx-track-input-icon { color: var(--lx-primary); }

.lx-track-hint {
    font-size: 0.75rem;
    color: var(--lx-gray-500);
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

.lx-track-error {
    font-size: 0.75rem;
    color: #dc2626;
    margin: 0.35rem 0 0;
}

.lx-track-input.is-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.lx-track-btn:active { transform: scale(0.98); }

.lx-hero-stat {
    border: 1px solid var(--lx-gray-200);
    transition: border-color 0.2s;
}

.lx-track-card:hover .lx-hero-stat { border-color: rgba(255, 72, 0, 0.15); }

/* Section reveal */
.lx-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lx-reveal.lx-visible {
    opacity: 1;
    transform: none;
}

/* Card height consistency */
.lx-action-card,
.lx-benefit-card,
.lx-service-card,
.lx-industry-card,
.lx-testimonial {
    display: flex;
    flex-direction: column;
}

.lx-action-card { min-height: 148px; }

.lx-service-body,
.lx-industry-card p { flex: 1; }

.lx-action-card,
.lx-benefit-card,
.lx-service-card,
.lx-industry-card,
.lx-testimonial {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lx-action-card:hover { transform: translateY(-3px); }

.lx-benefit-card:hover,
.lx-industry-card:hover { transform: translateY(-2px); }

.lx-action-icon,
.lx-benefit-icon {
    transition: transform 0.22s ease, background 0.22s ease;
}

.lx-action-card:hover .lx-action-icon { transform: scale(1.05); }

/* Section headers */
.lx-section-title {
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.lx-section-desc {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

.lx-section .text-center.mb-5 { margin-bottom: 2.75rem !important; }

/* About image cinematic */
.lx-about-img-wrap img {
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: contrast(1.03) saturate(0.95);
}

/* Avatar initials (testimonials) */
.lx-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lx-dark);
    color: var(--lx-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lx-testimonial {
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.lx-testimonial:hover {
    box-shadow: var(--lx-shadow-md);
    transform: translateY(-2px);
}

.lx-testimonial-text {
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--lx-gray-700);
}

.lx-testimonial-quote { font-size: 2rem; margin-bottom: 0.25rem; }

/* Stats polish */
.lx-stat-block {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-stat-block:last-child { border-right: none; }

.lx-stat-block .counter-value {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* Footer polish */
.lx-footer { padding-top: 3.5rem; }

.lx-footer ul li {
    line-height: 1.5;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.lx-footer-bottom a {
    text-decoration: none;
    transition: color 0.15s;
    margin-left: 0.5rem;
}

.lx-footer-bottom a:hover { color: var(--lx-primary); }

/* Navbar polish */
.lx-navbar {
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.lx-navbar.lx-scrolled { padding-top: 0.65rem; padding-bottom: 0.65rem; }

.lx-navbar .nav-link {
    position: relative;
    transition: color 0.15s;
}

/* CTA */
.lx-cta { padding: 4rem 0; }

.lx-cta .btn { transition: transform 0.15s, box-shadow 0.2s; }
.lx-cta .btn:hover { transform: translateY(-1px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lx-reveal { opacity: 1; transform: none; transition: none; }
    .lx-action-card:hover,
    .lx-benefit-card:hover,
    .lx-service-card:hover,
    .lx-testimonial:hover { transform: none; }
    .lx-landing .btn-primary:hover { transform: none; }
}

/* Mobile polish */
@media (max-width: 991.98px) {
    .lx-guarantee-pills { margin-bottom: 1.25rem; }
    .lx-confidence-inner { gap: 0.75rem 1.25rem; justify-content: flex-start; }
    .lx-stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.25rem; margin-bottom: 0.5rem; }
    .lx-stat-block:last-child { border-bottom: none; }
    .lx-hero-actions .btn { width: 100%; margin-right: 0; }
    .lx-cta .btn { display: block; width: 100%; max-width: 320px; margin-left: auto !important; margin-right: auto !important; }
}

@media (max-width: 575.98px) {
    .lx-guarantee-pill { font-size: 0.6875rem; padding: 0.35rem 0.7rem; }
    .lx-trust-row { gap: 0.75rem; }
    .lx-trust-item { font-size: 0.8125rem; }
    .lx-actions-wrap { margin-top: 0; padding-top: 1.5rem; }
    .lx-track-card { padding: 1.35rem; }
    .lx-footer .row > div { margin-bottom: 2rem; }
    .lx-glass-stats { grid-template-columns: 1fr 1fr; }
    .lx-glass-stat-value { font-size: 1.25rem; }
    .lx-hero h1 { font-size: 1.875rem; }
}
