:root {
    --bs-primary:           #4f46e5;
    --bs-primary-rgb:       79, 70, 229;
    --bs-danger:            #c41e3a;
    --bs-danger-rgb:        196, 30, 58;
    --bs-light:             #f5f5f5;
    --bs-dark:              #333333;
    --bs-border-radius:     4px;
    --bs-border-radius-lg:  8px;
    --bs-border-radius-sm:  4px;
    --bs-font-sans-serif:   system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.btn-primary {
    --bs-btn-bg:               #4f46e5;
    --bs-btn-border-color:     #4f46e5;
    --bs-btn-hover-bg:         #4338ca;
    --bs-btn-hover-border-color: #4338ca;
    --bs-btn-active-bg:        #3730a3;
    --bs-btn-active-border-color: #3730a3;
    --bs-btn-padding-y:        12px;
    --bs-btn-padding-x:        24px;
    background-color: #4f46e5 !important;
    border-color: #4f46e5 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #4338ca !important;
    border-color: #4338ca !important;
}

.btn-success {
    --bs-btn-padding-y:  12px;
    --bs-btn-padding-x:  24px;
}

.card {
    --bs-card-border-radius: 8px;
}



.navbar .nav-link:hover {
    color: #4f46e5 !important;
}

.navbar .nav-link.active {
    color: #4f46e5 !important;
    font-weight: 600;
}

.necs-navbar {
    background: #fff;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
}

.necs-navbar-brand {
    position: relative;
    display: inline-block;
    margin-bottom: -30px;
}

.necs-navbar-truck {
    display: block;
    height: 80px;
}

.necs-navbar-logo-link {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.necs-navbar-logo {
    max-height: 60px;
    max-width: 110px;
    object-fit: contain;
}

.necs-feature-card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.necs-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.loading-screen {
    min-height: 100vh;
}

/* ── Home page sections ───────────────────────────────── */
.necs-hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.necs-hero-screenshot {
    max-width: 650px;
    margin-left: auto;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.1);
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    overflow: hidden;
}

.necs-hero-screenshot img {
    display: block;
    width: 100%;
}

.necs-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    font-size: 2rem;
}

.necs-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4f46e5;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    font-size: 1.75rem;
}

.necs-section-lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.necs-site-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.necs-site-app > footer.necs-footer {
    margin-top: auto;
}

footer.necs-footer {
    background: #111 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 56px 0 0 !important;
    font-size: 0.875rem;
    line-height: 1.7;
}

footer.necs-footer .necs-footer-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

footer.necs-footer .necs-footer-addr {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

footer.necs-footer .necs-footer-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.necs-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.necs-footer-contact-item:hover {
    color: #fff;
}

.necs-footer-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.necs-footer-contact-item:hover .necs-footer-icon-wrap {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.necs-footer-rep {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.necs-footer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.necs-footer-rep strong {
    color: #fff;
    font-size: 0.875rem;
    display: block;
    line-height: 1.4;
}

.necs-footer-rep-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    display: block;
}

.necs-footer-rep-email {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-decoration: none;
    display: block;
    margin-top: 2px;
    transition: color 0.2s;
}

.necs-footer-rep-email:hover {
    color: #fff;
    text-decoration: underline;
}

footer.necs-footer .necs-footer-bar {
    margin-top: 48px;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer.necs-footer .necs-footer-bar a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

footer.necs-footer .necs-footer-bar a:hover {
    color: #fff;
}

/* ── Empty state ─────────────────────────────────────────── */
.necs-empty-state {
    text-align: center;
    padding: 80px 24px;
}

.necs-empty-state-icon {
    font-size: 3rem;
    color: #d1d5db;
    display: block;
    margin-bottom: 20px;
}

.necs-empty-state-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.necs-empty-state-sub {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.necs-cta-section {
    padding: 80px 0;
    background: #f8f9fb;
    text-align: center;
    border-top: 1px solid #e4e8ef;
}

.necs-cta-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.necs-cta-sub {
    font-size: 1rem;
    color: #6b7a99;
    margin-bottom: 36px;
}

.necs-cta-btn {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s;
}

.necs-cta-btn:hover {
    background: #4338ca;
    color: #fff;
}
