/* ============================================
   NEXTAGRID — Main Stylesheet
   ============================================ */

/* ---------- Tokens ---------- */
:root {
    --blue:      #2563EB;
    --blue-dark: #1D4ED8;
    --dark:      #0A0F1C;
    --dark-2:    #111827;
    --body:      #1F2937;
    --gray:      #6B7280;
    --gray-light:#9CA3AF;
    --border:    #E5E7EB;
    --bg-light:  #F9FAFB;
    --white:     #FFFFFF;
    --font:      'Plus Jakarta Sans', sans-serif;
    --radius:    8px;
    --radius-lg: 16px;
    --max-w:     1200px;
    --header-h:  72px;
    --transition: 0.25s ease;
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
#ng-transition {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
}
#ng-transition.ng-transition--out {
    opacity: 0;
    pointer-events: none;
}
#ng-transition.ng-transition--in {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   AGGRESSIVE ASTRA RESET
   ============================================ */

/* Layout containers */
.ast-container,
.ast-container-widget,
.site-content,
.ast-article-post,
#content,
#primary,
#main,
.ast-page-builder-template .site-content,
.ast-full-width-layout .site-content,
.entry,
.hentry,
.post { max-width: 100% !important; padding: 0 !important; margin: 0 !important; width: 100% !important; }

/* Content */
.entry-content,
.entry-content p,
.entry-header,
.entry-footer,
.ast-article-inner-post { margin: 0 !important; padding: 0 !important; }

/* Header/Footer Astra */
#masthead,
.site-header,
.ast-desktop-header,
.ast-mobile-header-wrap,
.ast-primary-header-bar,
.main-header-bar,
.ast-header-break-point,
#colophon,
.site-footer,
.footer-widget-area,
.ast-small-footer,
.ast-builder-grid-row-container { display: none !important; }

/* Sidebar */
#secondary,
.widget-area,
.ast-sidebar-wrap { display: none !important; }

/* Astra spacing */
.ast-separate-container .ast-article-post,
.ast-separate-container #content { background: transparent !important; }
.ast-page-builder-template #content.site-content { padding-top: 0 !important; }
.ast-narrow-container .site-content,
body.ast-page-builder-template,
.page-template-page-builders .site-content { padding: 0 !important; margin: 0 !important; }

/* Typography reset — prevent Astra fonts bleeding in */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6,
.entry-content p, .entry-content li, .entry-content a {
    font-family: var(--font) !important;
}

/* Image Astra captions */
.wp-caption, .wp-caption-text { max-width: 100% !important; }

/* Breadcrumbs */
.ast-breadcrumbs-wrapper { display: none !important; }

/* Comment, search default */
.no-results.not-found { padding: 40px !important; }

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--body);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* Lazy load blur-up */
img { transition: opacity 0.4s ease, filter 0.4s ease; }
img:not([src]) { opacity: 0; }
img.ng-img-loaded { opacity: 1; filter: none; }

/* ---------- Typography ---------- */
.ng-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
}
.ng-h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.ng-h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
.ng-h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 700; line-height: 1.2; }
.ng-body { font-size: 1rem; line-height: 1.7; color: var(--gray); }
.ng-accent { color: var(--blue); }

/* ---------- Layout ---------- */
.ng-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.ng-section { padding: 96px 0; }
.ng-section--sm { padding: 64px 0; }

/* ---------- Buttons ---------- */
.ng-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    padding: 12px 24px;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.ng-btn--primary {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}
.ng-btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.ng-btn--outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}
.ng-btn--outline:hover { background: var(--dark); color: var(--white); }
.ng-btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.ng-btn--outline-white:hover { background: var(--white); color: var(--dark); }
.ng-btn__arrow { font-size: 1.1em; }

.ng-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--body);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.ng-link-arrow:hover { border-color: var(--body); }
.ng-link-arrow--blue { color: var(--blue); }
.ng-link-arrow--blue:hover { border-color: var(--blue); }

/* ============================================
   HEADER
   ============================================ */
.ng-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.ng-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.ng-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Navbar CTA — compact */
.ng-header__cta {
    font-size: 0.78rem !important;
    padding: 8px 16px !important;
    gap: 5px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    letter-spacing: 0.01em !important;
}
.ng-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ng-logo-text::before {
    content: '';
    width: 22px; height: 22px;
    background: var(--blue);
    border-radius: 6px;
    flex-shrink: 0;
}
.ng-header__logo .custom-logo { height: 32px; width: auto; }

.ng-header__nav { margin: 0 auto; }
.ng-header__nav ul,
.ng-header__nav ul.menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ng-header__nav li { list-style: none; }
/* Hide WP sub-menus in navbar */
.ng-header__nav li ul { display: none !important; }
.ng-header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--body);
    transition: color var(--transition);
    position: relative;
}
.ng-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width var(--transition);
}
.ng-header__nav a:hover,
.ng-header__nav a.active,
.ng-header__nav .current-menu-item > a,
.ng-header__nav .current-menu-ancestor > a,
.ng-header__nav .current-page-ancestor > a { color: var(--blue); }

.ng-header__nav a:hover::after,
.ng-header__nav a.active::after,
.ng-header__nav .current-menu-item > a::after,
.ng-header__nav .current-menu-ancestor > a::after,
.ng-header__nav .current-page-ancestor > a::after { width: 100%; }

.ng-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 40px; height: 40px;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}
.ng-hamburger:hover { background: var(--bg-light); }
.ng-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* ============================================
   HERO — HOME (dark)
   ============================================ */
.ng-hero-home {
    background: var(--dark);
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.ng-hero-home__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.ng-hero-home__label { color: var(--blue); margin-bottom: 24px; }
.ng-hero-home__title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 32px;
}
.ng-hero-home__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 380px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.ng-hero-home__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ng-hero-home__scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 64px;
}
.ng-hero-home__scroll::before {
    content: '';
    width: 20px; height: 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}
.ng-hero-home__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ng-hero-home__image img {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.ng-hero-home__bg-image {
    width: 100%;
    max-width: 560px;
    height: 420px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    background-color: rgba(255,255,255,0.05);
}

/* ============================================
   CLIENT LOGOS MARQUEE
   ============================================ */
/* ============================================
   CLIENT LOGOS MARQUEE
   ============================================ */
.ng-logos {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
}
.ng-logos__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.ng-logos__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #B0B7C3;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    padding-right: 40px;
    line-height: 1.5;
}

/* Marquee track wrapper — clips overflow */
.ng-logos__marquee {
    flex: 1;
    overflow: hidden;
    /* Fade edges */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* Scrolling strip */
.ng-logos__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: ng-marquee 28s linear infinite;
}
.ng-logos__track:hover { animation-play-state: paused; }

@keyframes ng-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* -50% = first set width (duplicated) */
}

/* Each logo item */
.ng-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    flex-shrink: 0;
}

/* Image logos */
.ng-logos__item img {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.35s ease, transform 0.25s ease;
}
.ng-logos__item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* Text fallback (no image uploaded) */
.ng-logos__text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C0C6D2;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.ng-logos__item:hover .ng-logos__text {
    color: var(--dark);
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.ng-work-section { background: var(--white); }
.ng-work-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}
.ng-work-filters {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.ng-work-filter {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font);
}
.ng-work-filter.active, .ng-work-filter:hover {
    color: var(--dark);
    border-bottom-color: var(--blue);
}

.ng-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ng-portfolio-grid--3 { grid-template-columns: repeat(3, 1fr); }

.ng-project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-light);
}
.ng-project-card:nth-child(3n-2):not(.ng-portfolio-grid--3 .ng-project-card) {
    grid-column: span 1;
}
.ng-project-card__thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.ng-project-card__thumb img,
.ng-project-card__thumb figure,
.ng-project-card__thumb figure img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    margin: 0;
}
.ng-project-card__thumb figure { position: absolute; inset: 0; }
.ng-project-card:hover .ng-project-card__thumb img,
.ng-project-card:hover .ng-project-card__thumb figure img { transform: scale(1.04); }
.ng-project-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.ng-project-card__num {
    font-size: 0.75rem;
    color: var(--gray-light);
    font-weight: 500;
}
.ng-project-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}
.ng-project-card__cat {
    font-size: 0.8rem;
    color: var(--gray);
}
.ng-project-card__arrow {
    font-size: 1rem;
    color: var(--gray-light);
    transition: color var(--transition);
}
.ng-project-card:hover .ng-project-card__arrow { color: var(--blue); }

/* Portfolio grid variations (matching screenshots) */
.ng-portfolio-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ng-portfolio-grid-home .ng-project-card:nth-child(1),
.ng-portfolio-grid-home .ng-project-card:nth-child(7) {
    grid-column: span 2;
    aspect-ratio: auto;
}
.ng-portfolio-grid-home .ng-project-card:nth-child(1) .ng-project-card__thumb,
.ng-portfolio-grid-home .ng-project-card:nth-child(7) .ng-project-card__thumb {
    aspect-ratio: 16/7;
}

/* Work page grid */
.ng-portfolio-grid-work {
    display: grid;
    gap: 24px;
}
.ng-portfolio-grid-work .ng-project-card:nth-child(1),
.ng-portfolio-grid-work .ng-project-card:nth-child(5),
.ng-portfolio-grid-work .ng-project-card:nth-child(7) {
    grid-column: span 2;
}
.ng-portfolio-grid-work { grid-template-columns: repeat(2, 1fr); }
.ng-portfolio-grid-work .ng-project-card__thumb { aspect-ratio: 16/9; }
.ng-portfolio-grid-work .ng-project-card:nth-child(1) .ng-project-card__thumb,
.ng-portfolio-grid-work .ng-project-card:nth-child(5) .ng-project-card__thumb { aspect-ratio: 16/7; }

/* ============================================
   STATS
   ============================================ */
.ng-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ng-stat__num {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.ng-stat__label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}
.ng-stat__desc {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ng-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.ng-testimonial-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: box-shadow var(--transition);
}
.ng-testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.ng-testimonial-card__stars {
    color: var(--blue);
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.ng-testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 28px;
}
.ng-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ng-testimonial-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    overflow: hidden;
    flex-shrink: 0;
}
.ng-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ng-testimonial-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}
.ng-testimonial-card__role { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   WORK PAGE — CTA SECTION
   ============================================ */
.ngw-cta {
    background: #F4F6F9;
    padding: 100px 0;
}

/* Headline */
.ngw-cta__top {
    text-align: center;
    margin-bottom: 72px;
}
.ngw-cta__top .ng-label {
    display: block;
    margin-bottom: 16px;
}
.ngw-cta__title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.035em;
    line-height: 1.1;
}

/* Two-column split */
.ngw-cta__body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.ngw-cta__desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.78;
    margin-bottom: 40px;
}
.ngw-cta__items {
    display: flex;
    flex-direction: column;
}
.ngw-cta__item {
    padding: 16px 0;
    border-bottom: 1px solid #DDE1E9;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ngw-cta__item:first-child { border-top: 1px solid #DDE1E9; }
.ngw-cta__item-label {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}
.ngw-cta__item-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}
a.ngw-cta__item-value:hover { color: var(--blue); }

/* Right: form card */
.ngw-cta__right {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.07);
}

/* Form layout */
.ngw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ngw-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ngw-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ngw-form__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gray);
}
.ngw-form__label span { color: var(--blue); }

/* Input — clean box, consistent across all fields */
.ngw-form__input {
    width: 100%;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--dark);
    background: #F8F9FB;
    border: 1.5px solid #E5E8EF;
    border-radius: 10px;
    padding: 13px 16px;
    outline: none;
    appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    line-height: 1.5;
}
.ngw-form__input::placeholder { color: #B8BDC8; }
.ngw-form__input:focus {
    border-color: var(--blue);
    background: var(--white);
}
select.ngw-form__input { cursor: pointer; }
textarea.ngw-form__input {
    min-height: 110px;
    resize: none;
    line-height: 1.65;
}

/* Submit */
.ngw-form__submit {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.9rem;
    border-radius: 10px;
    letter-spacing: 0.01em;
    margin-top: 4px;
}
.ngw-form__submit svg { transition: transform 0.25s ease; }
.ngw-form__submit:hover svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 900px) {
    .ngw-cta__body { grid-template-columns: 1fr; gap: 48px; }
    .ngw-cta { padding: 72px 0; }
}
@media (max-width: 600px) {
    .ngw-cta__top { margin-bottom: 48px; }
    .ngw-cta__right { padding: 32px 24px; }
    .ngw-form__row { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ng-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ng-contact-form { display: flex; flex-direction: column; gap: 16px; }
.ng-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ng-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.ng-input:focus { border-color: var(--blue); }
.ng-input::placeholder { color: var(--gray-light); }
textarea.ng-input { min-height: 120px; resize: vertical; }

.ng-contact-info__image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    margin-bottom: 32px;
    overflow: hidden;
}
.ng-contact-info__image img { width: 100%; height: 100%; object-fit: cover; }
.ng-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ng-contact-detail__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 8px;
}
.ng-contact-detail p { font-size: 0.9rem; color: var(--body); line-height: 1.6; }
.ng-contact-detail a { color: var(--blue); font-size: 0.9rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.ng-cta-banner {
    background: var(--blue);
    padding: 80px 0;
}
.ng-cta-banner__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.ng-cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    max-width: 500px;
}
.ng-cta-banner__right { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.ng-cta-banner__sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Mini CTA (work page) */
.ng-mini-cta {
    padding: 80px 0;
    text-align: center;
}
.ng-mini-cta .ng-label { margin-bottom: 16px; }
.ng-mini-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.ng-hero-page {
    padding-top: var(--header-h);
    padding-bottom: 80px;
    background: var(--white);
}
.ng-hero-page__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
}
.ng-hero-page__label { margin-bottom: 20px; }
.ng-hero-page__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 16px;
}
.ng-hero-page__desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.ng-hero-page__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
}
.ng-hero-page__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.ng-hero-page__image .ng-placeholder {
    height: 520px;
    border-radius: var(--radius-lg);
}

/* ============================================
   SERVICES PAGE — Modern Cards
   ============================================ */

/* Section head */
.ngs-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}
.ngs-head__sub {
    max-width: 360px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
}

/* Cards grid container */
.ngs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #DDE1EA;
    border: 1px solid #DDE1EA;
    border-radius: 20px;
    overflow: hidden;
}

/* Individual card */
.ngs-card {
    background: var(--white);
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.2s ease;
}
.ngs-card:hover { background: #FAFBFF; }
.ngs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width 0.45s cubic-bezier(0.16,1,0.3,1);
}
.ngs-card:hover::before { width: 100%; }

/* Card top: num + icon */
.ngs-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}
.ngs-card__num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gray-light);
}
.ngs-card__icon {
    width: 46px; height: 46px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}
.ngs-card:hover .ngs-card__icon { background: #DBEAFE; }

/* Title & desc */
.ngs-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.ngs-card__desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.76;
}

/* Divider */
.ngs-card__rule {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* Checklist */
.ngs-card__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}
.ngs-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--body);
    font-weight: 500;
}
.ngs-card__list li::before {
    content: '';
    flex-shrink: 0;
    width: 17px; height: 17px;
    background: #EFF6FF;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%232563EB' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Meta tags: timeline + audience */
.ngs-card__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.ngs-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    letter-spacing: 0.01em;
}

/* CTA link */
.ngs-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
    width: fit-content;
}
.ngs-card__cta:hover {
    color: var(--blue);
    border-color: var(--blue);
    gap: 12px;
}

/* Included banner */
.ngs-included {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 20px;
    padding: 18px 28px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    flex-wrap: wrap;
}
.ngs-included__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    white-space: nowrap;
}
.ngs-included__items {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
}
.ngs-included__item {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--body);
    padding: 0 16px;
    border-left: 1px solid var(--border);
}
.ngs-included__item:first-child { border-left: none; padding-left: 0; }

/* ============================================
   SERVICES PAGE — Process (horizontal)
   ============================================ */
.ngs-process { background: #F4F6F9; }
.ngs-process__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
}

.ngs-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.ngs-step { padding: 0 24px 0 0; }
.ngs-step__head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}
.ngs-step__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--blue);
    flex-shrink: 0;
    margin-right: 12px;
}
.ngs-step__line {
    flex: 1;
    height: 1px;
    background: var(--border);
    margin-right: 0;
}
.ngs-step__icon {
    width: 40px; height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.2s, border-color 0.2s;
}
.ngs-step:hover .ngs-step__icon {
    background: #EFF6FF;
    border-color: #BFDBFE;
}
.ngs-step__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.ngs-step__desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ============================================
   SERVICES PAGE — Stats section
   ============================================ */
.ngs-stats-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ngs-stats-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    padding: 64px 0;
}
.ngs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.ngs-stat {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    border-left: 1px solid var(--border);
}
.ngs-stat:first-child { border-left: none; padding-left: 0; }
.ngs-stat__num {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    line-height: 1;
}
.ngs-stat__suffix {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
}
.ngs-stat__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
    margin-bottom: 4px;
}
.ngs-stat__desc {
    font-size: 0.78rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .ngs-grid { grid-template-columns: 1fr; }
    .ngs-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .ngs-step__line { display: none; }
    .ngs-stats-wrap { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
    .ngs-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ngs-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
    .ngs-stat:nth-child(-n+2) { border-top: none; padding-top: 0; }
    .ngs-included { border-radius: 16px; }
    .ngs-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .ngs-steps { grid-template-columns: 1fr 1fr; }
    .ngs-stats-grid { grid-template-columns: 1fr 1fr; }
    .ngs-included { flex-direction: column; align-items: flex-start; border-radius: 16px; }
    .ngs-included__items { flex-direction: column; gap: 8px; }
    .ngs-included__item { border-left: none; padding-left: 0; }
}

/* Legacy class kept for compatibility */
.ng-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 64px 0;
}
.ng-service-card {
    padding: 44px 36px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ng-service-card__num { font-size: 0.75rem; font-weight: 700; color: var(--gray-light); letter-spacing: 0.06em; }
.ng-service-card__icon { width: 48px; height: 48px; background: #EFF6FF; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.2rem; }
.ng-service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.ng-service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.ng-service-card__list { display: flex; flex-direction: column; gap: 8px; }
.ng-service-card__list li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--body); }
.ng-service-card__list li::before { content: ''; width: 18px; height: 18px; background: #EFF6FF url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center; border-radius: 50%; flex-shrink: 0; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.ng-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
.ng-process-steps::before {
    content: '';
    position: absolute;
    top: 24px; left: 10%; right: 10%;
    height: 1px;
    background: var(--border);
}
.ng-process-step { text-align: center; position: relative; }
.ng-process-step__icon {
    width: 48px; height: 48px;
    background: #EFF6FF;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}
.ng-process-step__num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}
.ng-process-step h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ng-process-step p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   STUDIO SECTION
   ============================================ */
.ng-studio-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}
.ng-studio-split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.ng-studio-split__image img { width: 100%; }
.ng-studio-info__label { margin-bottom: 16px; }
.ng-studio-info h2 { margin-bottom: 20px; }
.ng-studio-info p { color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.ng-studio-info__details { display: flex; gap: 40px; flex-wrap: wrap; }
.ng-studio-detail__icon {
    width: 36px; height: 36px;
    background: #EFF6FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.ng-studio-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ng-studio-detail p { font-size: 0.85rem; color: var(--gray); }

/* ============================================
   WHY US — Section with stats inline
   ============================================ */
.ng-why-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}
.ng-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ng-why-stat {
    padding: 28px 0;
    border-left: 1px solid var(--border);
    padding-left: 24px;
}
.ng-why-stat__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.ng-why-stat__label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.ng-why-stat__desc { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.ng-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ng-story__heading { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
.ng-story__text { font-size: 0.95rem; color: var(--gray); line-height: 1.8; }
.ng-story__stats { display: flex; flex-direction: column; gap: 24px; }
.ng-story-stat__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
}
.ng-story-stat__label { font-size: 0.85rem; color: var(--gray); }

.ng-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.ng-team-card { display: flex; flex-direction: column; }
.ng-team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-light);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}
.ng-team-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.ng-team-card:hover .ng-team-card__photo img { transform: scale(1.04); }
.ng-team-card__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #F3F4F6, #E9EAEF);
}
.ng-team-card__info { flex: 1; }
.ng-team-card__name { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ng-team-card__role { font-size: 0.82rem; color: var(--gray); margin-bottom: 12px; }
.ng-team-card__linkedin {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.2s;
}
.ng-team-card__linkedin:hover { color: var(--blue); }

.ng-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.ng-value-card__icon {
    width: 48px; height: 48px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.ng-value-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.ng-value-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   WORK PAGE HERO (light)
   ============================================ */
.ng-hero-work {
    padding-top: var(--header-h);
    background: var(--white);
}
.ng-hero-work__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.ng-hero-work__label { margin-bottom: 20px; }
.ng-hero-work__title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--dark);
}
.ng-hero-work__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px;
}
.ng-hero-work__desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.ng-footer {
    background: #080C18;
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---- Top grid: brand + 3 columns ---- */
.ng-footer__top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 72px 40px 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Brand column */
.ng-footer__logo.ng-logo-text { color: var(--white); display: block; margin-bottom: 16px; }
.ng-footer__brand-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Social icons */
.ng-footer__social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ng-footer__social-link {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.42);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ng-footer__social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* Column headings */
.ng-footer__col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

/* Menu lists (Pages + Services) */
.ng-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
}
.ng-footer__menu li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.ng-footer__menu li a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Studio column */
.ng-footer__studio {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0; padding: 0;
}
.ng-footer__studio-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.ng-footer__studio-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}
.ng-footer__studio-item a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.ng-footer__studio-item a:hover { color: var(--white); }

/* Bottom bar */
.ng-footer__bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 22px 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    gap: 16px;
}
.ng-footer__legal { display: flex; gap: 20px; }
.ng-footer__legal a,
.ng-footer__legal li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    transition: color 0.2s;
    list-style: none;
}
.ng-footer__legal a:hover,
.ng-footer__legal li a:hover { color: rgba(255,255,255,0.6); }
.ng-footer__legal ul {
    display: flex; gap: 20px;
    list-style: none; margin: 0; padding: 0;
}

/* ============================================
   PLACEHOLDER IMAGES (no real images)
   ============================================ */
.ng-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ng-placeholder--light {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    color: rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ng-hero-home__inner,
    .ng-hero-page__inner,
    .ng-hero-work__inner,
    .ng-contact-split,
    .ng-studio-split,
    .ng-story-section { grid-template-columns: 1fr; }
    .ng-hero-home__image { display: none; }
    .ng-hero-home { min-height: 80vh; }
    .ng-services-grid { grid-template-columns: 1fr; }
    .ng-team-grid, .ng-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ng-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .ng-footer__top { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
    .ng-logos__inner { gap: 32px; }
    .ng-logos__label { padding-right: 32px; }
    .ng-why-split { grid-template-columns: 1fr; }
    .ng-why-stats { grid-template-columns: repeat(2, 1fr); }
    .ng-process-steps { grid-template-columns: repeat(3, 1fr); }
    .ng-process-steps::before { display: none; }
    .ng-cta-banner__inner { flex-direction: column; text-align: center; }
    .ng-cta-banner__right { text-align: center; }
    .ng-stats { grid-template-columns: repeat(2, 1fr); }
    .ng-portfolio-grid { grid-template-columns: 1fr; }
    .ng-portfolio-grid-home .ng-project-card:nth-child(1),
    .ng-portfolio-grid-home .ng-project-card:nth-child(7) { grid-column: span 1; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .ng-container { padding: 0 20px; }
    .ng-hero-home__inner, .ng-section { padding: 60px 20px; }
    .ng-header__nav { display: none; }
    .ng-header__cta { display: none; }
    .ng-hamburger { display: flex; }
    .ng-header__inner { padding: 0 20px; }
    .ng-footer__top { padding: 60px 20px 40px; grid-template-columns: 1fr; }
    .ng-footer__bottom { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
    .ng-testimonials__grid { grid-template-columns: 1fr; }
    .ng-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ng-values-grid { grid-template-columns: 1fr 1fr; }
    .ng-process-steps { grid-template-columns: 1fr 1fr; }
    .ng-form-row { grid-template-columns: 1fr; }
    .ng-logos__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ng-logos__label { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 16px; }
    .ng-work-section__head { flex-direction: column; align-items: flex-start; }
    .ng-story-section { grid-template-columns: 1fr; }
    .ng-contact-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ng-h1, .ng-hero-home__title { font-size: 2.2rem; }
    .ng-team-grid { grid-template-columns: 1fr 1fr; }
    .ng-values-grid { grid-template-columns: 1fr; }
    .ng-stats { grid-template-columns: 1fr 1fr; }
}

/* Fade-in animation */
.ng-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ng-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE MENU — SMOOTH SLIDE
   ============================================ */
@media (max-width: 768px) {
    .ng-header__nav {
        /* Base hidden state — JS drives max-height */
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        z-index: 998;
        overflow: hidden;
    }
    .ng-header__nav.open {
        display: flex;
    }
    .ng-header__nav ul {
        flex-direction: column;
        gap: 0;
        padding: 16px 20px 24px;
    }
    .ng-header__nav a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
        color: var(--dark);
    }
    .ng-header__nav ul li:last-child a { border-bottom: none; }
    .ng-header__nav a::after { display: none; }
}

/* Hamburger → X animation */
.ng-hamburger span {
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.ng-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ng-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ng-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
