/* =========================================================
   Google Fonts - Modern Typography
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================================
   Hide Default Page Title
   ========================================================= */

/* Hide the theme's page title/header on all pages */
.page .entry-header,
.page .page-header,
.page-title,
body.page header.entry-header,
body.page .elementor-page-title,
body:not(.home) .site-main>article>header.entry-header,
.hentry .entry-header,
.entry-title,
body.page .entry-content>h2:first-child,
body.page-template-elementor_header_footer .entry-header,
/* Additional stronger selectors */
.site-main>article>header,
.site-main .page-header,
body.page-template-elementor_header_footer .site-main article>header,
body.page article.hentry>header,
body.page article>header.entry-header,
.wp-site-blocks>main header.entry-header,
body.page .site-main>.post>.entry-header,
/* Hello Elementor theme specific */
body.elementor-page .site-main>.page>header.entry-header,
body.page .site-main .entry-header,
body.page .entry-content>header,
body.page .post-inner>.entry-header,
body .single-post .entry-header,
body.page main article header,
.site-main article.page header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Also hide tagline under title */
.site-description,
.entry-meta {
    display: none !important;
}

/* Hide the theme's default site header (red title) */
#site-header,
.site-header.dynamic-header,
header#site-header,
.header-inner .site-branding,
.site-title.show,
.wp-site-header,
body:not(.home) #site-header,
body.page #site-header,
body.elementor-page #site-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   NESCo Header Styles
   ========================================================= */

:root {
    --nesco-primary: #453991;
    --nesco-accent: #92d2f0;
    --nesco-bg-dark: #020617;
    --nesco-bg-card: #0b1020;
    --nesco-bg-light: #f3f4f6;
    --nesco-text-main: #0f172a;
    --nesco-text-light: #e5e7eb;
    --nesco-text-muted: #6b7280;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.35);
    --transition-fast: 0.25s ease;
    --ink: #0b1220;
    --muted: #64748b;
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Nesco Global Grid System */
.nesco-section {
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.nesco-section+.nesco-section {
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.nesco-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.nesco-grid {
    display: grid;
    gap: 32px;
}

/* Header Core */
.nesco-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    padding: 16px 0;
    transition: all var(--transition-fast);
}

.admin-bar .nesco-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nesco-header {
        top: 46px;
    }
}

.nesco-header.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(148, 163, 184, .12);
}

.nesco-header-inner {
    display: flex;
    align-items: center;
    padding: 0 32px;
    max-width: 1340px;
    margin: 0 auto;
}

/* Logo */
.nesco-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nesco-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nesco-logo:hover .nesco-logo-img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

/* Nav wrap */
.nesco-nav-wrap {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

/* Perfect centering for the navigation */
.nesco-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.nesco-nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--nesco-text-main) !important;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nesco-nav-link:hover {
    background: rgba(69, 57, 145, 0.06);
    color: var(--nesco-primary) !important;
}

.nesco-nav-link.is-active {
    color: var(--nesco-primary) !important;
    font-weight: 600;
}

.nesco-nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--nesco-primary);
    border-radius: 2px 2px 0 0;
}

/* Header CTA */
.nesco-header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Buttons */
.nesco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nesco-btn-primary {
    background: linear-gradient(135deg, var(--nesco-primary) 0%, #302670 100%);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(69, 57, 145, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nesco-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 57, 145, 0.4);
    background: linear-gradient(135deg, #5345ad 0%, var(--nesco-primary) 100%);
}

.nesco-btn-ghost {
    background: transparent;
    color: var(--nesco-primary) !important;
    border-color: rgba(69, 57, 145, 0.25);
}

.nesco-btn-ghost:hover {
    background: rgba(69, 57, 145, 0.06);
    border-color: var(--nesco-primary);
}

.nesco-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nesco-btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

.nesco-btn-full {
    width: 100%;
}

/* Mobile toggle */
.nesco-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, .45);
    background: rgba(255, 255, 255, .70);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
}

.nesco-nav-toggle-lines {
    width: 18px;
    height: 12px;
    position: relative;
    display: inline-block;
}

.nesco-nav-toggle-lines::before,
.nesco-nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

.nesco-nav-toggle-lines::before {
    top: 0;
}

.nesco-nav-toggle-lines::after {
    bottom: 0;
}

.nesco-nav-toggle-text {
    font-size: 13px;
}

@media (max-width: 980px) {
    .nesco-nav-toggle {
        display: inline-flex;
    }

    .nesco-nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(148, 163, 184, .40);
        box-shadow: 0 18px 55px rgba(15, 23, 42, .12);
        z-index: 100;
    }

    .nesco-nav-wrap.is-open {
        display: flex;
    }

    .nesco-nav {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .nesco-nav-link {
        justify-content: center;
        width: 100%;
    }

    .nesco-header-cta {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
}

/* =========================================================
   NESCo Footer Styles
   ========================================================= */

.nesco-footer {
    position: relative;
    background: linear-gradient(160deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
    color: #fff;
    overflow: hidden;
    margin-top: 0;
    padding: 60px 0 0;
}

.nesco-web-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.nesco-spider {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: calc(10px * var(--s, 1));
    height: calc(10px * var(--s, 1));
    background: radial-gradient(circle, rgba(91, 180, 217, 1) 0%, rgba(91, 180, 217, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: spiderPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--s, 1) * -2s);
    box-shadow: 0 0 15px rgba(91, 180, 217, 0.7), 0 0 30px rgba(91, 180, 217, 0.4);
}

@keyframes spiderPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.nesco-footer-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .nesco-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .nesco-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.nesco-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .nesco-footer-logo {
        justify-content: center;
    }
}

.nesco-footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Footer logo mark "N" */
.nesco-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--nesco-accent), var(--nesco-primary));
    color: #020617;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(91, 180, 217, 0.35);
}

.nesco-footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nesco-footer-logo-text strong {
    color: #fff;
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.nesco-footer-logo-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.nesco-footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px;
}

.nesco-footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nesco-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nesco-footer-links li {
    margin-bottom: 10px;
}

.nesco-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nesco-footer-links a:hover {
    color: var(--nesco-accent);
    padding-left: 4px;
}

.nesco-footer-contact {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.nesco-footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.nesco-footer-social {
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .nesco-footer-social {
        justify-content: center;
    }
}

.nesco-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nesco-social:hover {
    background: var(--nesco-primary);
    border-color: var(--nesco-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(69, 57, 145, 0.5);
}

.nesco-footer-bottom {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
    .nesco-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.nesco-footer-made {
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   Page Styles - About, Services, Projects, Contact
   ========================================================= */

.nesco-about,
.nesco-services,
.nesco-project,
.nesco-contact {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--nesco-text-main);
    background: #020617;
}

.nesco-about-inner,
.nesco-services-inner,
.nesco-pro-hero-inner,
.nesco-pro-section-inner,
.nesco-contact-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Sections */
.nesco-about-hero,
.nesco-services-hero,
.nesco-pro-hero,
.nesco-contact-hero {
    background: radial-gradient(circle at top left, rgba(146, 210, 240, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(69, 57, 145, 0.8), #020617 70%);
    color: var(--nesco-text-light);
    padding: 80px 0 64px;
}

.nesco-about-hero-grid,
.nesco-services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.nesco-pro-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.nesco-contact-hero .nesco-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
}

/* Badges */
.nesco-about-badge,
.nesco-services-badge,
.nesco-pro-badge,
.nesco-contact-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #fbbf24;
    font-size: 13px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    margin-bottom: 12px;
}

/* Hero Content */
.nesco-about-hero-content h1,
.nesco-services-hero-content h1,
.nesco-pro-hero-content h1,
.nesco-contact-content h1 {
    font-size: clamp(28px, 4vw, 38px);
    margin: 0 0 16px;
    color: #fff;
}

.nesco-about-hero-lead,
.nesco-services-hero-lead,
.nesco-pro-hero-lead,
.nesco-contact-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #e5e7eb;
    max-width: 36rem;
    margin-bottom: 22px;
}

.nesco-about-hero-cta,
.nesco-services-hero-cta,
.nesco-pro-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

/* Tags */
.nesco-about-hero-tags,
.nesco-services-hero-tags,
.nesco-pro-hero-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.nesco-about-hero-tags li,
.nesco-services-hero-tags li,
.nesco-pro-hero-tags li {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
}

/* Hero Panels */
.nesco-about-hero-panel,
.nesco-services-hero-panels,
.nesco-pro-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nesco-about-facts-grid,
.nesco-services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nesco-pro-cards-grid {
    display: grid;
    gap: 14px;
}

/* Cards */
.nesco-about-card,
.nesco-services-card,
.nesco-pro-card {
    background: radial-gradient(circle at top right, rgba(146, 210, 240, 0.18), transparent 45%), var(--nesco-bg-card);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    transition: var(--transition-fast);
}

.nesco-about-card:hover,
.nesco-services-card:hover,
.nesco-pro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.7);
    border-color: var(--nesco-accent);
}

.nesco-about-card h3,
.nesco-services-card h3,
.nesco-pro-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--nesco-accent);
}

.nesco-about-card p,
.nesco-services-card p,
.nesco-pro-card p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.7;
}

.nesco-pro-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 12px;
    color: #e5e7eb;
}

/* ISO Pills */
.nesco-about-iso-pill,
.nesco-services-iso-pill,
.nesco-pro-iso-pill {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);
    font-size: 13px;
    color: #e5e7eb;
}

.nesco-about-iso-label,
.nesco-services-iso-label,
.nesco-pro-iso-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--nesco-accent);
    margin-bottom: 4px;
}

/* Sections */
.nesco-about-section,
.nesco-services-section,
.nesco-pro-section,
.nesco-contact-section {
    padding: 64px 0;
}

.nesco-about-section-light,
.nesco-services-section-light,
.nesco-pro-section-light,
.nesco-contact-section-light {
    background: var(--nesco-bg-light);
    color: var(--nesco-text-main);
}

.nesco-about-section-dark,
.nesco-services-section-dark,
.nesco-pro-section-dark {
    background: radial-gradient(circle at top, #111827 0, #020617 65%);
    color: var(--nesco-text-light);
}

.nesco-about-section-cta,
.nesco-services-section-cta,
.nesco-pro-section-cta,
.nesco-contact-section-cta {
    background: linear-gradient(135deg, var(--nesco-primary), #020617);
    color: var(--nesco-text-light);
}

/* Section Headers */
.nesco-about-section-header,
.nesco-services-section-header,
.nesco-pro-section-header {
    text-align: left;
    max-width: 640px;
    margin: 0 0 26px;
}

.nesco-about-section-header-center {
    text-align: center;
    margin: 0 auto 26px;
}

.nesco-eyebrow,
.nesco-pro-eyebrow,
.nesco-contact-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nesco-primary);
    display: inline-block;
    margin-bottom: 6px;
}

.nesco-eyebrow-light {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nesco-accent);
    display: inline-block;
    margin-bottom: 6px;
}

.nesco-about-section-header h2,
.nesco-services-section-header h2,
.nesco-pro-section-header h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.nesco-about-section-header p,
.nesco-services-section-header p,
.nesco-pro-section-header p {
    margin: 0;
    font-size: 14px;
    color: var(--nesco-text-muted);
}

/* Two Columns */
.nesco-about-two-columns,
.nesco-contact-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: flex-start;
}

.nesco-about-subtitle {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--nesco-primary);
}

/* Pills Grid */
.nesco-about-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nesco-about-pill {
    background: #ffffff;
    border-radius: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    transition: var(--transition-fast);
}

.nesco-about-pill:hover {
    border-color: var(--nesco-primary);
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.45);
    transform: translateY(-2px);
}

.nesco-about-pill-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--nesco-primary);
    margin-bottom: 4px;
}

.nesco-about-pill p {
    margin: 0;
    font-size: 12px;
    color: var(--nesco-text-muted);
}

/* MVV Grid */
.nesco-about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nesco-about-mvv-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 13px;
}

.nesco-about-mvv-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--nesco-accent);
}

.nesco-about-mvv-card p,
.nesco-about-mvv-card ul {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.8;
}

.nesco-about-mvv-card ul {
    padding-left: 18px;
}

/* Service Groups */
.nesco-services-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nesco-services-group {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 40px rgba(148, 163, 184, 0.3);
    font-size: 13px;
    transition: var(--transition-fast);
}

.nesco-services-group:hover {
    border-color: var(--nesco-primary);
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(148, 163, 184, 0.45);
}

.nesco-services-group h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--nesco-primary);
}

.nesco-services-group p {
    margin: 0 0 8px;
    color: var(--nesco-text-muted);
    line-height: 1.7;
}

.nesco-services-group ul {
    margin: 0;
    padding-left: 18px;
    color: #111827;
    line-height: 1.6;
}

/* Project Tiles */
.nesco-pro-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.nesco-pro-tile {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.22);
    transition: var(--transition-fast);
}

.nesco-pro-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(148, 163, 184, 0.4);
    border-color: var(--nesco-primary);
}

.nesco-pro-tile h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--nesco-primary);
}

.nesco-pro-tile p {
    margin: 0;
    font-size: 13px;
    color: var(--nesco-text-muted);
    line-height: 1.8;
}

/* Stats */
.nesco-pro-stats {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nesco-pro-stats-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.nesco-pro-stat {
    min-width: 140px;
}

.nesco-pro-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--nesco-accent);
    margin-bottom: 4px;
}

.nesco-pro-stat-label {
    font-size: 13px;
    color: #e5e7eb;
}

/* CTA Inner */
.nesco-about-cta-inner,
.nesco-services-cta-inner,
.nesco-pro-cta-inner,
.nesco-contact-cta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.nesco-about-cta-inner h2,
.nesco-services-cta-inner h2,
.nesco-pro-cta-inner h2,
.nesco-contact-cta-inner h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.nesco-about-cta-inner p,
.nesco-services-cta-inner p,
.nesco-pro-cta-inner p,
.nesco-contact-cta-inner p {
    margin: 0;
    font-size: 14px;
    color: #e5e7eb;
    max-width: 520px;
}

/* Contact Page */
.nesco-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nesco-contact-info-card {
    background: radial-gradient(circle at top right, rgba(146, 210, 240, 0.18), transparent 45%), var(--nesco-bg-card);
    border-radius: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.5);
    font-size: 13px;
}

.nesco-contact-info-card h3 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--nesco-accent);
}

.nesco-contact-info-card p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Contact Form */
.nesco-contact-form-wrap {
    display: flex;
    align-items: center;
}

.nesco-contact-form-card {
    width: 100%;
    background: radial-gradient(circle at top left, rgba(146, 210, 240, 0.18), transparent 45%), #020617;
    border-radius: var(--radius-lg);
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.7);
}

.nesco-contact-form-card h2 {
    margin: 0 0 4px;
    font-size: 20px;
    color: var(--nesco-text-light);
}

.nesco-contact-form-card>p {
    margin: 0 0 14px;
    font-size: 13px;
    color: #cbd5f5;
}

.nesco-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nesco-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nesco-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nesco-form-field label {
    font-size: 12px;
    color: #e5e7eb;
}

.nesco-form-field input,
.nesco-form-field select,
.nesco-form-field textarea {
    font-family: inherit;
    font-size: 13px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    padding: 10px 12px;
    outline: none;
    transition: all var(--transition-fast);
}

.nesco-form-field input:focus,
.nesco-form-field select:focus,
.nesco-form-field textarea:focus {
    border-color: var(--nesco-accent);
    box-shadow: 0 0 0 2px rgba(146, 210, 240, 0.3);
}

.nesco-form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.nesco-form-note {
    margin: 0;
    font-size: 11px;
    color: #9ca3af;
}

/* Contact Map */
.nesco-contact-map-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 40px rgba(148, 163, 184, 0.35);
    padding: 16px;
}

.nesco-contact-map-caption {
    margin-top: 8px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.nesco-contact-list {
    margin: 12px 0 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--nesco-text-main);
}

/* Responsive */
@media (max-width: 1024px) {
    .nesco-services-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nesco-about-mvv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nesco-pro-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .nesco-about-hero-grid,
    .nesco-services-hero-grid,
    .nesco-pro-hero-inner,
    .nesco-about-two-columns,
    .nesco-contact-hero .nesco-contact-inner,
    .nesco-contact-two-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .nesco-about-hero-panel,
    .nesco-services-hero-panels,
    .nesco-contact-form-wrap {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {

    .nesco-about-inner,
    .nesco-services-inner,
    .nesco-pro-hero-inner,
    .nesco-pro-section-inner,
    .nesco-contact-inner {
        padding: 0 16px;
    }

    .nesco-about-facts-grid,
    .nesco-services-highlight-grid,
    .nesco-about-pill-grid,
    .nesco-services-groups,
    .nesco-about-mvv-grid,
    .nesco-pro-grid-3,
    .nesco-contact-info-grid,
    .nesco-form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .nesco-about-section,
    .nesco-services-section,
    .nesco-pro-section,
    .nesco-contact-section {
        padding: 52px 0;
    }

    .nesco-btn-large {
        width: 100%;
        justify-content: center;
    }
}