/*
  nextgencopywriter.com -- style.css
  Theme: Acid lime #BDE830 + Near-black #0E0D0B + Warm cream #FAF8F3
  Layout: EDITORIAL SPLIT HERO (left cream / right dark) -- unique in series
  Fonts: Unna (serif italic heading) + Rubik (body)
  Nav: EDITORIAL DARK MINIMAL -- logo left, links right, lime CTA
  CSS prefix: ngc-
*/
@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&family=Rubik:wght@300;400;500;600;700&display=swap');

/* ======================== TOKENS ======================== */
:root {
  --ngc-page:   #FAF8F3;
  --ngc-warm:   #F0EDE5;
  --ngc-parch:  #E8E3D8;
  --ngc-ink:    #0E0D0B;
  --ngc-coal:   #3A3935;
  --ngc-muted:  #6B6960;
  --ngc-dim:    #A8A49C;
  --ngc-edge:   #D8D3CA;
  --ngc-edge2:  #E4E0D8;
  --ngc-lime:   #BDE830;
  --ngc-lime2:  #A8CF22;
  --ngc-limelt: rgba(189,232,48,.1);
  --ngc-limebd: rgba(189,232,48,.35);
  --ngc-dark:   #0E0D0B;
  --ngc-dark2:  #161512;
  --ngc-dark3:  #1D1B17;
  --ngc-redink: #C7291A;

  --ngc-max: 1100px;
  --ngc-r:   3px;
  --ngc-r2:  8px;
  --ngc-r3:  16px;
  --ngc-nav: 64px;

  --ngc-fh: 'Unna', Georgia, serif;
  --ngc-fb: 'Rubik', system-ui, -apple-system, sans-serif;

  --ngc-ease: all 0.2s cubic-bezier(.4,0,.2,1);
  --ngc-sh1: 0 2px 12px rgba(14,13,11,.08);
  --ngc-sh2: 0 8px 36px rgba(14,13,11,.15);
  --ngc-sh3: 0 24px 64px rgba(14,13,11,.22);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ngc-page);
  color: var(--ngc-ink);
  font-family: var(--ngc-fb);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--ngc-nav);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3 { font-family: var(--ngc-fh); }
h1 { font-size: clamp(3rem, 6vw, 8rem); line-height: .88; letter-spacing: -.02em; font-weight: 700; font-style: italic; }
h2 { font-size: clamp(2rem, 3.8vw, 4.5rem); line-height: .9; letter-spacing: -.018em; font-weight: 700; font-style: italic; }
h3 { font-size: 1rem; font-weight: 600; font-family: var(--ngc-fb); font-style: normal; }
p  { font-size: .9rem; line-height: 1.88; color: var(--ngc-coal); }

/* ======================== NAV ======================== */
.ngc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--ngc-nav); z-index: 900;
  background: var(--ngc-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .22s;
}
.ngc-nav.ngc-scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.5); }
.ngc-nav-inner {
  max-width: var(--ngc-max); margin: 0 auto; padding: 0 2.5rem;
  height: 100%; display: flex; align-items: center; gap: 2.5rem;
}
.ngc-wordmark {
  font-family: var(--ngc-fh); font-size: 1.12rem; font-style: italic; font-weight: 700;
  color: var(--ngc-page); text-decoration: none; flex-shrink: 0; letter-spacing: -.01em;
}
.ngc-wordmark span { color: var(--ngc-lime); font-style: normal; }
.ngc-nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.ngc-nav-lk {
  font-family: var(--ngc-fb); font-size: .95rem; font-weight: 500;
  color: rgba(250,248,243,.45); padding: .28rem .9rem;
  transition: color .16s; text-decoration: none; white-space: nowrap;
  position: relative;
}
.ngc-nav-lk::after {
  content: ''; position: absolute; bottom: -4px; left: .9rem; right: .9rem;
  height: 2px; background: var(--ngc-lime); transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.ngc-nav-lk:hover::after, .ngc-nav-lk.ngc-on::after { transform: scaleX(1); }
.ngc-nav-lk:hover, .ngc-nav-lk.ngc-on { color: var(--ngc-page); }
.ngc-nav-right { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.ngc-lang-row { display: flex; align-items: center; gap: 0; border: 1px solid rgba(255,255,255,.12); border-radius: var(--ngc-r); overflow: hidden; }
.ngc-lang-btn { font-family: var(--ngc-fb); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(250,248,243,.4); padding: .28rem .55rem; transition: var(--ngc-ease); cursor: pointer; background: none; border: none; }
.ngc-lang-btn:hover { color: var(--ngc-page); }
.ngc-lang-btn.ngc-lang-active { background: var(--ngc-lime); color: var(--ngc-dark); }
.ngc-lang-sep { width: 1px; height: 14px; background: rgba(255,255,255,.12); }
.ngc-nav-quote {
  font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700;
  color: var(--ngc-dark); background: var(--ngc-lime);
  padding: .42rem 1.15rem; border-radius: var(--ngc-r); transition: background .16s;
  white-space: nowrap;
}
.ngc-nav-quote:hover { background: var(--ngc-lime2); }
.ngc-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; width: 40px; height: 40px;
  justify-content: center; align-items: center;
}
.ngc-burger span { width: 20px; height: 2px; background: var(--ngc-page); border-radius: 2px; display: block; transition: transform .25s, opacity .2s; }
.ngc-burger.ngc-bx span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ngc-burger.ngc-bx span:nth-child(2) { opacity: 0; }
.ngc-burger.ngc-bx span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ngc-offcanvas { position: fixed; inset: 0; background: var(--ngc-dark2); z-index: 850; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.ngc-offcanvas.ngc-oc-open { transform: translateX(0); }
.ngc-oc-head { height: var(--ngc-nav); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.ngc-oc-brand { font-family: var(--ngc-fh); font-size: 1rem; font-style: italic; font-weight: 700; color: var(--ngc-page); }
.ngc-oc-brand span { color: var(--ngc-lime); font-style: normal; }
.ngc-oc-x { color: rgba(255,255,255,.5); background: none; border: none; cursor: pointer; }
.ngc-oc-links { flex: 1; padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0; }
.ngc-oc-lk { font-family: var(--ngc-fh); font-size: 3rem; font-style: italic; font-weight: 700; color: rgba(250,248,243,.2); padding: .4rem 0; display: block; transition: color .15s; }
.ngc-oc-lk:hover { color: var(--ngc-lime); }
.ngc-oc-ft { padding: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.ngc-oc-cta { display: block; text-align: center; background: var(--ngc-lime); color: var(--ngc-dark); font-family: var(--ngc-fb); font-size: .88rem; font-weight: 700; padding: .82rem; border-radius: var(--ngc-r); }

/* ======================== SPLIT HERO (UNIQUE) ======================== */
.ngc-split-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: calc(88vh - var(--ngc-nav));
}
.ngc-hero-left {
  background: var(--ngc-page);
  padding: 5rem 4rem 5rem 2.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  max-width: calc(var(--ngc-max) * .55);
  margin-left: auto;
}
.ngc-hero-right {
  background: var(--ngc-dark3);
  position: relative; overflow: hidden;
}
.ngc-hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.ngc-hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,13,11,.8) 0%, rgba(14,13,11,.3) 60%);
}
.ngc-hero-badge {
  font-family: var(--ngc-fb); font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .25em; color: var(--ngc-lime);
  display: flex; align-items: center; gap: .4rem; margin-bottom: 1.2rem;
}
.ngc-hero-badge::before { content: ''; width: 22px; height: 2px; background: var(--ngc-lime); }
.ngc-hero-h1 { color: var(--ngc-ink); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.ngc-hero-sub { font-family: var(--ngc-fb); font-size: .92rem; color: var(--ngc-muted); max-width: 42ch; line-height: 1.88; margin-bottom: 2rem; }
.ngc-hero-acts { display: flex; gap: .6rem; flex-wrap: wrap; }
.ngc-hero-float {
  position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem;
  display: flex; gap: .72rem; z-index: 2;
}
.ngc-hero-stat { flex: 1; }
.ngc-hero-stat-n { font-family: var(--ngc-fh); font-size: 2.2rem; font-style: italic; font-weight: 700; color: var(--ngc-lime); line-height: 1; letter-spacing: -.03em; }
.ngc-hero-stat-l { font-family: var(--ngc-fb); font-size: .52rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: rgba(250,248,243,.4); margin-top: .15rem; }

/* ======================== TICKER ======================== */
.ngc-ticker { background: var(--ngc-lime); padding: .72rem 0; overflow: hidden; }
.ngc-ticker-row { display: flex; width: max-content; animation: ngcTick 28s linear infinite; }
.ngc-ticker-item { padding: 0 1.5rem; font-family: var(--ngc-fb); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ngc-dark); white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
.ngc-ticker-item::after { content: '/'; color: rgba(14,13,11,.3); }
@keyframes ngcTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======================== LAYOUT ======================== */
.ngc-shell { max-width: var(--ngc-max); margin: 0 auto; padding: 0 2.5rem; }
.ngc-slab  { padding: 7rem 0; }
.ngc-slab-sm { padding: 4rem 0; }
.ngc-eyebrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--ngc-redink); margin-bottom: .5rem; }
.ngc-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--ngc-redink); }

/* ======================== SERVICES - EDITORIAL LIST ======================== */
.ngc-svcs-list { display: flex; flex-direction: column; }
.ngc-svc-row {
  display: grid; grid-template-columns: 48px 1fr 200px 160px;
  align-items: center; gap: 2rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--ngc-edge);
  transition: background .15s, padding .15s;
  cursor: pointer; position: relative;
}
.ngc-svc-row:first-child { border-top: 1px solid var(--ngc-edge); }
.ngc-svc-row:hover { padding-left: 1rem; padding-right: 1rem; background: var(--ngc-warm); border-radius: var(--ngc-r2); border-color: transparent; margin: 0 -1rem; }
.ngc-svc-num { font-family: var(--ngc-fh); font-size: .72rem; font-style: italic; color: var(--ngc-dim); font-weight: 400; }
.ngc-svc-nm { font-family: var(--ngc-fh); font-size: clamp(1.2rem,2vw,1.8rem); font-style: italic; font-weight: 700; color: var(--ngc-ink); }
.ngc-svc-desc { font-family: var(--ngc-fb); font-size: .78rem; color: var(--ngc-muted); line-height: 1.6; }
.ngc-svc-rate { font-family: var(--ngc-fb); font-size: .72rem; font-weight: 600; color: var(--ngc-muted); text-align: right; }
.ngc-svc-arrow { position: absolute; right: 0; color: var(--ngc-dim); opacity: 0; transition: opacity .2s; }
.ngc-svc-row:hover .ngc-svc-arrow { opacity: 1; }

/* ======================== MANIFESTO ======================== */
.ngc-manifesto { background: var(--ngc-dark); padding: 7rem 0; position: relative; overflow: hidden; }
.ngc-manifesto::before { content: '"'; position: absolute; top: -2rem; left: -1rem; font-family: var(--ngc-fh); font-size: 22rem; line-height: 1; color: rgba(189,232,48,.04); pointer-events: none; font-style: italic; font-weight: 700; }
.ngc-manifesto-inner { max-width: 860px; margin: 0 auto; padding: 0 2.5rem; }
.ngc-manifesto blockquote { font-family: var(--ngc-fh); font-size: clamp(1.6rem,3.5vw,3.5rem); font-style: italic; font-weight: 700; color: var(--ngc-page); line-height: 1.2; letter-spacing: -.02em; }
.ngc-manifesto-attr { font-family: var(--ngc-fb); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--ngc-lime); margin-top: 1.5rem; }

/* ======================== CASE STUDIES ======================== */
.ngc-cases { background: var(--ngc-warm); }
.ngc-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ngc-edge); border: 1px solid var(--ngc-edge); border-radius: var(--ngc-r3); overflow: hidden; margin-top: 3rem; }
.ngc-case-cell { background: var(--ngc-page); padding: 2.5rem; display: flex; flex-direction: column; transition: background .15s; }
.ngc-case-cell:hover { background: var(--ngc-warm); }
.ngc-case-tags { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: .72rem; }
.ngc-case-tag { font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ngc-redink); border: 1px solid rgba(199,41,26,.22); padding: .12rem .5rem; border-radius: 20px; }
.ngc-case-client { font-family: var(--ngc-fh); font-size: clamp(1.4rem,2vw,2.2rem); font-style: italic; font-weight: 700; color: var(--ngc-ink); margin-bottom: .18rem; }
.ngc-case-type { font-family: var(--ngc-fb); font-size: .7rem; color: var(--ngc-muted); margin-bottom: .72rem; }
.ngc-case-intro { font-size: .84rem; color: var(--ngc-coal); flex: 1; }
.ngc-case-result { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--ngc-edge); display: flex; align-items: flex-end; gap: 1rem; }
.ngc-case-n { font-family: var(--ngc-fh); font-size: 3.2rem; font-style: italic; font-weight: 700; color: var(--ngc-redink); line-height: 1; letter-spacing: -.04em; }
.ngc-case-stat { font-family: var(--ngc-fb); font-size: .7rem; color: var(--ngc-muted); line-height: 1.55; max-width: 20ch; }
.ngc-case-wide { grid-column: 1 / -1; }

/* ======================== TESTIMONIALS ======================== */
.ngc-voices { background: var(--ngc-dark2); }
.ngc-voice-feat { padding: 6rem 0; }
.ngc-voice-feat blockquote { font-family: var(--ngc-fh); font-size: clamp(1.4rem,3vw,3rem); font-style: italic; font-weight: 700; color: var(--ngc-page); line-height: 1.25; letter-spacing: -.02em; max-width: 860px; }
.ngc-voice-feat-who { font-family: var(--ngc-fb); font-size: .78rem; font-weight: 700; color: var(--ngc-lime); margin-top: 1.2rem; }
.ngc-voice-feat-co  { font-family: var(--ngc-fb); font-size: .66rem; color: rgba(250,248,243,.4); }
.ngc-voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border-top: 1px solid rgba(255,255,255,.06); }
.ngc-voice-cell { padding: 2rem; background: rgba(255,255,255,.02); transition: background .15s; }
.ngc-voice-cell:hover { background: rgba(255,255,255,.04); }
.ngc-voice-q { font-family: var(--ngc-fh); font-size: .88rem; font-style: italic; color: rgba(250,248,243,.75); line-height: 1.6; margin-bottom: .88rem; }
.ngc-voice-who { font-family: var(--ngc-fb); font-size: .76rem; font-weight: 700; color: var(--ngc-lime); }
.ngc-voice-co  { font-family: var(--ngc-fb); font-size: .64rem; color: rgba(250,248,243,.35); }

/* ======================== PRICING TABS ======================== */
.ngc-pricing { background: var(--ngc-page); }
.ngc-pricing-tabs { display: flex; gap: 0; border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r2); overflow: hidden; margin-bottom: 1.5rem; width: fit-content; }
.ngc-ptab { font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-muted); padding: .62rem 1.5rem; cursor: pointer; border: none; background: none; transition: var(--ngc-ease); position: relative; }
.ngc-ptab.ngc-ptab-active { background: var(--ngc-ink); color: var(--ngc-page); }
.ngc-ptab[data-feat]::after { content: 'Popular'; position: absolute; top: -8px; right: 6px; font-size: .44rem; background: var(--ngc-lime); color: var(--ngc-dark); padding: .1rem .4rem; border-radius: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.ngc-pkg-panel { display: none; }
.ngc-pkg-panel.ngc-panel-show { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.ngc-pkg-left h3 { font-family: var(--ngc-fh); font-size: clamp(1.5rem,2.5vw,2.8rem); font-style: italic; font-weight: 700; color: var(--ngc-ink); margin-bottom: .3rem; }
.ngc-pkg-left .ngc-pkg-sub { font-family: var(--ngc-fb); font-size: .8rem; color: var(--ngc-muted); margin-bottom: 1.2rem; }
.ngc-pkg-price { font-family: var(--ngc-fh); font-size: clamp(2.5rem,5vw,5.5rem); font-style: italic; font-weight: 700; color: var(--ngc-ink); line-height: 1; letter-spacing: -.04em; margin-bottom: 1.2rem; }
.ngc-pkg-price sup { font-size: 1.5rem; vertical-align: super; font-style: normal; }
.ngc-pkg-incs { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1.5rem; }
.ngc-pkg-inc { display: flex; gap: .5rem; align-items: flex-start; font-family: var(--ngc-fb); font-size: .86rem; color: var(--ngc-coal); }
.ngc-pkg-inc svg { color: var(--ngc-lime2); flex-shrink: 0; margin-top: .14rem; }
.ngc-pkg-right { background: var(--ngc-warm); border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r3); padding: 2rem; }
.ngc-pkg-img { height: 180px; overflow: hidden; border-radius: var(--ngc-r2); margin-bottom: 1.2rem; }
.ngc-pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.ngc-pkg-add-h { font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--ngc-dim); margin-bottom: .6rem; }
.ngc-pkg-addons { display: flex; flex-direction: column; gap: .32rem; }
.ngc-pkg-addon { display: flex; justify-content: space-between; font-family: var(--ngc-fb); font-size: .8rem; padding: .4rem .5rem; border-radius: var(--ngc-r); }
.ngc-pkg-addon-nm { color: var(--ngc-muted); }
.ngc-pkg-addon-pr { font-weight: 600; color: var(--ngc-coal); }

/* ======================== PROCESS ======================== */
.ngc-process { background: var(--ngc-ink); }
.ngc-process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.ngc-process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, var(--ngc-lime), rgba(189,232,48,.2)); }
.ngc-proc-step { padding: 0 1rem; text-align: center; }
.ngc-proc-n { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(189,232,48,.4); font-family: var(--ngc-fh); font-size: .9rem; font-style: italic; font-weight: 700; color: var(--ngc-lime); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; z-index: 1; background: var(--ngc-ink); transition: var(--ngc-ease); }
.ngc-proc-step:hover .ngc-proc-n { background: var(--ngc-lime); color: var(--ngc-dark); border-color: var(--ngc-lime); }
.ngc-proc-h { font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-page); margin-bottom: .3rem; }
.ngc-proc-p { font-size: .72rem; color: rgba(250,248,243,.4); line-height: 1.72; }

/* ======================== FAQ ======================== */
.ngc-faq { background: var(--ngc-warm); }
.ngc-faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.ngc-faq-left { position: sticky; top: 76px; }
.ngc-faq-item { border-bottom: 1px solid var(--ngc-edge); }
.ngc-faq-btn { width: 100%; text-align: left; padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; background: none; border: none; }
.ngc-faq-q { font-family: var(--ngc-fb); font-size: .92rem; font-weight: 600; color: var(--ngc-ink); }
.ngc-faq-ic { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--ngc-edge); display: flex; align-items: center; justify-content: center; color: var(--ngc-redink); flex-shrink: 0; transition: var(--ngc-ease); }
.ngc-faq-item.ngc-faq-open .ngc-faq-ic { background: var(--ngc-redink); border-color: var(--ngc-redink); color: white; transform: rotate(45deg); }
.ngc-faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ngc-faq-item.ngc-faq-open .ngc-faq-body { max-height: 300px; }
.ngc-faq-a { padding: 0 0 1rem; font-size: .86rem; color: var(--ngc-coal); line-height: 1.88; }

/* ======================== CTA BAND ======================== */
.ngc-cta-band { background: var(--ngc-lime); padding: 5.5rem 0; }
.ngc-cta-inner { max-width: 660px; margin: 0 auto; padding: 0 2.5rem; text-align: center; }
.ngc-cta-inner h2 { color: var(--ngc-dark); font-size: clamp(2rem,4vw,4.5rem); margin-bottom: .6rem; }
.ngc-cta-inner p { color: rgba(14,13,11,.6); margin-bottom: 2rem; font-size: .92rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.ngc-cta-acts { display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap; }

/* ======================== BUTTONS ======================== */
.ngc-btn-lime { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-dark); background: var(--ngc-lime); padding: .68rem 1.7rem; border-radius: var(--ngc-r); transition: background .16s; border: none; cursor: pointer; white-space: nowrap; }
.ngc-btn-lime:hover { background: var(--ngc-lime2); }
.ngc-btn-dark { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-page); background: var(--ngc-dark); padding: .68rem 1.7rem; border-radius: var(--ngc-r); transition: background .16s; border: none; cursor: pointer; white-space: nowrap; }
.ngc-btn-dark:hover { background: var(--ngc-dark3); }
.ngc-btn-outline { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-ink); background: transparent; padding: .66rem 1.68rem; border-radius: var(--ngc-r); border: 1.5px solid var(--ngc-edge); transition: var(--ngc-ease); white-space: nowrap; }
.ngc-btn-outline:hover { border-color: var(--ngc-ink); }
.ngc-btn-outline-d { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; color: var(--ngc-dark); background: transparent; padding: .66rem 1.68rem; border-radius: var(--ngc-r); border: 1.5px solid rgba(14,13,11,.35); transition: var(--ngc-ease); white-space: nowrap; }
.ngc-btn-outline-d:hover { border-color: var(--ngc-dark); }

/* ======================== INNER PAGE CROWN ======================== */
.ngc-crown { background: var(--ngc-dark); padding: 5.5rem 2.5rem 4.5rem; text-align: center; position: relative; overflow: hidden; }
.ngc-crown::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 44px; background: linear-gradient(to bottom, var(--ngc-lime), transparent); }
.ngc-crown-tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ngc-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--ngc-lime); margin-bottom: .6rem; }
.ngc-crown-tag::before { content: ''; width: 18px; height: 2px; background: var(--ngc-lime); }
.ngc-crown h1 { color: var(--ngc-page); font-size: clamp(2.2rem,5vw,6rem); max-width: 24ch; margin: 0 auto; }
.ngc-crown h1 em { font-style: italic; color: var(--ngc-lime); }
.ngc-crown-sub { color: rgba(250,248,243,.5); max-width: 50ch; margin: .7rem auto 0; font-size: .9rem; line-height: 1.85; }

/* ======================== SERVICES CATALOGUE ======================== */
.ngc-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--ngc-edge); border: 1px solid var(--ngc-edge); border-radius: var(--ngc-r3); overflow: hidden; }
.ngc-svc-card { background: var(--ngc-page); padding: 1.8rem; display: flex; flex-direction: column; transition: background .15s; }
.ngc-svc-card:hover { background: var(--ngc-warm); }
.ngc-svc-card-img { height: 140px; overflow: hidden; border-radius: var(--ngc-r2); margin-bottom: 1rem; }
.ngc-svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ngc-svc-card:hover .ngc-svc-card-img img { transform: scale(1.05); }
.ngc-svc-card-rate { font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ngc-redink); margin-bottom: .3rem; }
.ngc-svc-card-nm { font-family: var(--ngc-fh); font-size: 1rem; font-style: italic; font-weight: 700; color: var(--ngc-ink); margin-bottom: .3rem; }
.ngc-svc-card-desc { font-size: .76rem; color: var(--ngc-muted); line-height: 1.7; margin-bottom: .72rem; flex: 1; }
.ngc-svc-card-lk { font-family: var(--ngc-fb); font-size: .72rem; font-weight: 700; color: var(--ngc-redink); display: inline-flex; align-items: center; gap: .28rem; }

/* ======================== SERVICE PAGE ======================== */
.ngc-svc-layout { max-width: var(--ngc-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 260px; gap: 4.5rem; align-items: start; }
.ngc-svc-body h2 { font-family: var(--ngc-fh); font-size: 1.4rem; font-style: italic; font-weight: 700; color: var(--ngc-redink); margin: 2.5rem 0 .5rem; }
.ngc-svc-body p { margin-bottom: .9rem; }
.ngc-svc-incs { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.5rem; }
.ngc-svc-inc { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--ngc-fb); font-size: .84rem; color: var(--ngc-coal); }
.ngc-svc-inc svg { color: var(--ngc-lime2); flex-shrink: 0; margin-top: .14rem; }
.ngc-svc-del { background: var(--ngc-limelt); border-left: 3px solid var(--ngc-lime2); padding: .72rem 1rem; border-radius: 0 var(--ngc-r) var(--ngc-r) 0; margin-bottom: 1.5rem; }
.ngc-svc-del p { font-size: .84rem; margin: 0; color: var(--ngc-ink); }
.ngc-svc-aside { position: sticky; top: 76px; }
.ngc-aside-box { background: var(--ngc-dark); border-radius: var(--ngc-r3); overflow: hidden; }
.ngc-aside-img img { width: 100%; height: 110px; object-fit: cover; filter: brightness(.3) saturate(.5); }
.ngc-aside-body { padding: 1.2rem; }
.ngc-aside-nm { font-family: var(--ngc-fb); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(250,248,243,.35); margin-bottom: .2rem; }
.ngc-aside-rate { font-family: var(--ngc-fh); font-size: .88rem; font-style: italic; color: var(--ngc-lime); margin-bottom: .72rem; }
.ngc-aside-acts { display: flex; flex-direction: column; gap: .35rem; }
.ngc-aside-acts a, .ngc-aside-acts button { justify-content: center; font-size: .78rem; }
.ngc-other-h { font-family: var(--ngc-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--ngc-dim); margin-top: 1.4rem; margin-bottom: .55rem; }
.ngc-other-lk { display: flex; align-items: center; gap: .38rem; font-family: var(--ngc-fb); font-size: .76rem; color: var(--ngc-coal); padding: .38rem 0; border-bottom: 1px solid var(--ngc-edge2); transition: color .16s; }
.ngc-other-lk:hover { color: var(--ngc-redink); }

/* ======================== BUILDER ======================== */
.ngc-builder-layout { max-width: var(--ngc-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 260px; gap: 4rem; align-items: start; }
.ngc-bldr-section { margin-bottom: 2.5rem; }
.ngc-bldr-label { display: block; font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--ngc-redink); margin-bottom: .82rem; }
.ngc-bldr-items { display: flex; flex-direction: column; gap: .4rem; }
.ngc-bldr-item { background: var(--ngc-page); border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r); padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem; cursor: pointer; user-select: none; transition: var(--ngc-ease); }
.ngc-bldr-item:hover { border-color: var(--ngc-edge2); background: var(--ngc-warm); }
.ngc-bldr-item.ngc-pick { border-color: var(--ngc-lime2); background: var(--ngc-limelt); }
.ngc-bldr-chk { width: 17px; height: 17px; border: 1.5px solid var(--ngc-dim); border-radius: 3px; flex-shrink: 0; transition: var(--ngc-ease); }
.ngc-bldr-item.ngc-pick .ngc-bldr-chk { background: var(--ngc-lime2); border-color: var(--ngc-lime2); }
.ngc-bldr-nm { font-family: var(--ngc-fb); font-size: .84rem; color: var(--ngc-muted); flex: 1; }
.ngc-bldr-item.ngc-pick .ngc-bldr-nm { color: var(--ngc-ink); font-weight: 700; }
.ngc-bldr-pr { font-family: var(--ngc-fb); font-size: .64rem; font-weight: 700; color: var(--ngc-lime2); min-width: 5.5rem; text-align: right; }
.ngc-addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.ngc-addon-chip { background: var(--ngc-page); border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r); padding: .65rem .85rem; cursor: pointer; user-select: none; transition: var(--ngc-ease); }
.ngc-addon-chip:hover { border-color: var(--ngc-limebd); }
.ngc-addon-chip.ngc-chip-on { border-color: var(--ngc-lime2); background: var(--ngc-limelt); }
.ngc-addon-nm { font-family: var(--ngc-fb); font-size: .8rem; font-weight: 600; color: var(--ngc-muted); margin-bottom: .12rem; }
.ngc-addon-chip.ngc-chip-on .ngc-addon-nm { color: var(--ngc-ink); }
.ngc-addon-pr { font-size: .62rem; color: var(--ngc-dim); }
.ngc-addon-chip.ngc-chip-on .ngc-addon-pr { color: var(--ngc-lime2); }
.ngc-hrs-box { background: var(--ngc-page); border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r); padding: 1rem; }
.ngc-hrs-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .45rem; }
.ngc-hrs-lbl { font-family: var(--ngc-fb); font-size: .84rem; color: var(--ngc-muted); }
.ngc-hrs-val { font-family: var(--ngc-fh); font-size: 2rem; font-style: italic; font-weight: 700; color: var(--ngc-lime2); line-height: 1; }
.ngc-hrs-range { -webkit-appearance: none; width: 100%; height: 3px; background: var(--ngc-edge); border-radius: 2px; cursor: pointer; }
.ngc-hrs-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--ngc-lime2); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.ngc-hrs-note { font-size: .66rem; color: var(--ngc-dim); margin-top: .45rem; line-height: 1.6; }

/* Tally */
.ngc-tally { background: var(--ngc-dark); border-radius: var(--ngc-r3); overflow: hidden; position: sticky; top: 76px; }
.ngc-tally-head { background: var(--ngc-redink); padding: .8rem 1.15rem; }
.ngc-tally-hl { font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(250,248,243,.8); }
.ngc-tally-body { padding: .8rem 1.15rem; min-height: 60px; }
.ngc-tally-empty { font-family: var(--ngc-fb); font-size: .76rem; color: rgba(250,248,243,.28); font-style: italic; }
.ngc-tally-line { display: flex; justify-content: space-between; gap: .5rem; font-family: var(--ngc-fb); font-size: .76rem; margin-bottom: .38rem; }
.ngc-tally-lnm { color: rgba(250,248,243,.45); }
.ngc-tally-lpr { font-weight: 700; color: var(--ngc-page); }
.ngc-tally-foot { border-top: 1px solid rgba(255,255,255,.07); padding: .8rem 1.15rem; }
.ngc-tally-total-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: .8rem; }
.ngc-tally-tot-l { font-family: var(--ngc-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(250,248,243,.35); }
.ngc-tally-tot-v { font-family: var(--ngc-fh); font-size: 2.5rem; font-style: italic; font-weight: 700; color: var(--ngc-lime); line-height: 1; letter-spacing: -.03em; }
.ngc-tally-go { display: block; width: 100%; background: var(--ngc-lime); color: var(--ngc-dark); font-family: var(--ngc-fb); font-size: .82rem; font-weight: 700; padding: .68rem; border-radius: var(--ngc-r); border: none; cursor: pointer; transition: background .16s; }
.ngc-tally-go:hover:not(:disabled) { background: var(--ngc-lime2); }
.ngc-tally-go:disabled { opacity: .22; cursor: not-allowed; }

/* ======================== CHECKOUT ======================== */
.ngc-co-wrap { max-width: 880px; margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 250px; gap: 4rem; align-items: start; }
.ngc-fg { margin-bottom: .7rem; }
.ngc-fl { display: block; font-family: var(--ngc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ngc-dim); margin-bottom: .26rem; }
.ngc-fi { width: 100%; background: var(--ngc-warm); border: 1.5px solid var(--ngc-edge); border-radius: var(--ngc-r); padding: .6rem .85rem; color: var(--ngc-ink); font-size: .9rem; transition: border-color .16s; }
.ngc-fi:focus { outline: none; border-color: var(--ngc-lime2); background: var(--ngc-page); }
.ngc-fi::placeholder { color: var(--ngc-dim); }
.ngc-agree { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--ngc-fb); font-size: .8rem; color: var(--ngc-coal); line-height: 1.6; margin: .9rem 0; }
.ngc-agree input { margin-top: .12rem; accent-color: var(--ngc-lime2); }
.ngc-agree a { color: var(--ngc-redink); }
.ngc-co-side { background: var(--ngc-dark); border-radius: var(--ngc-r3); overflow: hidden; position: sticky; top: 76px; }
.ngc-co-hd { background: var(--ngc-redink); padding: .72rem 1rem; }
.ngc-co-hl { font-family: var(--ngc-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(250,248,243,.8); }
.ngc-co-body { padding: .8rem 1rem; }
.ngc-co-ln { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--ngc-fb); font-size: .76rem; margin-bottom: .38rem; }
.ngc-co-lnm { color: rgba(250,248,243,.45); }
.ngc-co-lpr { font-weight: 700; color: var(--ngc-page); }
.ngc-co-div { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: .55rem 0; }
.ngc-co-tot { display: flex; justify-content: space-between; align-items: flex-end; }
.ngc-co-tot-l { font-family: var(--ngc-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(250,248,243,.3); }
.ngc-co-tot-v { font-family: var(--ngc-fh); font-size: 2.2rem; font-style: italic; font-weight: 700; color: var(--ngc-lime); line-height: 1; letter-spacing: -.03em; }

/* ======================== LEGAL ======================== */
.ngc-legal { max-width: 820px; margin: 0 auto; padding: 5rem 2.5rem 7rem; }
.ngc-legal h2 { font-family: var(--ngc-fh); font-size: 1.4rem; font-style: italic; font-weight: 700; color: var(--ngc-redink); margin: 2.8rem 0 .6rem; }
.ngc-legal h3 { font-family: var(--ngc-fb); font-size: .96rem; font-weight: 700; color: var(--ngc-ink); margin: 1.4rem 0 .3rem; }
.ngc-legal p { margin-bottom: .9rem; font-size: .88rem; }
.ngc-legal ul { padding-left: 1.2rem; margin: .4rem 0 .9rem; display: flex; flex-direction: column; gap: .32rem; }
.ngc-legal li { font-size: .88rem; list-style: disc; color: var(--ngc-coal); line-height: 1.72; }
.ngc-legal a { color: var(--ngc-redink); }
.ngc-legal table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: .88rem 0 1.1rem; }
.ngc-legal th { background: var(--ngc-dark); color: white; padding: .5rem .9rem; text-align: left; font-size: .6rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-family: var(--ngc-fb); }
.ngc-legal td { padding: .5rem .9rem; border: 1px solid var(--ngc-edge); color: var(--ngc-coal); }
.ngc-legal address { background: var(--ngc-limelt); border-left: 3px solid var(--ngc-lime2); padding: .88rem 1.2rem; font-size: .86rem; color: var(--ngc-coal); line-height: 1.88; margin: .9rem 0; border-radius: 0 var(--ngc-r) var(--ngc-r) 0; }
.ngc-legal-eff { display: inline-block; font-family: var(--ngc-fb); font-size: .72rem; color: var(--ngc-dim); background: var(--ngc-warm); border: 1px solid var(--ngc-edge); padding: .28rem .72rem; border-radius: 20px; margin-bottom: 1.4rem; }

/* ======================== RESULT PAGES ======================== */
.ngc-result { min-height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2.5rem; background: var(--ngc-dark); }
.ngc-result-box { max-width: 460px; }

/* ======================== COOKIE + CHAT ======================== */
.ngc-cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ngc-dark3); border-top: 3px solid var(--ngc-lime); z-index: 9999; padding: .85rem 2rem; display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.ngc-cookie-bar p { font-family: var(--ngc-fb); font-size: .76rem; color: rgba(250,248,243,.6); margin: 0; }
.ngc-cookie-bar a { color: var(--ngc-lime); }
.ngc-ck-btns { display: flex; gap: .4rem; flex-shrink: 0; }
.ngc-ck-yes { background: var(--ngc-lime); color: var(--ngc-dark); font-family: var(--ngc-fb); font-size: .74rem; font-weight: 700; padding: .36rem .95rem; border: none; border-radius: var(--ngc-r); cursor: pointer; }
.ngc-ck-no  { background: transparent; color: rgba(250,248,243,.45); font-family: var(--ngc-fb); font-size: .74rem; padding: .36rem .95rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--ngc-r); cursor: pointer; }
.ngc-chat-fab { position: fixed; bottom: 4.5rem; right: 1.5rem; z-index: 9990; width: 50px; height: 50px; background: var(--ngc-dark); color: var(--ngc-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.35); cursor: pointer; border: 1.5px solid var(--ngc-limebd); transition: var(--ngc-ease); }
.ngc-chat-fab:hover { background: var(--ngc-lime); color: var(--ngc-dark); }
.ngc-chatbox { position: fixed; bottom: 7.5rem; right: 1.5rem; z-index: 9989; width: 268px; background: var(--ngc-page); border: 1px solid var(--ngc-edge); border-radius: var(--ngc-r3); box-shadow: var(--ngc-sh3); opacity: 0; pointer-events: none; transform: translateY(10px) scale(.97); transition: opacity .2s, transform .22s; overflow: hidden; }
.ngc-chatbox.ngc-chat-open { opacity: 1; pointer-events: auto; transform: none; }
.ngc-chatbox-hd { background: var(--ngc-dark); padding: .88rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.ngc-chatbox-title { font-family: var(--ngc-fh); font-size: .96rem; font-style: italic; font-weight: 700; color: var(--ngc-page); }
.ngc-chatbox-sub { font-size: .56rem; color: rgba(250,248,243,.4); font-family: var(--ngc-fb); }
.ngc-chatbox-x { color: rgba(250,248,243,.4); background: none; border: none; cursor: pointer; }
.ngc-chatbox-bd { padding: .85rem; }
.ngc-chat-sent { display: none; text-align: center; padding: .8rem; font-family: var(--ngc-fb); font-size: .78rem; color: var(--ngc-lime2); font-weight: 700; }
.ngc-chat-inp { width: 100%; background: var(--ngc-warm); border: 1px solid var(--ngc-edge); border-radius: var(--ngc-r); padding: .42rem .7rem; font-size: .78rem; color: var(--ngc-ink); margin-bottom: .38rem; font-family: var(--ngc-fb); resize: none; }
.ngc-chat-inp:focus { outline: none; border-color: var(--ngc-limebd); }
.ngc-chat-inp::placeholder { color: var(--ngc-dim); }
.ngc-chat-go { width: 100%; background: var(--ngc-dark); color: var(--ngc-lime); font-family: var(--ngc-fb); font-size: .76rem; font-weight: 700; padding: .46rem; border-radius: var(--ngc-r); border: none; cursor: pointer; }

/* ======================== ANIMATIONS ======================== */
.ngc-rise { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.ngc-rise.ngc-vis { opacity: 1; transform: none; }
.ngc-rise-l { opacity: 0; transform: translateX(-18px); transition: opacity .52s ease, transform .52s ease; }
.ngc-rise-l.ngc-vis { opacity: 1; transform: none; }
.ngc-rise-r { opacity: 0; transform: translateX(18px); transition: opacity .52s ease, transform .52s ease; }
.ngc-rise-r.ngc-vis { opacity: 1; transform: none; }

/* ======================== KPI BAND ======================== */
.ngc-kpi { background: var(--ngc-lime); }
.ngc-kpi-inner { max-width: var(--ngc-max); margin: 0 auto; padding: 3.5rem 2.5rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.ngc-kpi-cell { padding: 1rem 2rem; border-right: 1px solid rgba(14,13,11,.15); text-align: center; }
.ngc-kpi-cell:last-child { border-right: none; }
.ngc-kpi-n { font-family: var(--ngc-fh); font-size: 3rem; font-style: italic; font-weight: 700; color: var(--ngc-dark); line-height: 1; letter-spacing: -.04em; }
.ngc-kpi-l { font-family: var(--ngc-fb); font-size: .48rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: rgba(14,13,11,.5); margin-top: .25rem; }

/* ======================== FOOTER ======================== */
.ngc-footer { background: var(--ngc-ink); }
.ngc-footer-top { max-width: var(--ngc-max); margin: 0 auto; padding: 5.5rem 2.5rem 2.5rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; }
.ngc-footer-brand { font-family: var(--ngc-fh); font-size: 1.1rem; font-style: italic; font-weight: 700; color: white; margin-bottom: .25rem; }
.ngc-footer-brand span { color: var(--ngc-lime); font-style: normal; }
.ngc-footer-tag { font-family: var(--ngc-fb); font-size: .72rem; color: rgba(255,255,255,.3); max-width: 26ch; line-height: 1.72; margin-bottom: 1.2rem; }
.ngc-footer-soc { display: flex; gap: .38rem; }
.ngc-footer-soc a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--ngc-r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); transition: var(--ngc-ease); }
.ngc-footer-soc a:hover { border-color: var(--ngc-lime); color: var(--ngc-lime); }
.ngc-footer-col-h { font-family: var(--ngc-fb); font-size: .48rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: .82rem; }
.ngc-footer-lks { display: flex; flex-direction: column; gap: .42rem; }
.ngc-footer-lks a { font-family: var(--ngc-fb); font-size: .76rem; color: rgba(255,255,255,.4); transition: color .15s; }
.ngc-footer-lks a:hover { color: var(--ngc-lime); }
.ngc-footer-ct { display: flex; flex-direction: column; gap: .52rem; }
.ngc-footer-ct a { font-family: var(--ngc-fb); font-size: .74rem; color: rgba(255,255,255,.4); display: flex; align-items: flex-start; gap: .4rem; line-height: 1.55; transition: color .15s; }
.ngc-footer-ct a:hover { color: var(--ngc-lime); }
.ngc-footer-ct svg { flex-shrink: 0; color: var(--ngc-lime2); opacity: .7; margin-top: .04rem; }
.ngc-footer-btm { border-top: 1px solid rgba(255,255,255,.05); max-width: var(--ngc-max); margin: 0 auto; padding: 1.4rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ngc-footer-copy { font-family: var(--ngc-fb); font-size: .6rem; color: rgba(255,255,255,.22); }
.ngc-footer-policies { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ngc-footer-policies a { font-family: var(--ngc-fb); font-size: .6rem; color: rgba(255,255,255,.3); transition: color .15s; }
.ngc-footer-policies a:hover { color: var(--ngc-lime); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .ngc-nav-links { display: none; }
  .ngc-burger { display: flex; }
  .ngc-split-hero { grid-template-columns: 1fr; }
  .ngc-hero-left { max-width: none; padding: 3.5rem 2rem 5rem; justify-content: flex-start; }
  .ngc-hero-right { min-height: 45vw; }
  .ngc-svc-grid { grid-template-columns: 1fr 1fr; }
  .ngc-case-grid { grid-template-columns: 1fr; }
  .ngc-voice-grid { grid-template-columns: 1fr 1fr; }
  .ngc-process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .ngc-process-steps::before { display: none; }
  .ngc-faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ngc-faq-left { position: static; }
  .ngc-svc-layout, .ngc-builder-layout, .ngc-co-wrap { grid-template-columns: 1fr; }
  .ngc-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ngc-kpi-inner { grid-template-columns: 1fr 1fr; }
  .ngc-pkg-panel.ngc-panel-show { grid-template-columns: 1fr; }
  .ngc-svc-row { grid-template-columns: 48px 1fr 1fr; }
  .ngc-svc-rate { display: none; }
}
@media (max-width: 640px) {
  .ngc-split-hero { min-height: auto; }
  .ngc-hero-left { padding: 2.5rem 1.25rem 4rem; }
  .ngc-svc-grid { grid-template-columns: 1fr; }
  .ngc-voice-grid { grid-template-columns: 1fr; }
  .ngc-process-steps { grid-template-columns: 1fr 1fr; }
  .ngc-footer-top { grid-template-columns: 1fr; }
  .ngc-footer-policies { flex-wrap: wrap; gap: .65rem; }
  .ngc-shell { padding: 0 1.25rem; }
  .ngc-kpi-inner { padding: 2rem 1.25rem; }
  .ngc-addons-grid { grid-template-columns: 1fr; }
}
