/* =========================================================
   NetGeeks Pro Theme - Premium Stylesheet v2
   Orange-based, mobile-first, premium feel
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --ng-primary: #F25420;
    --ng-primary-dark: #D63E0F;
    --ng-primary-darker: #B5320A;
    --ng-primary-light: #FFEFE6;
    --ng-primary-lighter: #FFF8F3;
    --ng-accent: #FFB800;
    --ng-accent-dark: #E0A300;
    --ng-text: #18181B;
    --ng-text-muted: #52525B;
    --ng-text-light: #A1A1AA;
    --ng-bg: #FFFFFF;
    --ng-bg-soft: #FAFAF9;
    --ng-bg-alt: #F4F4F5;
    --ng-bg-cream: #FFFAF5;
    --ng-border: #E4E4E7;
    --ng-border-strong: #D4D4D8;
    --ng-success: #16A34A;
    --ng-warning: #F59E0B;
    --ng-danger: #DC2626;
    --ng-dark: #0F0F12;
    --ng-dark-2: #1C1C21;
    --ng-radius-sm: 8px;
    --ng-radius: 12px;
    --ng-radius-lg: 18px;
    --ng-radius-xl: 28px;
    --ng-shadow-sm: 0 1px 2px rgba(24, 16, 10, 0.06);
    --ng-shadow: 0 4px 14px rgba(24, 16, 10, 0.08);
    --ng-shadow-lg: 0 16px 48px rgba(24, 16, 10, 0.12);
    --ng-shadow-xl: 0 24px 64px rgba(24, 16, 10, 0.16);
    --ng-shadow-orange: 0 8px 24px rgba(242, 84, 32, 0.25);
    --ng-shadow-orange-lg: 0 16px 40px rgba(242, 84, 32, 0.35);
    --ng-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ng-container: 1200px;
    --ng-mobile-bar-h: 68px;
    --ng-header-h: 76px;
    --ng-trans: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --ng-trans-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --ng-trans-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ng-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ng-text);
    background: var(--ng-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* App-like: no blue tap flash, no horizontal rubber-banding */
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ng-primary); text-decoration: none; transition: color var(--ng-trans); }
a:hover { color: var(--ng-primary-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
    line-height: 1.18;
    margin: 0 0 0.5em;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ng-text);
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.65rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
p { margin: 0 0 1em; }

.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--ng-primary); color: #fff;
    padding: 12px 16px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; color: #fff; }

/* LAYOUT */
.ng-container { max-width: var(--ng-container); margin: 0 auto; padding: 0 24px; }
.ng-section { padding: 80px 0; position: relative; }
.ng-section-alt { background: var(--ng-bg-soft); }
.ng-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.ng-section-sub { color: var(--ng-text-muted); font-size: 1.1rem; line-height: 1.6; }
.ng-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700;
    color: var(--ng-primary);
    text-transform: uppercase; letter-spacing: 0.12em;
    background: var(--ng-primary-light);
    padding: 7px 14px; border-radius: 999px;
    margin-bottom: 18px;
}
.ng-eyebrow::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--ng-primary);
}
.ng-text-accent { color: var(--ng-primary); }

/* BUTTONS */
.ng-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-weight: 600; font-size: 0.95rem;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: var(--ng-radius);
    cursor: pointer;
    transition: all var(--ng-trans);
    text-decoration: none; white-space: nowrap; line-height: 1;
    font-family: inherit; letter-spacing: -0.005em;
}
.ng-btn-lg { padding: 17px 30px; font-size: 1rem; }
.ng-btn-block { width: 100%; }
.ng-btn-primary {
    background: var(--ng-primary); color: #fff; border-color: var(--ng-primary);
    box-shadow: var(--ng-shadow-orange);
}
.ng-btn-primary:hover {
    background: var(--ng-primary-dark); border-color: var(--ng-primary-dark);
    color: #fff; transform: translateY(-2px);
    box-shadow: var(--ng-shadow-orange-lg);
}
.ng-btn-primary:active { transform: translateY(0); }
.ng-btn-secondary {
    background: #fff; color: var(--ng-text); border-color: var(--ng-border-strong);
}
.ng-btn-secondary:hover {
    border-color: var(--ng-primary); color: var(--ng-primary);
    background: var(--ng-primary-lighter);
    transform: translateY(-1px);
}
.ng-btn-ghost { background: transparent; color: var(--ng-text); border-color: transparent; }
.ng-btn-ghost:hover { background: var(--ng-bg-alt); color: var(--ng-text); }
.ng-btn-ghost-light {
    background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.ng-btn-ghost-light:hover {
    background: rgba(255,255,255,0.2); color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* TRUST STRIP */
.ng-trust-strip { background: var(--ng-text); color: #E4E4E7; font-size: 0.85rem; padding: 10px 0; }
.ng-trust-strip .ng-container { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.ng-trust-item { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.ng-trust-item svg { color: var(--ng-accent); flex-shrink: 0; }
.ng-trust-call { margin-left: auto; color: var(--ng-accent); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ng-trust-call:hover { color: #fff; }
@media (max-width: 768px) { .ng-trust-strip { display: none; } }

/* HEADER */
.ng-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(228, 228, 231, 0.6);
}
.ng-header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--ng-header-h); gap: 32px; }
.ng-logo a { display: flex; align-items: center; }
.ng-logo svg, .ng-logo img { max-height: 42px; width: auto; }

.ng-nav-desktop { flex: 1; }
.ng-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 2px; justify-content: center; }
.ng-menu li { position: relative; }
.ng-menu > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 10px 14px;
    color: var(--ng-text); font-weight: 500; font-size: 0.95rem;
    border-radius: var(--ng-radius-sm);
    transition: all var(--ng-trans);
}
.ng-menu > li > a:hover, .ng-menu .current-menu-item > a, .ng-menu .current-menu-parent > a {
    background: var(--ng-bg-alt); color: var(--ng-primary);
}
.ng-menu .menu-item-has-children > a::after {
    content: ''; width: 6px; height: 6px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); margin-left: 4px; margin-top: -3px;
}
.ng-menu li:hover > .sub-menu, .ng-menu li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.ng-menu .sub-menu {
    position: absolute; top: calc(100% + 4px); left: 0;
    background: #fff; min-width: 260px;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    box-shadow: var(--ng-shadow-lg);
    list-style: none; padding: 8px; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all var(--ng-trans);
}
.ng-menu .sub-menu a {
    padding: 10px 14px; font-size: 0.9rem;
    border-radius: var(--ng-radius-sm);
    color: var(--ng-text); display: block;
    transition: all var(--ng-trans);
}
.ng-menu .sub-menu a:hover { background: var(--ng-primary-light); color: var(--ng-primary); }

.ng-header-actions { display: flex; align-items: center; gap: 10px; }
.ng-hamburger {
    display: none; width: 44px; height: 44px;
    background: var(--ng-bg-alt); border: none;
    border-radius: var(--ng-radius-sm);
    flex-direction: column; justify-content: center; align-items: center; gap: 4px;
    transition: all var(--ng-trans);
}
.ng-hamburger:hover { background: var(--ng-primary-light); }
.ng-hamburger span { width: 20px; height: 2px; background: var(--ng-text); border-radius: 1px; transition: all var(--ng-trans); }

@media (max-width: 1024px) { .ng-nav-desktop { display: none; } .ng-hamburger { display: flex; } }
@media (max-width: 640px) {
    .ng-book-btn { display: none; }
    .ng-header-inner { gap: 16px; }
    .ng-container { padding: 0 18px; }
}

/* MOBILE MENU - PREMIUM REDESIGN */
.ng-mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(420px, 92vw);
    max-width: 100vw;
    background: #fff; z-index: 200;
    box-shadow: -8px 0 40px rgba(24, 16, 10, 0.18);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex; flex-direction: column;
    /* Respect notch / home-indicator on phones */
    padding-bottom: env(safe-area-inset-bottom);
}
.ng-mobile-menu[hidden] { display: flex; }
.ng-mobile-menu.is-open { transform: translateX(0); }

.ng-mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    background: var(--ng-bg-cream);
    border-bottom: 1px solid var(--ng-border);
}
.ng-mobile-menu-logo svg { max-height: 36px; }
.ng-mobile-close {
    width: 40px; height: 40px;
    background: #fff; border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--ng-text);
    transition: all var(--ng-trans);
}
.ng-mobile-close:hover {
    background: var(--ng-primary-light); border-color: var(--ng-primary);
    color: var(--ng-primary);
}

.ng-mobile-cta-card {
    margin: 18px 22px;
    background: linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    border-radius: var(--ng-radius-lg);
    padding: 20px;
    color: #fff;
    box-shadow: var(--ng-shadow-orange);
}
.ng-mobile-cta-card-title {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    opacity: 0.85; font-weight: 700; margin-bottom: 4px;
}
.ng-mobile-cta-card-num {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 14px;
    letter-spacing: -0.02em; display: block;
    color: #fff !important; text-decoration: none;
}
.ng-mobile-cta-card-row { display: flex; gap: 8px; }
.ng-mobile-cta-card-btn {
    flex: 1;
    background: rgba(255,255,255,0.15);
    color: #fff; text-align: center;
    padding: 11px;
    border-radius: var(--ng-radius-sm);
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all var(--ng-trans);
    cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.ng-mobile-cta-card-btn:hover { background: rgba(255,255,255,0.28); color: #fff; }
.ng-mobile-cta-card-btn-solid { background: #fff; color: var(--ng-primary); border-color: #fff; }
.ng-mobile-cta-card-btn-solid:hover { background: var(--ng-bg-cream); color: var(--ng-primary-dark); }

.ng-mobile-section-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--ng-text-muted); font-weight: 700;
    padding: 18px 22px 8px;
}

.ng-mobile-nav, .ng-mobile-nav .sub-menu { list-style: none; padding: 0; margin: 0; }
.ng-mobile-nav { padding: 0 12px; }
.ng-mobile-nav > li { margin-bottom: 2px; }
.ng-mobile-nav > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 14px;
    color: var(--ng-text); font-weight: 600; font-size: 0.98rem;
    border-radius: var(--ng-radius-sm);
    transition: all var(--ng-trans);
}
.ng-mobile-nav > li > a::after {
    content: ''; width: 6px; height: 6px;
    border-right: 2px solid var(--ng-text-light);
    border-bottom: 2px solid var(--ng-text-light);
    transform: rotate(-45deg);
    transition: all var(--ng-trans);
}
.ng-mobile-nav a:hover, .ng-mobile-nav a:active {
    background: var(--ng-primary-light); color: var(--ng-primary);
}
.ng-mobile-nav > li > a:hover::after { border-color: var(--ng-primary); transform: rotate(-45deg) translate(2px, -2px); }
.ng-mobile-nav .sub-menu {
    margin-left: 16px; padding-left: 12px;
    border-left: 2px solid var(--ng-border);
    margin-top: 4px; margin-bottom: 8px;
}
.ng-mobile-nav .sub-menu a {
    display: block; padding: 10px 12px; font-size: 0.9rem;
    color: var(--ng-text-muted); font-weight: 500;
    border-radius: var(--ng-radius-sm);
}
.ng-mobile-nav .sub-menu a:hover { color: var(--ng-primary); background: var(--ng-primary-lighter); }

.ng-mobile-footer-meta {
    margin-top: auto;
    padding: 18px 22px;
    background: var(--ng-bg-soft);
    border-top: 1px solid var(--ng-border);
    font-size: 0.8rem;
    color: var(--ng-text-muted);
    text-align: center;
}
.ng-mobile-footer-meta strong { color: var(--ng-text); display: block; margin-bottom: 2px; }

.ng-backdrop {
    position: fixed; inset: 0;
    background: rgba(15, 15, 18, 0.55);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0; visibility: hidden;
    transition: all var(--ng-trans-slow);
}
.ng-backdrop.is-open { opacity: 1; visibility: visible; }

/* Safety: if the fallback menu (.ng-menu) is rendered inside the drawer,
   make it lay out vertically like the mobile nav instead of as a desktop row. */
.ng-mobile-menu .ng-menu {
    list-style: none; padding: 0 12px; margin: 0;
    display: flex; flex-direction: column; gap: 2px; justify-content: flex-start;
}
.ng-mobile-menu .ng-menu > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 14px; font-size: 0.98rem; font-weight: 600;
    border-radius: var(--ng-radius-sm); color: var(--ng-text);
}
.ng-mobile-menu .ng-menu > li > a:hover { background: var(--ng-primary-light); color: var(--ng-primary); }

/* ---- MOBILE MENU: small-screen tuning ---- */
@media (max-width: 380px) {
    .ng-mobile-menu { width: 100vw; }
    .ng-mobile-menu-header { padding: 16px 18px; }
    .ng-mobile-cta-card { margin: 14px 18px; padding: 18px; }
    .ng-mobile-cta-card-num { font-size: 1.35rem; }
    .ng-mobile-cta-card-row { flex-direction: column; }
    .ng-mobile-section-label { padding: 14px 18px 6px; }
    .ng-mobile-nav { padding: 0 8px; }
    .ng-mobile-nav > li > a { padding: 14px 12px; }
}

/* =========================================================
   HERO SLIDER (premium full-width)
   ========================================================= */
.ng-hero-slider {
    position: relative;
    width: 100%;
    /* Distinct, warm premium band that separates the hero from the page */
    background:
        radial-gradient(120% 120% at 88% 18%, rgba(255, 184, 0, 0.10) 0%, transparent 45%),
        linear-gradient(135deg, #FFF1E7 0%, #FFF7F0 48%, #FDEFE6 100%);
    overflow: hidden;
}
/* Large soft curve on the LEFT - extends well past the content so text sits inside it */
.ng-hero-blob {
    position: absolute; top: 50%; left: -22%;
    width: 86%; aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    background: radial-gradient(circle at 58% 50%, rgba(242, 84, 32, 0.18) 0%, rgba(242, 84, 32, 0.10) 38%, rgba(242, 84, 32, 0.03) 58%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; z-index: 0;
}
/* Soft glow behind the image on the right */
.ng-hero-blob-2 {
    position: absolute; top: 4%; right: -10%;
    width: 52%; aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 64%);
    border-radius: 50%;
    pointer-events: none; z-index: 0;
}
.ng-hero-slider-viewport { position: relative; z-index: 1; }

/* Track holds slides stacked on top of each other; we cross-fade them. */
.ng-hero-slider-track {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
}
.ng-hero-slide {
    grid-area: stack;
    position: relative;
    min-height: 600px;
    display: flex; align-items: center;
    padding: 60px 0 104px;        /* extra bottom room so dots never touch the card */
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease, visibility 0s linear 600ms;
    pointer-events: none;
}
.ng-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 600ms ease;
    pointer-events: auto;
    z-index: 2;
}
.ng-hero-slide .ng-container { position: relative; z-index: 1; width: 100%; }

/* Image column is clearly larger than the text column */
.ng-hero-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 32px;
    align-items: center;
}
.ng-hero-slide-content { min-width: 0; max-width: 480px; }
.ng-hero-slide-media { position: relative; }
.ng-hero-slide-media img {
    width: 100%;
    max-width: 820px;
    height: auto;
    margin-left: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    /* Soft floating shadow gives a premium 3D feel */
    filter: drop-shadow(0 28px 48px rgba(24, 16, 10, 0.18));
    animation: ng-hero-float 6s ease-in-out infinite;
}
@keyframes ng-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Entrance animation for the active slide */
.ng-hero-slide.is-active .ng-hero-slide-content > * {
    animation: ng-slide-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ng-hero-slide.is-active .ng-hero-eyebrow { animation-delay: 60ms; }
.ng-hero-slide.is-active .ng-hero-title { animation-delay: 130ms; }
.ng-hero-slide.is-active .ng-hero-sub { animation-delay: 200ms; }
.ng-hero-slide.is-active .ng-hero-actions { animation-delay: 270ms; }
@keyframes ng-slide-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slider controls - under the image, clear of the callback card below */
.ng-hero-slider-controls {
    position: absolute; bottom: 40px;
    right: 0; left: 0;
    z-index: 6;
    display: flex; align-items: center; justify-content: center; gap: 16px;
}
.ng-hero-slider-arrow {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: 50%;
    color: var(--ng-text);
    box-shadow: var(--ng-shadow);
    cursor: pointer; flex-shrink: 0;
    transition: all var(--ng-trans);
}
.ng-hero-slider-arrow:hover {
    background: var(--ng-primary); color: #fff; border-color: var(--ng-primary);
    box-shadow: var(--ng-shadow-orange); transform: translateY(-1px);
}
.ng-hero-slider-dots { display: flex; gap: 10px; align-items: center; }
.ng-hero-slider-dot {
    width: 28px; height: 8px;
    padding: 0; border: none; background: transparent;
    cursor: pointer; display: flex; align-items: center;
}
.ng-hero-slider-dot span {
    display: block; width: 100%; height: 8px;
    background: rgba(24, 16, 10, 0.18);
    border-radius: 999px;
    transition: all var(--ng-trans);
}
.ng-hero-slider-dot:hover span { background: rgba(24, 16, 10, 0.34); }
.ng-hero-slider-dot.is-active span { background: var(--ng-primary); width: 100%; }

/* =========================================================
   PREMIUM CALLBACK CARD
   ========================================================= */
.ng-callback {
    background: var(--ng-bg);
    padding: 56px 0;
    position: relative; z-index: 5;
}
.ng-callback-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 2fr;
    align-items: center;
    gap: 44px;
    background: linear-gradient(135deg, #fff 0%, #FFFBF8 100%);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    box-shadow: 0 24px 60px rgba(24, 16, 10, 0.10);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
}
/* Accent stripe on the left edge of the card */
.ng-callback-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0;
    width: 6px; background: linear-gradient(180deg, var(--ng-primary), var(--ng-accent));
}
.ng-callback-info { display: flex; align-items: flex-start; gap: 18px; }
.ng-callback-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    border-radius: var(--ng-radius);
}
.ng-callback-title { font-size: 1.4rem; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.02em; line-height: 1.2; }
.ng-callback-text { font-size: 0.96rem; color: var(--ng-text-muted); margin: 0; line-height: 1.55; }

.ng-callback-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.ng-callback-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.ng-callback-field label {
    font-size: 0.74rem; font-weight: 700; color: var(--ng-text-muted);
    text-transform: uppercase; letter-spacing: 0.07em;
}
.ng-callback-field input {
    width: 100%; padding: 15px 16px;
    border: 1.5px solid var(--ng-border-strong);
    border-radius: var(--ng-radius);
    font-size: 0.98rem; font-family: inherit;
    transition: all var(--ng-trans);
    background: #fff; color: var(--ng-text);
}
.ng-callback-field input::placeholder { color: var(--ng-text-faint, #9ca3af); }
.ng-callback-field input:focus {
    outline: none; border-color: var(--ng-primary); background: #fff;
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-callback-submit { white-space: nowrap; height: 52px; }

/* Shared hero typography (reused by slider) */
.ng-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--ng-border);
    padding: 9px 16px; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--ng-text-muted);
    margin-bottom: 22px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ng-success); position: relative; }
.ng-pulse-dot::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--ng-success); opacity: 0.3; animation: ng-pulse 2s ease-out infinite; }
@keyframes ng-pulse { 0%, 100% { transform: scale(0.8); opacity: 0.3; } 50% { transform: scale(1.4); opacity: 0; } }

.ng-hero-title { margin-bottom: 18px; }
.ng-hero-title .ng-text-accent { display: block; }
.ng-hero-sub { font-size: 1.18rem; color: var(--ng-text-muted); margin-bottom: 32px; line-height: 1.55; max-width: 540px; }
.ng-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.ng-hero-actions-center { justify-content: center; }
.ng-hero-trust { display: flex; flex-direction: column; gap: 14px; }
.ng-trust-stars { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ng-trust-stars > span:first-child { color: var(--ng-accent); font-size: 1.2rem; letter-spacing: 3px; }
.ng-trust-stars strong { font-size: 1.05rem; font-weight: 700; }
.ng-trust-meta { color: var(--ng-text-muted); font-size: 0.9rem; }
.ng-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.ng-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; border: 1px solid var(--ng-border);
    padding: 7px 13px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 500;
    color: var(--ng-text-muted);
    box-shadow: var(--ng-shadow-sm);
}
.ng-badge svg { color: var(--ng-success); }

/* MINI FORM */
.ng-mini-form {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px;
    box-shadow: var(--ng-shadow-xl);
    position: relative;
}
.ng-mini-form-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--ng-text); font-size: 1.05rem; font-weight: 700; }
.ng-mini-form-icon {
    width: 38px; height: 38px;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    border-radius: var(--ng-radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ng-callback-form { display: grid; gap: 12px; }
.ng-callback-form input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--ng-border-strong);
    border-radius: var(--ng-radius-sm);
    font-size: 0.95rem; font-family: inherit;
    transition: all var(--ng-trans);
    background: var(--ng-bg-soft); color: var(--ng-text);
}
.ng-callback-form input:focus {
    outline: none; border-color: var(--ng-primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-form-tiny { font-size: 0.78rem; color: var(--ng-text-muted); margin: 6px 0 0; text-align: center; }

/* ---- HERO SLIDER RESPONSIVE ---- */
@media (max-width: 1024px) {
    .ng-hero-slide-grid { gap: 28px; grid-template-columns: 1fr 1.2fr; }
    .ng-hero-blob { left: -28%; width: 70%; }
}
@media (max-width: 900px) {
    .ng-hero-slide {
        min-height: 0;
        padding: 44px 0 84px;
        display: block;
    }
    .ng-hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    /* Image first on mobile, content below */
    .ng-hero-slide-media { order: -1; max-width: 480px; margin: 0 auto; }
    .ng-hero-slide-content { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .ng-hero-sub { margin-left: auto; margin-right: auto; }
    .ng-hero-actions { justify-content: center; }
    .ng-hero-blob { top: 30%; left: -40%; width: 90%; }
    .ng-hero-blob-2 { display: none; }
    .ng-hero-slider-controls { bottom: 26px; }

    /* Callback card stacks */
    .ng-callback { padding: 40px 0; }
    .ng-callback-card { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; text-align: left; }
    .ng-callback-form-grid { grid-template-columns: 1fr 1fr; }
    .ng-callback-submit { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .ng-hero-slide { padding: 32px 0 78px; }
    .ng-hero-actions { flex-direction: column; width: 100%; }
    .ng-hero-actions .ng-btn { width: 100%; }
    .ng-hero-slider-arrow { width: 40px; height: 40px; }

    .ng-callback-info { flex-direction: row; }
    .ng-callback-form-grid { grid-template-columns: 1fr; }
    .ng-callback-title { font-size: 1.2rem; }
}

/* Respect reduced motion: no entrance animation, instant slide change */
@media (prefers-reduced-motion: reduce) {
    .ng-hero-slide,
    .ng-hero-slide.is-active .ng-hero-slide-content > *,
    .ng-hero-slide-media img {
        animation: none !important;
        transition: opacity 1ms linear !important;
    }
}

/* BRAND LOGOS STRIP */
.ng-logo-strip {
    padding: 72px 0;
    border-top: 1px solid var(--ng-border);
    border-bottom: 1px solid var(--ng-border);
    background: linear-gradient(180deg, var(--ng-bg-soft) 0%, var(--ng-bg) 100%);
}
.ng-logo-strip-label {
    text-align: center; color: var(--ng-text);
    font-size: 1.05rem; font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.ng-logo-strip-sub {
    text-align: center; color: var(--ng-text-muted);
    font-size: 0.88rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    margin: 0 0 40px;
}
.ng-brand-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    align-items: stretch;
    justify-items: stretch;
}
.ng-brand-logo {
    height: 88px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    color: #475569;
    box-shadow: var(--ng-shadow-sm);
    transition: all var(--ng-trans);
}
.ng-brand-logo:hover {
    color: var(--ng-primary);
    border-color: var(--ng-primary-200, rgba(242,84,32,0.35));
    transform: translateY(-4px);
    box-shadow: var(--ng-shadow);
}
.ng-brand-logo svg { max-height: 46px; max-width: 100%; width: auto; height: auto; }
@media (max-width: 1024px) {
    .ng-brand-logos { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .ng-brand-logo { height: 80px; }
}
@media (max-width: 560px) {
    .ng-brand-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ng-brand-logo { height: 72px; }
    .ng-brand-logo svg { max-height: 40px; }
}

/* SERVICES */
.ng-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.ng-service-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px;
    transition: all var(--ng-trans-slow);
    color: var(--ng-text);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.ng-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--ng-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--ng-trans-slow);
}
.ng-service-card:hover {
    border-color: var(--ng-primary);
    transform: translateY(-4px);
    box-shadow: var(--ng-shadow-lg);
    color: var(--ng-text);
}
.ng-service-card:hover::before { transform: scaleX(1); }
.ng-service-icon {
    width: 56px; height: 56px;
    border-radius: var(--ng-radius);
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: all var(--ng-trans);
}
.ng-service-card:hover .ng-service-icon {
    background: var(--ng-primary); color: #fff;
    transform: scale(1.05) rotate(-3deg);
}
.ng-service-icon svg { width: 28px; height: 28px; }
.ng-service-title { margin-bottom: 8px; font-size: 1.18rem; font-weight: 700; }
.ng-service-desc { color: var(--ng-text-muted); font-size: 0.93rem; line-height: 1.55; flex: 1; margin-bottom: 18px; }
.ng-service-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--ng-primary); font-weight: 600; font-size: 0.9rem;
    transition: gap var(--ng-trans);
}
.ng-service-card:hover .ng-service-link { gap: 10px; }

/* HOW IT WORKS */
.ng-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: stretch; }
.ng-step {
    text-align: center; padding: 32px 24px;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    transition: all var(--ng-trans);
}
.ng-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--ng-shadow);
    border-color: var(--ng-primary-light);
}
.ng-step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: var(--ng-shadow-orange);
}
.ng-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.ng-step p { color: var(--ng-text-muted); font-size: 0.95rem; margin: 0; line-height: 1.55; }
.ng-step-connector {
    align-self: center; height: 2px; width: 100%; min-width: 24px;
    background-image: linear-gradient(90deg, var(--ng-border-strong) 50%, transparent 50%);
    background-size: 10px 2px; margin-top: 32px;
}
.ng-step-cta { text-align: center; margin-top: 40px; }
@media (max-width: 800px) { .ng-steps { grid-template-columns: 1fr; } .ng-step-connector { display: none; } }

/* WHY US */
.ng-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
    align-items: center;
}
.ng-why-content > p {
    color: var(--ng-text-muted);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 720px;
}
.ng-why-faq {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}
.ng-why-faq-item {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    box-shadow: var(--ng-shadow-sm);
    overflow: hidden;
    transition: border-color var(--ng-trans), box-shadow var(--ng-trans), transform var(--ng-trans);
}
.ng-why-faq-item:hover {
    border-color: var(--ng-primary-light);
    box-shadow: var(--ng-shadow);
    transform: translateY(-1px);
}
.ng-why-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 54px 18px 20px;
    color: var(--ng-text);
    font-weight: 800;
    line-height: 1.35;
    position: relative;
}
.ng-why-faq-item summary::-webkit-details-marker { display: none; }
.ng-why-faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%; right: 18px;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    font-weight: 900;
    transition: all var(--ng-trans);
}
.ng-why-faq-item[open] summary::after {
    content: '-';
    background: var(--ng-primary);
    color: #fff;
}
.ng-why-faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--ng-text-muted);
    font-size: 0.95rem;
    line-height: 1.68;
}
.ng-why-media-card {
    background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    box-shadow: var(--ng-shadow-xl);
    padding: 22px;
    position: relative;
    overflow: hidden;
}
.ng-why-media-card::before {
    content: '';
    position: absolute;
    inset: auto -80px -110px auto;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(242, 84, 32, 0.12);
    pointer-events: none;
}
.ng-why-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    background: var(--ng-primary-lighter);
}
.ng-why-image-wrap img { width: 100%; display: block; }
.ng-why-proof-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.ng-stat-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: all var(--ng-trans);
    position: relative;
    overflow: hidden;
}
.ng-stat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
    transform: scaleX(0);
    transition: transform var(--ng-trans);
}
.ng-stat-card:hover { transform: translateY(-3px); box-shadow: var(--ng-shadow); border-color: var(--ng-primary-light); }
.ng-stat-card:hover::after { transform: scaleX(1); }
.ng-stat-num {
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px; letter-spacing: -0.03em; line-height: 1;
}
.ng-stat-label { color: var(--ng-text-muted); font-size: 0.84rem; font-weight: 600; }
.ng-why-media-points {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}
.ng-why-media-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ng-text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}
.ng-why-media-points li::before {
    content: '';
    flex: 0 0 18px;
    width: 18px; height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--ng-success);
    box-shadow: inset 0 0 0 5px #dcfce7;
}
@media (max-width: 960px) {
    .ng-why-grid { grid-template-columns: 1fr; gap: 38px; }
    .ng-why-media-card { max-width: 680px; margin: 0 auto; }
}
@media (max-width: 520px) {
    .ng-why-proof-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ng-stat-card { padding: 18px 10px; }
    .ng-why-faq-item summary { padding: 16px 50px 16px 16px; }
    .ng-why-faq-item p { padding: 0 16px 18px; }
}

/* TESTIMONIALS */
.ng-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.ng-testimonial {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px;
    position: relative;
    transition: all var(--ng-trans);
}
.ng-testimonial::before {
    content: '"'; position: absolute; top: 8px; right: 24px;
    font-size: 4rem; line-height: 1;
    color: var(--ng-primary-light);
    font-family: Georgia, serif;
    pointer-events: none;
}
.ng-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--ng-shadow-lg);
    border-color: var(--ng-primary-light);
}
.ng-stars { color: var(--ng-accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.ng-testimonial blockquote { margin: 0 0 18px; color: var(--ng-text); font-size: 1rem; line-height: 1.65; }
.ng-testimonial footer { display: flex; align-items: center; gap: 12px; }
.ng-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ng-primary-light) 0%, var(--ng-primary-lighter) 100%);
    color: var(--ng-primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.92rem;
    border: 2px solid #fff;
    box-shadow: var(--ng-shadow-sm);
}
.ng-testimonial footer strong { display: block; font-size: 0.95rem; font-weight: 700; }
.ng-testimonial footer span { color: var(--ng-text-muted); font-size: 0.85rem; }
.ng-testimonial-cta { text-align: center; margin-top: 36px; }
.ng-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ng-primary); }
.ng-link-arrow:hover { gap: 10px; }

/* AREAS */
.ng-areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ng-area-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1px solid var(--ng-border);
    padding: 11px 18px; border-radius: 999px;
    color: var(--ng-text); font-weight: 500; font-size: 0.92rem;
    transition: all var(--ng-trans);
    box-shadow: var(--ng-shadow-sm);
}
.ng-area-pill:hover {
    border-color: var(--ng-primary);
    background: var(--ng-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--ng-shadow-orange);
}
.ng-area-pill svg { color: var(--ng-primary); transition: color var(--ng-trans); }
.ng-area-pill:hover svg { color: #fff; }

/* BLOG */
.ng-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.ng-post-card {
    background: #fff; border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg); overflow: hidden;
    transition: all var(--ng-trans);
}
.ng-post-card:hover { transform: translateY(-3px); box-shadow: var(--ng-shadow-lg); }
.ng-post-card-img { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ng-bg-alt); }
.ng-post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms; }
.ng-post-card:hover .ng-post-card-img img { transform: scale(1.06); }
.ng-post-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--ng-primary-lighter) 0%, var(--ng-bg-cream) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--ng-primary);
}
.ng-post-card-body { padding: 22px; }
.ng-post-card-body time { color: var(--ng-text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.ng-post-card-body h3 { margin: 8px 0; font-size: 1.12rem; font-weight: 700; }
.ng-post-card-body h3 a { color: var(--ng-text); }
.ng-post-card-body h3 a:hover { color: var(--ng-primary); }
.ng-post-card-body p { color: var(--ng-text-muted); font-size: 0.93rem; margin: 0; line-height: 1.55; }

/* FINAL CTA */
.ng-final-cta {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(255, 184, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    color: #fff;
    padding: 96px 0;
    text-align: center;
    overflow: hidden;
}
.ng-final-cta::before {
    content: ''; position: absolute; bottom: -50%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.ng-final-cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.ng-final-cta h2 { color: #fff; margin-bottom: 16px; }
.ng-final-cta p { font-size: 1.15rem; opacity: 0.93; margin-bottom: 32px; line-height: 1.55; }
.ng-final-cta .ng-btn-primary {
    background: #fff; color: var(--ng-primary); border-color: #fff;
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}
.ng-final-cta .ng-btn-primary:hover {
    background: var(--ng-text); color: #fff; border-color: var(--ng-text);
}

/* FOOTER */
.ng-footer {
    background: var(--ng-dark);
    color: #A1A1AA;
    padding: 72px 0 28px;
}
.ng-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 44px; }
.ng-footer-logo-panel {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #fff;
    border-radius: 16px;
    padding: 10px 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.ng-footer-logo-panel a { display: inline-flex; align-items: center; }
.ng-footer-logo-panel svg, .ng-footer-logo-panel img { max-height: 42px; width: auto; margin: 0; }
.ng-footer-tagline { color: #A1A1AA; font-size: 0.95rem; line-height: 1.65; max-width: 340px; }
.ng-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.ng-footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #A1A1AA;
    transition: all var(--ng-trans);
}
.ng-footer-social a:hover { background: var(--ng-primary); color: #fff; transform: translateY(-2px); }
.ng-footer-heading { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.ng-footer-links, .ng-footer-contact { list-style: none; padding: 0; margin: 0; }
.ng-footer-links li { margin-bottom: 9px; }
.ng-footer-links a { color: #A1A1AA; font-size: 0.92rem; transition: all var(--ng-trans); display: inline-block; }
.ng-footer-links a:hover { color: var(--ng-primary); transform: translateX(3px); }
.ng-footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.92rem; }
.ng-footer-contact svg { color: var(--ng-primary); flex-shrink: 0; margin-top: 4px; }
.ng-footer-contact a { color: #A1A1AA; }
.ng-footer-contact a:hover { color: var(--ng-primary); }
.ng-footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 0.85rem; color: #71717A;
}
.ng-footer-bottom p { margin: 0; }
.ng-footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }
.ng-footer-legal a { color: #71717A; }
.ng-footer-legal a:hover { color: #fff; }
@media (max-width: 800px) { .ng-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .ng-footer-grid { grid-template-columns: 1fr; } }

/* BACK TO TOP */
.ng-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 110;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ng-shadow-orange-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--ng-trans), visibility var(--ng-trans), transform var(--ng-trans), box-shadow var(--ng-trans);
}
.ng-back-to-top:hover {
    color: #fff;
    transform: translateY(6px);
    box-shadow: 0 18px 44px rgba(242, 84, 32, 0.42);
}
.ng-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .ng-back-to-top { bottom: calc(var(--ng-mobile-bar-h) + env(safe-area-inset-bottom) + 16px); right: 16px; }
}

/* MOBILE BAR */
.ng-mobile-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--ng-mobile-bar-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid var(--ng-border);
    z-index: 90;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -6px 24px rgba(24, 16, 10, 0.08);
}
.ng-mobile-bar-btn {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    text-decoration: none;
    background: transparent; border: none;
    color: var(--ng-text-muted);
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.01em;
    padding: 9px 4px;
    transition: color var(--ng-trans), transform 0.1s ease;
    font-family: inherit;
}
.ng-mobile-bar-btn svg { stroke-width: 2; }
.ng-mobile-bar-btn:hover { color: var(--ng-primary); }
.ng-mobile-bar-btn:active { transform: scale(0.92); }
.ng-mobile-bar-call { color: var(--ng-success); }
/* Book is the standout action - a filled pill that sits proud of the bar */
.ng-mobile-bar-book {
    color: #fff;
    background: linear-gradient(135deg, var(--ng-primary) 0%, var(--ng-primary-dark) 100%);
    margin: 8px 8px 8px 4px;
    border-radius: var(--ng-radius);
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(242, 84, 32, 0.32);
}
.ng-mobile-bar-book:hover, .ng-mobile-bar-book:active { color: #fff; }
@media (max-width: 768px) {
    .ng-mobile-bar { display: flex; }
    /* Keep content clear of the bar, including the phone's home-indicator area */
    body { padding-bottom: calc(var(--ng-mobile-bar-h) + env(safe-area-inset-bottom)); }
}

/* MODAL */
.ng-modal {
    position: fixed; inset: 0; z-index: 300;
    display: none; align-items: center; justify-content: center;
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
}
.ng-modal.is-open { display: flex; }
.ng-modal-dialog {
    background: #fff;
    width: 100%; max-width: 500px;
    max-height: 92vh; overflow-y: auto;
    border-radius: var(--ng-radius-lg);
    box-shadow: var(--ng-shadow-xl);
    animation: ng-modal-in 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes ng-modal-in { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }
.ng-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--ng-border);
    background: var(--ng-bg-cream);
    border-radius: var(--ng-radius-lg) var(--ng-radius-lg) 0 0;
}
.ng-modal-title { font-weight: 700; font-size: 1.05rem; margin: 0; color: var(--ng-text); display: inline-flex; align-items: center; gap: 8px; }
.ng-modal-title-icon {
    width: 28px; height: 28px;
    background: var(--ng-primary);
    color: #fff;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.ng-modal-close {
    background: #fff; border: 1px solid var(--ng-border);
    width: 36px; height: 36px; padding: 0;
    border-radius: var(--ng-radius-sm);
    color: var(--ng-text);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--ng-trans);
}
.ng-modal-close:hover { background: var(--ng-primary-light); border-color: var(--ng-primary); color: var(--ng-primary); }
.ng-modal-body { padding: 24px 22px; }
.ng-modal-call-link {
    font-size: 0.85rem; color: var(--ng-primary); font-weight: 700;
    text-decoration: none; padding: 8px 12px;
    border-radius: var(--ng-radius-sm);
    background: var(--ng-primary-light);
    margin-right: 8px;
    transition: all var(--ng-trans);
}
.ng-modal-call-link:hover { background: var(--ng-primary); color: #fff; }

.ng-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.ng-progress-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--ng-border); transition: all var(--ng-trans); }
.ng-progress-dot.is-active { background: var(--ng-primary); }

.ng-step-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 6px; color: var(--ng-text); letter-spacing: -0.015em; }
.ng-step-sub { font-size: 0.88rem; color: var(--ng-text-muted); margin: 0 0 18px; }

.ng-tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ng-tile {
    background: #fff;
    border: 1.5px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 0.83rem; line-height: 1.3;
    color: var(--ng-text);
    font-family: inherit; font-weight: 500;
    transition: all var(--ng-trans);
}
.ng-tile:hover { border-color: var(--ng-primary); background: var(--ng-primary-lighter); transform: translateY(-2px); }
.ng-tile.is-selected {
    border-color: var(--ng-primary);
    background: var(--ng-primary-light);
    color: var(--ng-primary-dark);
    font-weight: 700;
    box-shadow: var(--ng-shadow-sm);
}
.ng-tile-icon { width: 28px; height: 28px; margin: 0 auto 8px; color: var(--ng-text-muted); transition: color var(--ng-trans); }
.ng-tile.is-selected .ng-tile-icon { color: var(--ng-primary); }

.ng-toggle-row { display: flex; gap: 6px; flex-wrap: wrap; }
.ng-toggle {
    flex: 1 1 calc(50% - 3px);
    padding: 11px 10px; font-size: 0.88rem;
    border: 1.5px solid var(--ng-border);
    background: #fff; border-radius: var(--ng-radius);
    cursor: pointer; font-family: inherit;
    color: var(--ng-text); font-weight: 500;
    transition: all var(--ng-trans);
}
.ng-toggle:hover { border-color: var(--ng-primary); background: var(--ng-primary-lighter); }
.ng-toggle.is-selected { background: var(--ng-primary); color: #fff; border-color: var(--ng-primary); font-weight: 700; }

.ng-field { margin-bottom: 14px; }
.ng-field-label { display: block; font-size: 0.85rem; color: var(--ng-text); margin-bottom: 7px; font-weight: 600; }
.ng-field-optional { color: var(--ng-text-light); font-weight: 400; font-size: 0.78rem; margin-left: 4px; }
.ng-field input, .ng-field textarea, .ng-modal input, .ng-modal textarea {
    width: 100%; padding: 12px 15px;
    border: 1.5px solid var(--ng-border-strong);
    border-radius: var(--ng-radius-sm);
    font-size: 0.95rem; font-family: inherit;
    background: #fff; color: var(--ng-text);
    transition: all var(--ng-trans);
}
.ng-field input:focus, .ng-field textarea:focus {
    outline: none; border-color: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-field textarea { resize: vertical; min-height: 60px; }
.ng-modal-back {
    background: none; border: none;
    padding: 14px 0 0;
    color: var(--ng-text-muted);
    font-size: 0.88rem; font-weight: 500;
    cursor: pointer; font-family: inherit;
    display: block; text-align: left;
}
.ng-modal-back:hover { color: var(--ng-primary); }

.ng-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
    color: var(--ng-success);
    display: flex; align-items: center; justify-content: center;
    margin: 8px auto 14px;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}
.ng-success-icon svg { width: 30px; height: 30px; }
.ng-summary {
    background: var(--ng-bg-soft);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 0.88rem;
}
.ng-summary-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--ng-border); }
.ng-summary-row:last-child { border-bottom: none; }
.ng-summary-row span:first-child { color: var(--ng-text-muted); font-weight: 500; }
.ng-summary-row span:last-child { color: var(--ng-text); font-weight: 600; text-transform: capitalize; }

.ng-modal-trust {
    background: var(--ng-bg-soft);
    padding: 12px 16px;
    display: flex; justify-content: space-around;
    font-size: 0.72rem;
    color: var(--ng-text-muted);
    border-top: 1px solid var(--ng-border);
    text-align: center;
    border-radius: 0 0 var(--ng-radius-lg) var(--ng-radius-lg);
}
.ng-modal-trust strong { display: block; color: var(--ng-text); font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }

/* PAGE CONTENT */
.ng-page { padding: 56px 0 80px; }
.ng-page-hero {
    background:
        radial-gradient(ellipse at top right, rgba(242, 84, 32, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, var(--ng-bg-soft) 100%);
    padding: 56px 0;
    border-bottom: 1px solid var(--ng-border);
}
.ng-breadcrumb { font-size: 0.85rem; color: var(--ng-text-muted); margin-bottom: 14px; }
.ng-breadcrumb a { color: var(--ng-text-muted); }
.ng-breadcrumb a:hover { color: var(--ng-primary); }
.ng-page-title { margin: 0; }
.ng-content { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; color: var(--ng-text); }
.ng-content h2, .ng-content h3 { margin-top: 1.6em; }
.ng-content img { border-radius: var(--ng-radius); margin: 1em 0; }
.ng-content ul, .ng-content ol { padding-left: 1.4em; }
.ng-content li { margin-bottom: 0.5em; }
.ng-content blockquote {
    border-left: 4px solid var(--ng-primary);
    padding: 1em 1.4em; margin: 1.5em 0;
    background: var(--ng-primary-lighter);
    border-radius: 0 var(--ng-radius) var(--ng-radius) 0;
    color: var(--ng-text);
}
.ng-content a { color: var(--ng-primary); font-weight: 500; }
.ng-content a:hover { text-decoration: underline; }

/* WIDGETS */
.widget {
    background: var(--ng-bg-soft);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 22px;
    margin-bottom: 20px;
}
.widget-title { font-size: 1rem; margin: 0 0 14px; font-weight: 700; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--ng-border); }
.widget li:last-child { border-bottom: none; }

/* SUBURB / SERVICE AREA PAGES */
.ng-suburb-hero {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(242, 84, 32, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%);
    padding: 56px 0 72px;
    overflow: hidden;
    border-bottom: 1px solid var(--ng-border);
}
.ng-suburb-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.ng-suburb-content > .ng-content { max-width: 100%; margin: 32px 0; }
.ng-suburb-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.ng-suburb-feature {
    display: flex; gap: 14px; align-items: start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    transition: all var(--ng-trans);
}
.ng-suburb-feature:hover { border-color: var(--ng-primary-light); box-shadow: var(--ng-shadow-sm); transform: translateY(-2px); }
.ng-suburb-feature-icon {
    width: 40px; height: 40px;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    border-radius: var(--ng-radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ng-suburb-feature h4 { margin: 0 0 4px; font-size: 0.98rem; font-weight: 700; }
.ng-suburb-feature p { margin: 0; color: var(--ng-text-muted); font-size: 0.85rem; line-height: 1.5; }

.ng-nearby-areas {
    background: var(--ng-bg-soft);
    padding: 64px 0;
    border-top: 1px solid var(--ng-border);
}
.ng-nearby-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px; max-width: 900px; margin: 32px auto 0;
}
.ng-nearby-card {
    background: #fff; padding: 16px;
    border-radius: var(--ng-radius);
    border: 1px solid var(--ng-border);
    color: var(--ng-text);
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.92rem;
    transition: all var(--ng-trans);
}
.ng-nearby-card:hover { border-color: var(--ng-primary); color: var(--ng-primary); transform: translateX(4px); box-shadow: var(--ng-shadow-sm); }
.ng-nearby-card svg { color: var(--ng-primary); }
@media (max-width: 900px) { .ng-suburb-grid { grid-template-columns: 1fr; gap: 32px; } }

/* FAQ */
.ng-faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.ng-faq-item {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 0;
    overflow: hidden;
    transition: all var(--ng-trans);
}
.ng-faq-item[open] { border-color: var(--ng-primary-light); box-shadow: var(--ng-shadow-sm); }
.ng-faq-q {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600; font-size: 1rem;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    color: var(--ng-text);
}
.ng-faq-q::-webkit-details-marker { display: none; }
.ng-faq-q::after {
    content: '+'; flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 600;
    transition: all var(--ng-trans);
}
.ng-faq-item[open] .ng-faq-q::after { content: '-'; background: var(--ng-primary); color: #fff; }
.ng-faq-a {
    padding: 0 22px 20px;
    color: var(--ng-text-muted);
    line-height: 1.7;
}

/* FOCUS */
:focus-visible { outline: 2px solid var(--ng-primary); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, .ng-btn:focus-visible { outline: 2px solid var(--ng-primary); outline-offset: 3px; }

/* SCROLL ANIMATIONS */
.ng-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1); }
.ng-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* PRINT */
@media print { .ng-trust-strip, .ng-mobile-bar, .ng-header-actions, .ng-final-cta, .ng-mobile-menu { display: none !important; } }

/* UTILS */
.ng-text-center { text-align: center; }
.ng-mt-md { margin-top: 24px; }
.ng-mt-lg { margin-top: 40px; }
/* Popular service cards, service detail pages and AI-ready content layout */
.ng-services-grid-popular {
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 22px;
}
.ng-service-card-popular {
    padding: 0;
    min-height: 100%;
}
.ng-service-card-top {
    padding: 28px 28px 14px;
}
.ng-service-kicker {
    margin: -2px 0 0;
    color: var(--ng-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}
.ng-service-bullets {
    list-style: none;
    padding: 0 28px 22px;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--ng-text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
}
.ng-service-bullets li {
    position: relative;
    padding-left: 24px;
}
.ng-service-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ng-primary);
    font-weight: 800;
}
.ng-service-card-popular .ng-service-link {
    margin: auto 28px 28px;
}
.ng-service-index-cta {
    text-align: center;
    max-width: 720px;
    margin: 52px auto 0;
    padding: 32px;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    background: linear-gradient(180deg, #fff 0%, var(--ng-bg-soft) 100%);
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-index-cta h3 { margin-bottom: 8px; }
.ng-service-index-cta p { color: var(--ng-text-muted); margin-bottom: 18px; }

.ng-service-hero {
    position: relative;
    padding: 64px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(242, 84, 32, 0.08) 0%, transparent 54%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%);
    border-bottom: 1px solid var(--ng-border);
}
.ng-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 56px;
    align-items: start;
}
.ng-service-hero-copy .ng-section-sub {
    max-width: 760px;
    margin-top: 18px;
}
.ng-service-hero-form {
    position: sticky;
    top: 104px;
}
.ng-service-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.ng-service-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ng-border);
    color: var(--ng-text-muted);
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-trust-row span::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ng-success);
}
.ng-service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.ng-service-detail-panel {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 34px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-detail-panel-soft {
    background: var(--ng-bg-soft);
}
.ng-check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}
.ng-check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ng-text-muted);
    line-height: 1.55;
}
.ng-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    font-size: 0.75rem;
    font-weight: 900;
}
.ng-service-steps-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}
.ng-service-mini-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}
.ng-service-mini-step strong {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ng-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--ng-shadow-orange);
}
.ng-service-mini-step p {
    margin: 0;
    color: var(--ng-text-muted);
    line-height: 1.6;
}
.ng-info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ng-info-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-info-card h3 { margin-bottom: 10px; }
.ng-info-card p {
    margin: 0;
    color: var(--ng-text-muted);
    line-height: 1.6;
}
.ng-related-services-grid {
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .ng-services-grid-popular { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ng-service-hero-grid,
    .ng-service-detail-grid,
    .ng-info-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ng-service-hero-form { position: static; }
}
@media (max-width: 560px) {
    .ng-services-grid-popular { grid-template-columns: 1fr; }
    .ng-service-card-top,
    .ng-service-detail-panel,
    .ng-info-card,
    .ng-service-index-cta { padding: 24px; }
    .ng-service-bullets { padding-left: 24px; padding-right: 24px; }
    .ng-service-card-popular .ng-service-link { margin-left: 24px; margin-right: 24px; }
    .ng-service-hero { padding: 44px 0 56px; }
    .ng-service-trust-row span { width: 100%; justify-content: flex-start; }
}

/* SERVICE CARDS v2 */
.ng-services-grid-detailed {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.ng-service-card-detailed {
    min-height: 100%;
    padding: 30px 28px;
}
.ng-service-kicker {
    color: var(--ng-primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
    margin: -2px 0 16px;
    line-height: 1.4;
}
.ng-service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 9px;
    color: var(--ng-text-muted);
    font-size: 0.92rem;
    line-height: 1.48;
    flex: 1;
}
.ng-service-points li {
    position: relative;
    padding-left: 22px;
}
.ng-service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-services-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ng-service-card-compact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
}
.ng-service-card-compact .ng-service-icon { margin: 0; }
.ng-service-card-compact .ng-service-link { grid-column: 1 / -1; margin-top: 4px; }
.ng-service-choice-card {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, var(--ng-primary-lighter) 100%);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    padding: 42px;
    box-shadow: var(--ng-shadow-lg);
}
.ng-service-choice-card p {
    color: var(--ng-text-muted);
    margin: 0;
    max-width: 680px;
}
.ng-service-choice-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* SERVICE DETAIL PAGES */
.ng-page-hero-rich .ng-section-sub {
    max-width: 780px;
    margin-top: 16px;
}
.ng-service-hero {
    background:
        radial-gradient(ellipse at top right, rgba(242, 84, 32, 0.08) 0%, transparent 54%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%);
    padding: 58px 0 72px;
    border-bottom: 1px solid var(--ng-border);
    overflow: hidden;
}
.ng-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 52px;
    align-items: center;
}
.ng-service-hero-copy .ng-section-sub {
    margin: 18px 0 28px;
    max-width: 760px;
}
.ng-service-quick-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    padding: 30px;
    box-shadow: var(--ng-shadow-xl);
    position: relative;
    overflow: hidden;
}
.ng-service-quick-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
}
.ng-service-quick-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ng-primary);
    background: var(--ng-primary-light);
    border-radius: var(--ng-radius-lg);
    margin-bottom: 18px;
}
.ng-service-quick-icon svg { width: 32px; height: 32px; }
.ng-service-points-large { font-size: 0.98rem; }
.ng-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.ng-feature-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 110px;
    box-shadow: var(--ng-shadow-sm);
    transition: transform var(--ng-trans), box-shadow var(--ng-trans), border-color var(--ng-trans);
}
.ng-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ng-shadow);
    border-color: var(--ng-primary-light);
}
.ng-feature-card p {
    margin: 0;
    color: var(--ng-text-muted);
    line-height: 1.6;
    font-weight: 500;
}
.ng-feature-check {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ng-success);
    box-shadow: inset 0 0 0 6px #dcfce7;
    margin-top: 3px;
}
.ng-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}
.ng-process-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 26px 22px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-process-card .ng-step-number { margin: 0 0 16px; }
.ng-process-card p {
    color: var(--ng-text-muted);
    margin: 0;
    line-height: 1.62;
    font-weight: 500;
}
.ng-service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 50px;
    align-items: start;
}
.ng-service-content-grid p {
    color: var(--ng-text-muted);
    font-size: 1.05rem;
    line-height: 1.72;
}
.ng-service-proof-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}
.ng-service-proof-list li {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 14px 16px 14px 44px;
    position: relative;
    color: var(--ng-text);
    font-weight: 650;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-proof-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ng-success);
    transform: translateY(-50%);
}
@media (max-width: 920px) {
    .ng-service-hero-grid,
    .ng-service-content-grid,
    .ng-service-choice-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ng-service-choice-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
    .ng-service-hero { padding: 38px 0 52px; }
    .ng-service-quick-card,
    .ng-service-choice-card { padding: 24px; }
    .ng-service-card-detailed { padding: 24px; }
    .ng-service-choice-actions .ng-btn { width: 100%; }
}

/* ROUND 2: service cards, service pages and SEO landing pages */
.ng-section-head-tight { margin-bottom: 34px; }
.ng-page-hero-sub { max-width: 760px; margin-top: 14px; }
.ng-content-intro { margin-bottom: 48px; }

.ng-services-grid-popular { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.ng-services-grid-related { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.ng-service-kicker {
    display: inline-flex;
    color: var(--ng-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ng-service-bullets {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 9px;
    color: var(--ng-text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}
.ng-service-bullets li,
.ng-check-list li {
    position: relative;
    padding-left: 22px;
}
.ng-service-bullets li::before,
.ng-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-service-card .ng-service-desc { flex: 0; margin-bottom: 16px; }
.ng-service-card .ng-service-link { margin-top: auto; }
.ng-service-icon-large { width: 64px; height: 64px; margin-bottom: 18px; }
.ng-service-icon-large svg { width: 32px; height: 32px; }

.ng-service-hero {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(242, 84, 32, 0.1) 0%, transparent 52%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%);
    padding: 58px 0 74px;
    border-bottom: 1px solid var(--ng-border);
    overflow: hidden;
}
.ng-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
}
.ng-service-hero-copy .ng-section-sub { max-width: 720px; margin-top: 16px; }
.ng-service-hero-card,
.ng-info-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    box-shadow: var(--ng-shadow-lg);
    padding: 30px;
}
.ng-service-hero-card h2,
.ng-info-card h3 { font-size: 1.35rem; margin-bottom: 16px; }

.ng-split-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 46px;
    align-items: start;
}
.ng-rich-copy { font-size: 1.06rem; line-height: 1.78; color: var(--ng-text); }
.ng-rich-copy p { color: var(--ng-text-muted); }
.ng-content-extra { max-width: 100%; margin-top: 30px; }
.ng-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    color: var(--ng-text-muted);
    line-height: 1.55;
}

.ng-feature-grid,
.ng-signs-grid,
.ng-process-grid,
.ng-area-region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}
.ng-feature-card,
.ng-sign-card,
.ng-process-card,
.ng-area-region-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 22px;
    box-shadow: var(--ng-shadow-sm);
    transition: all var(--ng-trans);
}
.ng-feature-card:hover,
.ng-sign-card:hover,
.ng-process-card:hover,
.ng-area-region-card:hover {
    transform: translateY(-3px);
    border-color: var(--ng-primary-light);
    box-shadow: var(--ng-shadow);
}
.ng-feature-card { display: flex; gap: 14px; align-items: flex-start; }
.ng-feature-card p,
.ng-sign-card p,
.ng-process-card p { margin: 0; color: var(--ng-text-muted); }
.ng-feature-check,
.ng-process-number {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    font-weight: 800;
}
.ng-sign-card { color: var(--ng-text-muted); line-height: 1.55; }
.ng-process-card { position: relative; }
.ng-process-number { margin-bottom: 16px; }
.ng-process-card h3 { margin-bottom: 8px; }

.ng-area-region-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--ng-primary);
}
.ng-area-region-card ul { list-style: none; padding: 0; margin: 0; }
.ng-area-region-card li + li { border-top: 1px solid var(--ng-bg-alt); }
.ng-area-region-card a {
    color: var(--ng-text);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 600;
}
.ng-area-region-card a:hover { color: var(--ng-primary); }
.ng-area-region-card a svg { color: var(--ng-primary); flex-shrink: 0; }
.ng-area-region-arrow { margin-left: auto; color: var(--ng-text-light) !important; }
.ng-sticky-card { position: sticky; top: 100px; }
.ng-final-cta-compact { padding: 48px 0; }
.ng-final-cta-compact h2 { font-size: 1.6rem; }
.ng-final-cta-compact p { font-size: 1rem; }

@media (max-width: 960px) {
    .ng-service-hero-grid,
    .ng-split-content { grid-template-columns: 1fr; gap: 30px; }
    .ng-sticky-card { position: relative; top: auto; }
    .ng-service-hero { padding: 48px 0 58px; }
}
@media (max-width: 640px) {
    .ng-services-grid-popular { grid-template-columns: 1fr; }
    .ng-service-card,
    .ng-service-hero-card,
    .ng-info-card { padding: 22px; }
    .ng-feature-grid,
    .ng-signs-grid,
    .ng-process-grid,
    .ng-area-region-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ROUND 3 FINAL: service cards, wider layout, service pages,
   about page, local pages and booking feedback
   ========================================================= */
:root { --ng-container: 1320px; }

.ng-section-head { max-width: 860px; }
.ng-section-note {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--ng-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ng-services-grid-popular {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.ng-service-card-popular {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--ng-border);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.ng-service-card-popular::before {
    height: 4px;
    transform: none;
    opacity: 0.14;
    background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
}
.ng-service-card-popular:hover::before { opacity: 1; }
.ng-service-card-popular:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(15,23,42,0.10); }
.ng-service-card-popular .ng-service-card-top {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.ng-service-heading-wrap,
.ng-service-card-heading { min-width: 0; }
.ng-service-card-popular .ng-service-title {
    margin: 0 0 6px;
    font-size: 1.12rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.ng-service-card-popular .ng-service-kicker {
    display: block;
    margin: 0;
    color: var(--ng-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
}
.ng-service-card-popular .ng-service-icon {
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 14px;
    flex-shrink: 0;
}
.ng-service-card-popular .ng-service-icon svg { width: 23px; height: 23px; }
.ng-service-card-popular .ng-service-bullets {
    padding: 0;
    margin: 0 0 22px;
    gap: 9px;
    font-size: 0.9rem;
    line-height: 1.45;
}
.ng-service-card-popular .ng-service-bullets li { padding-left: 20px; }
.ng-service-card-popular .ng-service-bullets li::before {
    top: 0.6em;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-service-card-popular .ng-service-link {
    margin: auto 0 0;
    padding-top: 4px;
    font-weight: 800;
}

.ng-service-hero-grid-visual,
.ng-about-hero-grid,
.ng-suburb-grid-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
    align-items: center;
}
.ng-service-hero-aside,
.ng-suburb-aside { display: grid; gap: 18px; }
.ng-service-visual-card,
.ng-about-visual-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 22px 60px rgba(15,23,42,0.10);
    overflow: hidden;
}
.ng-service-visual-card img,
.ng-about-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}
.ng-service-hero-form { box-shadow: 0 14px 36px rgba(15,23,42,0.10); }
.ng-service-copy-split { align-items: start; }
.ng-rich-copy p { color: var(--ng-text-muted); font-size: 1.03rem; line-height: 1.75; }
.ng-rich-copy p + p { margin-top: 14px; }

.ng-signs-grid,
.ng-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ng-sign-card,
.ng-process-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-sign-card span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ng-primary);
    background: var(--ng-primary-light);
    border-radius: 14px;
    margin-bottom: 14px;
}
.ng-sign-card span svg { width: 22px; height: 22px; }
.ng-sign-card p,
.ng-process-card p { margin: 0; color: var(--ng-text-muted); line-height: 1.62; }
.ng-process-card strong {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ng-primary);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: var(--ng-shadow-orange);
}
.ng-process-stack { display: grid; gap: 16px; }
.ng-service-inline-cta {
    margin: 34px auto 0;
    max-width: 920px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--ng-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-inline-cta h3 { margin: 0 0 4px; }
.ng-service-inline-cta p { margin: 0; color: var(--ng-text-muted); }

.ng-info-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ng-related-services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: none; }
.ng-service-card-compact { padding: 24px; }
.ng-service-card-compact .ng-service-icon { margin-bottom: 14px; }
.ng-service-card-compact .ng-service-title { margin-bottom: 8px; }
.ng-service-card-compact .ng-service-desc { font-size: 0.9rem; }

.ng-about-hero { overflow: hidden; }
.ng-about-proof-card { align-self: start; }
.ng-suburb-grid-visual .ng-suburb-features { margin-top: 30px; }
.ng-suburb-feature-icon svg { width: 20px; height: 20px; }
.ng-area-region-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ng-nearby-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ng-form-error {
    display: block;
    padding: 10px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}
.ng-form-error[hidden] { display: none; }

@media (max-width: 1180px) {
    .ng-services-grid-popular,
    .ng-signs-grid,
    .ng-process-grid,
    .ng-related-services-grid,
    .ng-area-region-grid,
    .ng-nearby-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
    .ng-service-hero-grid-visual,
    .ng-about-hero-grid,
    .ng-suburb-grid-visual { grid-template-columns: 1fr; gap: 32px; }
    .ng-info-card-grid { grid-template-columns: 1fr; }
    .ng-service-hero-aside,
    .ng-suburb-aside { max-width: 640px; width: 100%; }
    .ng-service-inline-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 780px) {
    .ng-services-grid-popular,
    .ng-signs-grid,
    .ng-process-grid,
    .ng-related-services-grid,
    .ng-area-region-grid,
    .ng-nearby-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    :root { --ng-container: 100%; }
    .ng-container { padding-left: 18px; padding-right: 18px; }
    .ng-services-grid-popular,
    .ng-signs-grid,
    .ng-process-grid,
    .ng-related-services-grid,
    .ng-area-region-grid,
    .ng-nearby-grid { grid-template-columns: 1fr; }
    .ng-service-card-popular,
    .ng-sign-card,
    .ng-process-card,
    .ng-service-inline-cta { padding: 22px; }
    .ng-service-card-popular .ng-service-card-top { gap: 12px; }
    .ng-service-card-popular .ng-service-icon { width: 42px; height: 42px; }
}

/* ROUND 3 DEPLOY POLISH */
:root { --ng-container: 1320px; }
.ng-section-head { max-width: 820px; }
.ng-section-note {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--ng-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ng-services-grid-popular {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.ng-service-card-popular {
    padding: 26px;
    min-height: 100%;
    overflow: hidden;
    color: var(--ng-text);
    text-decoration: none;
}
.ng-service-card-popular::before { display: none; }
.ng-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
    padding: 0;
}
.ng-service-heading-wrap { min-width: 0; }
.ng-service-card-popular .ng-service-title {
    margin: 0 0 7px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.ng-service-card-popular .ng-service-kicker {
    display: block;
    margin: 0;
    color: var(--ng-text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
}
.ng-service-card-popular .ng-service-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin: 0;
    border-radius: 14px;
}
.ng-service-card-popular .ng-service-icon svg { width: 23px; height: 23px; }
.ng-service-card-popular .ng-service-bullets {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 9px;
    color: var(--ng-text-muted);
    font-size: 0.9rem;
    line-height: 1.46;
    flex: 1;
}
.ng-service-card-popular .ng-service-bullets li {
    position: relative;
    padding-left: 20px;
}
.ng-service-card-popular .ng-service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-service-card-popular .ng-service-link {
    margin: auto 0 0;
    color: var(--ng-primary);
}

.ng-service-hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    gap: 52px;
}
.ng-service-hero-aside { display: grid; gap: 22px; }
.ng-service-visual-card,
.ng-about-visual-card,
.ng-area-visual-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    padding: 20px;
    box-shadow: var(--ng-shadow-lg);
    overflow: hidden;
}
.ng-service-visual-card img,
.ng-about-visual-card img,
.ng-area-visual-card img {
    width: 100%;
    border-radius: 20px;
    background: var(--ng-primary-lighter);
}
.ng-service-copy-split { align-items: stretch; }
.ng-outcome-panel { height: 100%; }
.ng-service-inline-cta {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(242,84,32,0.22);
    border-radius: var(--ng-radius-lg);
    background: #fff;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-inline-cta h3 { margin: 0 0 4px; }
.ng-service-inline-cta p { margin: 0; color: var(--ng-text-muted); }
.ng-service-card-compact {
    min-height: 100%;
    padding: 24px;
}
.ng-service-card-compact .ng-service-desc { color: var(--ng-text-muted); }

.ng-about-hero-grid,
.ng-about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 52px;
    align-items: center;
}
.ng-about-proof-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-xl);
    padding: 30px;
    box-shadow: var(--ng-shadow-lg);
}
.ng-about-proof-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.ng-about-proof-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.ng-about-proof-list strong { color: var(--ng-primary); }
.ng-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ng-about-value-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 24px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-about-value-card h3 { font-size: 1.08rem; }
.ng-about-value-card p { color: var(--ng-text-muted); margin: 0; }

.ng-area-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 52px;
    align-items: center;
}
.ng-local-problem-grid,
.ng-local-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ng-local-problem-card,
.ng-local-process-card,
.ng-local-link-card {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 22px;
    box-shadow: var(--ng-shadow-sm);
}
.ng-local-problem-card h3,
.ng-local-process-card h3,
.ng-local-link-card h3 { font-size: 1.05rem; }
.ng-local-problem-card p,
.ng-local-process-card p,
.ng-local-link-card p { color: var(--ng-text-muted); margin: 0; }
.ng-local-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.ng-local-link-card { color: var(--ng-text); text-decoration: none; }
.ng-local-link-card:hover { color: var(--ng-text); border-color: var(--ng-primary); transform: translateY(-3px); box-shadow: var(--ng-shadow); }
.ng-local-link-card span { color: var(--ng-primary); font-weight: 700; font-size: 0.9rem; }

.ng-form-error {
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: rgba(220, 38, 38, 0.06);
    color: #991B1B;
    border-radius: var(--ng-radius-sm);
    padding: 10px 12px;
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.45;
}
.ng-form-error[hidden] { display: none; }

@media (max-width: 1180px) {
    .ng-services-grid-popular,
    .ng-about-values-grid,
    .ng-local-problem-grid,
    .ng-local-process-grid,
    .ng-local-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
    .ng-service-hero-grid,
    .ng-about-hero-grid,
    .ng-about-story-grid,
    .ng-area-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .ng-service-inline-cta { flex-direction: column; align-items: flex-start; }
    .ng-service-inline-cta .ng-btn { width: 100%; }
}
@media (max-width: 640px) {
    :root { --ng-container: 100%; }
    .ng-container { padding-left: 18px; padding-right: 18px; }
    .ng-services-grid-popular,
    .ng-about-values-grid,
    .ng-local-problem-grid,
    .ng-local-process-grid,
    .ng-local-link-grid { grid-template-columns: 1fr; }
    .ng-service-card-popular { padding: 22px; }
    .ng-service-card-top { gap: 12px; }
}

/* ROUND 3 deployment polish */
:root {
    --ng-container: 1320px;
}

.ng-container {
    width: 100%;
    max-width: var(--ng-container);
    padding-left: clamp(18px, 3vw, 34px);
    padding-right: clamp(18px, 3vw, 34px);
}

.ng-section {
    padding-top: clamp(64px, 7vw, 96px);
    padding-bottom: clamp(64px, 7vw, 96px);
}

.ng-section-head {
    max-width: 860px;
    margin-bottom: 44px;
}

.ng-section-head-tight {
    margin-bottom: 34px;
}

.ng-section-note {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--ng-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ng-page-hero-sub {
    max-width: 800px;
}

.ng-services-grid-popular {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px;
    align-items: stretch;
}

.ng-service-card,
.ng-service-card-popular {
    min-width: 0;
    overflow: hidden;
}

.ng-service-card-popular {
    padding: 0 !important;
    border-radius: 24px;
    border: 1px solid var(--ng-border);
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    isolation: isolate;
}

.ng-service-card-popular::before {
    height: 4px;
    transform: none;
    opacity: 1;
    background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
}

.ng-service-card-popular:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 84, 32, 0.35);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.ng-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 30px 24px 14px !important;
}

.ng-service-heading-wrap {
    min-width: 0;
    flex: 1 1 auto;
}

.ng-service-card-popular .ng-service-title {
    margin: 0 0 6px;
    font-size: clamp(1rem, 1.1vw, 1.16rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--ng-text);
}

.ng-service-card-popular .ng-service-kicker {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    color: var(--ng-text-muted);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
}

.ng-service-card-popular .ng-service-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 16px;
}

.ng-service-card-popular .ng-service-icon svg {
    width: 24px;
    height: 24px;
}

.ng-service-card-popular .ng-service-bullets {
    list-style: none;
    margin: 0;
    padding: 0 24px 20px !important;
    display: grid;
    gap: 8px;
    color: var(--ng-text-muted);
    font-size: 0.88rem;
    line-height: 1.48;
    flex: 1 1 auto;
}

.ng-service-card-popular .ng-service-bullets li {
    position: relative;
    padding-left: 18px;
}

.ng-service-card-popular .ng-service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ng-primary);
    box-shadow: none;
}

.ng-service-card-popular .ng-service-link {
    margin: auto 24px 24px !important;
    padding-top: 14px;
    border-top: 1px solid var(--ng-border);
    font-weight: 800;
    color: var(--ng-primary);
}

.ng-service-hero-grid-visual,
.ng-about-hero-grid,
.ng-suburb-grid-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(34px, 5vw, 66px);
    align-items: center;
}

.ng-service-hero-aside,
.ng-suburb-aside {
    display: grid;
    gap: 18px;
    align-self: start;
}

.ng-service-visual-card,
.ng-about-visual-card {
    margin: 0;
    padding: clamp(16px, 2.2vw, 26px);
    border-radius: 30px;
    border: 1px solid rgba(242, 84, 32, 0.18);
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 184, 0, 0.18), transparent 32%),
        linear-gradient(145deg, #fff 0%, #fff8f3 100%);
    box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.ng-service-visual-card img,
.ng-about-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.ng-mini-form {
    background: #fff;
    border: 1px solid var(--ng-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.ng-mini-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--ng-text);
    font-weight: 800;
}

.ng-mini-form-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
}

.ng-mini-form-icon svg {
    width: 22px;
    height: 22px;
}

.ng-callback-form {
    display: grid;
    gap: 12px;
}

.ng-callback-form input,
.ng-callback-form textarea,
.ng-field input,
.ng-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--ng-border);
    border-radius: 14px;
    background: #fff;
    color: var(--ng-text);
    font: inherit;
    padding: 12px 14px;
}

.ng-callback-form input:focus,
.ng-callback-form textarea:focus,
.ng-field input:focus,
.ng-field textarea:focus {
    outline: none;
    border-color: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}

.ng-form-tiny {
    margin: 2px 0 0;
    color: var(--ng-text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.ng-form-error {
    display: block;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-size: 0.9rem;
    line-height: 1.45;
}

.ng-form-error[hidden] {
    display: none;
}

.ng-split-content,
.ng-service-copy-split {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: clamp(30px, 4.5vw, 58px);
    align-items: start;
}

.ng-rich-copy p {
    color: var(--ng-text-muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

.ng-service-detail-grid,
.ng-info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ng-info-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ng-service-detail-panel,
.ng-info-card,
.ng-feature-card,
.ng-sign-card,
.ng-process-card,
.ng-area-region-card,
.ng-local-problem-card,
.ng-local-process-card {
    border-radius: 22px;
    border: 1px solid var(--ng-border);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.ng-service-detail-panel,
.ng-info-card {
    padding: clamp(24px, 3vw, 34px);
}

.ng-service-detail-panel-soft {
    background: linear-gradient(180deg, var(--ng-primary-lighter), #fff);
}

.ng-check-list li::before,
.ng-service-bullets li::before {
    line-height: 1;
}

.ng-signs-grid,
.ng-local-problem-grid,
.ng-local-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ng-sign-card,
.ng-local-problem-card,
.ng-local-process-card {
    padding: 24px;
}

.ng-sign-card span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    margin-bottom: 14px;
}

.ng-sign-card span svg {
    width: 22px;
    height: 22px;
}

.ng-sign-card p,
.ng-local-problem-card p,
.ng-local-process-card p {
    margin: 0;
    color: var(--ng-text-muted);
    line-height: 1.65;
}

.ng-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ng-process-card > strong,
.ng-local-process-card h3::first-letter {
    color: inherit;
}

.ng-process-card > strong {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ng-primary);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
    box-shadow: var(--ng-shadow-orange);
}

.ng-service-inline-cta {
    margin-top: 34px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(242, 84, 32, 0.22);
    background: linear-gradient(135deg, #fff 0%, var(--ng-primary-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--ng-shadow-sm);
}

.ng-service-inline-cta h3,
.ng-service-inline-cta p {
    margin: 0;
}

.ng-service-inline-cta p {
    color: var(--ng-text-muted);
    margin-top: 6px;
}

.ng-related-services-grid {
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.ng-service-card-compact {
    grid-template-columns: 48px 1fr;
    padding: 24px !important;
}

.ng-service-card-compact .ng-service-desc {
    grid-column: 1 / -1;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ng-process-stack {
    display: grid;
    gap: 16px;
}

.ng-about-proof-card {
    border-color: rgba(242, 84, 32, 0.22);
    background: linear-gradient(180deg, #fff 0%, var(--ng-primary-lighter) 100%);
}

.ng-area-region-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ng-area-region-card {
    padding: 24px;
}

.ng-area-region-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.ng-area-region-card a {
    min-height: 42px;
}

.ng-suburb-hero {
    padding: clamp(58px, 7vw, 88px) 0 clamp(60px, 7vw, 94px);
    background:
        radial-gradient(ellipse at top left, rgba(242, 84, 32, 0.10), transparent 45%),
        linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%);
    border-bottom: 1px solid var(--ng-border);
}

.ng-suburb-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.ng-suburb-feature {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--ng-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ng-shadow-sm);
}

.ng-suburb-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--ng-primary-light);
    color: var(--ng-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ng-suburb-feature-icon svg {
    width: 22px;
    height: 22px;
}

.ng-suburb-feature h4 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.ng-suburb-feature p {
    margin: 0;
    color: var(--ng-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.ng-nearby-areas {
    padding: clamp(54px, 6vw, 78px) 0;
    background: var(--ng-bg-soft);
}

.ng-nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ng-nearby-card {
    min-width: 0;
}

.ng-sticky-card {
    position: sticky;
    top: 100px;
}

@media (max-width: 1180px) {
    .ng-services-grid-popular,
    .ng-related-services-grid,
    .ng-signs-grid,
    .ng-local-problem-grid,
    .ng-local-process-grid,
    .ng-area-region-grid,
    .ng-nearby-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ng-service-hero-grid-visual,
    .ng-about-hero-grid,
    .ng-suburb-grid-visual,
    .ng-split-content,
    .ng-service-copy-split {
        grid-template-columns: 1fr;
    }

    .ng-sticky-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .ng-section-head {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .ng-services-grid-popular,
    .ng-related-services-grid,
    .ng-signs-grid,
    .ng-local-problem-grid,
    .ng-local-process-grid,
    .ng-area-region-grid,
    .ng-nearby-grid,
    .ng-service-detail-grid,
    .ng-info-card-grid,
    .ng-process-grid,
    .ng-suburb-features {
        grid-template-columns: 1fr !important;
    }

    .ng-service-card-top {
        padding: 26px 22px 12px !important;
    }

    .ng-service-card-popular .ng-service-bullets {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .ng-service-card-popular .ng-service-link {
        margin-left: 22px !important;
        margin-right: 22px !important;
    }

    .ng-service-inline-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
    }

    .ng-hero-actions,
    .ng-hero-actions-center {
        flex-direction: column;
        align-items: stretch;
    }

    .ng-hero-actions .ng-btn {
        width: 100%;
    }
}

.ng-local-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ng-local-link-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--ng-border);
    background: #fff;
    color: var(--ng-text);
    box-shadow: var(--ng-shadow-sm);
    transition: transform var(--ng-trans), border-color var(--ng-trans), box-shadow var(--ng-trans);
}

.ng-local-link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 84, 32, 0.35);
    box-shadow: var(--ng-shadow);
    color: var(--ng-text);
}

.ng-local-link-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.ng-local-link-card p {
    color: var(--ng-text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.ng-local-link-card span {
    margin-top: auto;
    color: var(--ng-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .ng-local-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ng-local-link-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   NetGeeks production polish v4
   ========================================================= */
:root { --ng-container: 1360px; }

.ng-container { max-width: var(--ng-container); }

.ng-section-head h2 { text-wrap: balance; }
.ng-section-sub, .ng-section-note, .ng-page-hero-sub { text-wrap: pretty; }

/* Mobile submenu fix */
.ng-mobile-nav .menu-item-has-children {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    column-gap: 4px;
}
.ng-mobile-nav .menu-item-has-children > a {
    grid-column: 1;
}
.ng-mobile-nav .menu-item-has-children > a::after {
    display: none;
}
.ng-submenu-toggle {
    grid-column: 2;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ng-border);
    background: var(--ng-bg-soft);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background var(--ng-trans), border-color var(--ng-trans), transform var(--ng-trans);
}
.ng-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--ng-text-muted);
    border-bottom: 2px solid var(--ng-text-muted);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform var(--ng-trans), border-color var(--ng-trans);
}
.ng-submenu-toggle:hover {
    background: var(--ng-primary-light);
    border-color: rgba(242, 84, 32, 0.28);
}
.ng-submenu-toggle:hover span { border-color: var(--ng-primary); }
.ng-mobile-nav .menu-item-has-children.is-submenu-open > .ng-submenu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
}
.ng-mobile-nav .menu-item-has-children > .sub-menu {
    grid-column: 1 / -1;
    display: none;
    margin-left: 0;
    padding: 8px 0 8px 14px;
    border-left: 2px solid var(--ng-primary-light);
}
.ng-mobile-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    display: grid;
    gap: 2px;
}
.ng-mobile-nav .sub-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
}

/* Popular services: clean 4-card desktop grid */
.ng-services-grid-popular {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 26px !important;
    align-items: stretch;
}
.ng-service-card-popular {
    border-radius: 24px !important;
    border: 1px solid var(--ng-border) !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055) !important;
}
.ng-service-card-popular::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 4px;
    transform: none !important;
    background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
    opacity: 0.9;
}
.ng-service-card-top {
    padding: 32px 24px 14px !important;
    gap: 14px !important;
}
.ng-service-heading-wrap { min-width: 0; }
.ng-service-card-popular .ng-service-title {
    margin: 0 0 7px !important;
    font-size: clamp(1.02rem, 0.98vw, 1.13rem) !important;
    line-height: 1.24 !important;
    word-break: normal;
    overflow-wrap: anywhere;
}
.ng-service-card-popular .ng-service-kicker {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
}
.ng-service-card-popular .ng-service-icon {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
}
.ng-service-card-popular .ng-service-bullets {
    padding: 0 24px 20px !important;
    margin: 0 !important;
    gap: 8px !important;
}
.ng-service-card-popular .ng-service-link {
    margin: auto 24px 24px !important;
    padding-top: 15px !important;
    border-top: 1px solid var(--ng-border) !important;
}

/* Service page spacing and internal links */
.ng-service-hero .ng-service-trust-row { margin-bottom: 0; }
.ng-service-hero .ng-hero-actions,
.ng-final-cta .ng-hero-actions,
.ng-final-cta .ng-hero-actions-center {
    margin-top: 26px;
    margin-bottom: 0;
    gap: 16px;
}
.ng-copy-linkline {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--ng-bg-soft);
    border: 1px solid var(--ng-border);
    color: var(--ng-text-muted);
}
.ng-copy-linkline a,
.ng-service-path-card a,
.ng-article-related-links a {
    font-weight: 800;
    color: var(--ng-primary);
}
.ng-service-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.ng-service-path-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--ng-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ng-shadow-sm);
}
.ng-service-path-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.ng-service-path-card p {
    color: var(--ng-text-muted);
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Contact page */
.ng-contact-hero { background: linear-gradient(180deg, var(--ng-bg-cream) 0%, #fff 100%); }
.ng-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 48px;
    align-items: start;
}
.ng-contact-form-panel {
    padding: 34px;
    border: 1px solid var(--ng-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--ng-shadow-lg);
}
.ng-contact-form-panel > p { color: var(--ng-text-muted); margin-bottom: 24px; }
.ng-contact-form { max-width: none; box-shadow: none; border: 0; padding: 0; background: transparent; }
.ng-form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.ng-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    font: inherit;
    color: var(--ng-text);
    background: #fff;
}
.ng-field select:focus,
.ng-field input:focus,
.ng-field textarea:focus {
    outline: none;
    border-color: var(--ng-primary);
    box-shadow: 0 0 0 4px var(--ng-primary-light);
}
.ng-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}
.ng-contact-side {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 100px;
}
.ng-contact-card {
    padding: 24px;
    border: 1px solid var(--ng-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ng-shadow-sm);
}
.ng-contact-card-primary {
    background: linear-gradient(180deg, var(--ng-primary-lighter) 0%, #fff 100%);
    border-color: rgba(242, 84, 32, 0.20);
}
.ng-contact-card .ng-btn + .ng-btn { margin-top: 10px; }
.ng-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ng-contact-list li { display: grid; gap: 4px; }
.ng-contact-list strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ng-text-muted); }
.ng-contact-list a, .ng-contact-list span { color: var(--ng-text); font-weight: 700; word-break: break-word; }
.ng-contact-link-list { display: grid; gap: 8px; }
.ng-contact-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border: 1px solid var(--ng-border);
    border-radius: 12px;
    color: var(--ng-text);
    font-weight: 700;
}
.ng-contact-link-list a:hover { color: var(--ng-primary); border-color: rgba(242, 84, 32, 0.30); background: var(--ng-primary-lighter); }

/* Blog images and articles */
.ng-post-card-img img,
.ng-post-asset-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ng-article-hero-img {
    margin: 0 0 28px;
}
.ng-article-hero-img img,
.ng-single-post-asset img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--ng-border);
    box-shadow: var(--ng-shadow);
}
.ng-article-lead {
    font-size: 1.14rem;
    line-height: 1.75;
    color: var(--ng-text);
    font-weight: 550;
}
.ng-article-tip-box,
.ng-article-cta-box {
    margin: 30px 0;
    padding: 26px;
    border-radius: 22px;
    border: 1px solid var(--ng-border);
    background: var(--ng-bg-soft);
}
.ng-article-cta-box {
    background: linear-gradient(135deg, #fff 0%, var(--ng-primary-lighter) 100%);
    border-color: rgba(242, 84, 32, 0.22);
}
.ng-article-tip-box ul,
.ng-article-related-links {
    margin-bottom: 0;
}
.ng-article-related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding-left: 18px;
}

@media (max-width: 1180px) {
    .ng-services-grid-popular,
    .ng-service-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .ng-contact-grid { grid-template-columns: 1fr; }
    .ng-contact-side { position: static; }
}
@media (max-width: 760px) {
    :root { --ng-container: 100%; }
    .ng-services-grid-popular,
    .ng-service-path-grid,
    .ng-form-row-2,
    .ng-article-related-links {
        grid-template-columns: 1fr !important;
    }
    .ng-contact-form-panel { padding: 24px; border-radius: 22px; }
    .ng-service-card-top { padding: 28px 22px 12px !important; }
    .ng-service-card-popular .ng-service-bullets { padding: 0 22px 18px !important; }
    .ng-service-card-popular .ng-service-link { margin: auto 22px 22px !important; }
}

/* BLOG REFINEMENTS v5 */
.ng-blog-single-hero .ng-page-title { max-width: 900px; }
.ng-post-meta-pills,
.ng-post-card-pills { display:flex; gap:10px; flex-wrap:wrap; margin:0 0 14px; }
.ng-post-pill { display:inline-flex; align-items:center; padding:8px 14px; border-radius:999px; background:var(--ng-primary-lighter); color:var(--ng-primary-dark); border:1px solid rgba(242, 84, 32, 0.18); font-size:0.84rem; font-weight:700; line-height:1; }
.ng-post-meta-row { display:flex; gap:16px; flex-wrap:wrap; margin-top:16px; color:var(--ng-text-muted); font-size:0.96rem; }
.ng-post-card { display:flex; flex-direction:column; }
.ng-post-card-body { display:flex; flex-direction:column; gap:10px; height:100%; }
.ng-post-card-body p { flex:1; }
.ng-text-link { display:inline-flex; align-items:center; gap:8px; color:var(--ng-primary); font-weight:700; }
.ng-text-link:hover { color:var(--ng-primary-dark); }
.ng-article-layout { display:grid; grid-template-columns:minmax(0, 1fr) 320px; gap:42px; align-items:start; }
.ng-article-main { max-width:none; }
.ng-article-hero-media { margin-bottom:28px; }
.ng-article-prose { font-size:1.06rem; line-height:1.85; }
.ng-article-prose p { margin:0 0 1.18em; }
.ng-article-prose h2 { font-size:1.72rem; line-height:1.25; margin-top:2em; margin-bottom:0.72em; }
.ng-article-prose h3 { font-size:1.3rem; line-height:1.35; margin-top:1.7em; margin-bottom:0.6em; }
.ng-article-prose ul,.ng-article-prose ol { margin:0 0 1.2em; }
.ng-article-tip-box,.ng-article-cta-box { margin:34px 0; padding:28px; border-radius:24px; border:1px solid var(--ng-border); background:#fff; box-shadow:var(--ng-shadow-sm); }
.ng-article-tip-box { background:linear-gradient(180deg, #ffffff 0%, #fffaf5 100%); }
.ng-article-tip-box h2,.ng-article-cta-box h2,.ng-article-bottom-cta h2 { margin-top:0; }
.ng-article-related-links { list-style:none; padding:0; display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:12px 16px; }
.ng-article-related-links li a { display:block; padding:14px 16px; border-radius:16px; border:1px solid var(--ng-border); background:#fff; text-decoration:none; }
.ng-article-related-links li a:hover { border-color:rgba(242, 84, 32, 0.28); background:var(--ng-primary-lighter); text-decoration:none; }
.ng-post-tag-row { display:flex; gap:12px; flex-wrap:wrap; align-items:flex-start; margin-top:26px; padding-top:24px; border-top:1px solid var(--ng-border); }
.ng-article-bottom-cta { margin:42px 0 0; padding:28px; border-radius:26px; background:linear-gradient(135deg, #fff8f3 0%, #ffffff 100%); border:1px solid rgba(242, 84, 32, 0.16); text-align:center; }
.ng-btn-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.ng-btn-row-center { justify-content:center; }
.ng-post-nav { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; margin-top:34px; }
.ng-post-nav-item a { display:block; height:100%; padding:20px; border-radius:20px; border:1px solid var(--ng-border); background:#fff; color:var(--ng-text); }
.ng-post-nav-item a:hover { border-color:rgba(242, 84, 32, 0.30); background:#fffaf5; }
.ng-post-nav-item small { display:block; color:var(--ng-text-muted); margin-bottom:8px; }
.ng-post-nav-item strong { display:block; font-size:1rem; line-height:1.5; }
.ng-post-nav-next { text-align:right; }
.ng-article-sidebar { position:sticky; top:110px; display:grid; gap:18px; }
.ng-sidebar-card { background:#fff; border:1px solid var(--ng-border); border-radius:22px; padding:24px; box-shadow:var(--ng-shadow-sm); }
.ng-sidebar-card-highlight { background:linear-gradient(180deg, #ffffff 0%, #fff8f3 100%); border-color:rgba(242, 84, 32, 0.18); }
.ng-sidebar-card h3 { margin:0 0 10px; font-size:1.08rem; }
.ng-sidebar-card p { color:var(--ng-text-muted); font-size:0.96rem; margin:0 0 16px; }
.ng-sidebar-cta-stack { display:grid; gap:10px; }
.ng-sidebar-link-list { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.ng-sidebar-link-list li a { display:block; padding:12px 14px; border:1px solid var(--ng-border); border-radius:14px; color:var(--ng-text); background:#fff; }
.ng-sidebar-link-list li a:hover { color:var(--ng-primary); border-color:rgba(242, 84, 32, 0.28); background:var(--ng-primary-lighter); }
@media (max-width:980px) { .ng-article-layout { grid-template-columns:1fr; } .ng-article-sidebar { position:static; } }
@media (max-width:760px) { .ng-post-nav,.ng-article-related-links { grid-template-columns:1fr; } .ng-post-nav-next { text-align:left; } .ng-article-tip-box,.ng-article-cta-box,.ng-article-bottom-cta,.ng-sidebar-card { padding:22px; border-radius:20px; } }
