/*
Theme Name: NGT Cybersecurity
Theme URI: https://www.ngtecno.com
Author: Next Generation Technology for Cybersecurity
Author URI: https://www.ngtecno.com
Description: Bilingual (English / Arabic RTL) corporate theme for Next Generation Technology for Cybersecurity, built to the NGT Corporate Identity Manual, Edition 01 (2026). Navy-led palette, Montserrat / Inter / IBM Plex Sans Arabic, and the §9.2 web architecture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary — for use by Next Generation Technology for Cybersecurity only
Text Domain: ngtcs
Tags: cybersecurity, corporate, business, rtl-language-support, translation-ready, custom-logo, custom-menu
*/

/* ==========================================================================
   1. TOKENS — CI Manual §4.5 reference values
   ========================================================================== */

:root {
  /* §4.2 Primary */
  --navy: #0A1F44;
  --electric: #2B7FFF;
  --cyan: #5FD7FF;
  /* §4.3 Neutrals */
  --white: #FFFFFF;
  --charcoal: #283040;
  --steel: #8C96A5;
  --mist: #F0F2F7;
  /* §4.4 Signal — state communication only, never decorative */
  --signal-green: #22B882;
  --signal-amber: #F0AA3C;
  --signal-red: #DC465A;

  /* Derived surfaces. Navy at reduced luminance for layered dark sections —
     these are tints of the approved colour, not new colours. */
  --navy-900: #061530;
  --navy-800: #0A1F44;
  --navy-700: #102A56;
  --navy-line: rgba(255, 255, 255, 0.12);

  /* §9.2 layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 80px;
  --rhythm: 96px;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 40px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;

  /* §5.1 type system */
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', 'Inter', Arial, sans-serif;
  --font: var(--font-body);
  --font-head: var(--font-display);
}

html[lang^="ar"] {
  --font: var(--font-arabic);
  --font-head: var(--font-arabic);
}

/* ==========================================================================
   2. BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;          /* §5.6 body leading 1.5× */
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--electric); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--navy); }

:focus-visible { outline: 3px solid var(--electric); outline-offset: 3px; }

.ngt-skip-link {
  position: absolute; inset-inline-start: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: var(--sp-2) var(--sp-3); z-index: 200;
}
.ngt-skip-link:focus { inset-inline-start: 0; color: #fff; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ==========================================================================
   3. TYPE — §5.5 scale, §5.6 setting rules
   ========================================================================== */

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 var(--sp-3); color: var(--navy); }

.t-display {
  font-size: clamp(2.4rem, 5.4vw, 3.75rem);   /* 48pt+ */
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.015em;                    /* §5.6 display tracking −10..−20 */
}
h1, .t-h1 { font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h2, .t-h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.15; font-weight: 700; }
h3, .t-h3 { font-size: 1.2rem; line-height: 1.2; font-weight: 600; }
h4, .t-h4 { font-size: 1rem; line-height: 1.25; font-weight: 600; }

.t-lead {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--steel);
  max-width: 68ch;                              /* §5.6 measure 45–75ch */
}

.t-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;                       /* §5.6 caps tracking +40..+80 */
  color: var(--electric);
  display: block;
  margin: 0 0 var(--sp-3);
}

.t-caption { font-size: 0.8rem; line-height: 1.4; color: var(--steel); }

p { margin: 0 0 var(--sp-3); max-width: 72ch; }
p:last-child { margin-bottom: 0; }

/* §5.4 Arabic sits marginally larger to balance optical weight */
html[lang^="ar"] body { font-size: 1.06rem; }
html[lang^="ar"] .t-eyebrow { letter-spacing: 0; }

/* §4.8 — Cyan and Electric fail AA on white at body size. They are permitted
   for display and short-form accent only; body copy never uses them. */
.accent-cyan { color: var(--cyan); }
.accent-electric { color: var(--electric); }

/* ==========================================================================
   4. LAYOUT — §9.2
   ========================================================================== */

.ngt-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.ngt-section { padding-block: var(--rhythm); }
.ngt-section--tight { padding-block: var(--sp-6); }
.ngt-section--mist { background: var(--mist); }
.ngt-section--navy { background: var(--navy); color: rgba(255, 255, 255, 0.82); }
.ngt-section--navy h2, .ngt-section--navy h3, .ngt-section--navy h4 { color: #fff; }
.ngt-section--navy .t-lead { color: rgba(255, 255, 255, 0.72); }
.ngt-section--navy .t-eyebrow { color: var(--cyan); }

.ngt-section__head { max-width: 760px; margin-bottom: var(--sp-6); }

.ngt-grid { display: grid; gap: var(--gutter); }
.ngt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ngt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ngt-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ngt-rule { height: 2px; background: var(--electric); border: 0; margin: 0; width: 64px; }
.ngt-hairline { height: 1px; background: var(--navy-line); border: 0; margin: 0; }

/* ==========================================================================
   5. BUTTONS — §4.7 Electric Blue on white text
   ========================================================================== */

.ngt-btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-head);
  padding: 14px var(--sp-4);
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ngt-btn:hover { transform: translateY(-2px); }

.ngt-btn--primary { background: var(--electric); color: #fff; }
.ngt-btn--primary:hover { background: #1668e8; color: #fff; }

.ngt-btn--ghost { border-color: var(--navy); color: var(--navy); }
.ngt-btn--ghost:hover { background: var(--navy); color: #fff; }

.ngt-btn--onDark { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.ngt-btn--onDark:hover { background: #fff; color: var(--navy); }

.ngt-btn__arrow { transition: transform var(--dur) var(--ease); }
.ngt-btn:hover .ngt-btn__arrow { transform: translateX(4px); }
html[dir="rtl"] .ngt-btn__arrow { transform: scaleX(-1); }
html[dir="rtl"] .ngt-btn:hover .ngt-btn__arrow { transform: scaleX(-1) translateX(4px); }

.ngt-btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ==========================================================================
   6. HEADER — §9.2: 80px, navy, logo left, nav centre, switcher + CTA right
   ========================================================================== */

.ngt-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.ngt-header__inner { display: flex; align-items: center; gap: var(--sp-4); min-height: var(--header-h); }

.ngt-brand { display: flex; align-items: center; gap: var(--sp-3); }
.ngt-brand img { width: auto; height: 56px; }   /* §3.4 min 32px digital */
.ngt-brand__text {
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem; line-height: 1.15; color: #fff;
}
.ngt-brand__text span {
  display: block; font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
}

.ngt-nav { margin-inline: auto; }
.ngt-nav ul { display: flex; align-items: center; gap: var(--sp-4); list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.ngt-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 500; color: rgba(255, 255, 255, 0.86);
  white-space: nowrap; padding-block: var(--sp-2); position: relative;
}
.ngt-nav a:hover { color: #fff; }
.ngt-nav a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 0; height: 2px; background: var(--cyan);
  transition: width var(--dur) var(--ease);
}
.ngt-nav a:hover::after, .ngt-nav .current-menu-item > a::after { width: 100%; }

.ngt-header__actions { display: flex; align-items: center; gap: var(--sp-3); }

.ngt-lang {
  display: inline-flex; border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px; overflow: hidden; font-size: 0.75rem; font-weight: 600;
  font-family: var(--font-head);
}
.ngt-lang a { padding: 6px 13px; color: rgba(255, 255, 255, 0.75); }
.ngt-lang a.is-active { background: var(--electric); color: #fff; }

.ngt-burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: var(--radius);
  background: transparent; cursor: pointer; padding: 12px;
}
.ngt-burger span { display: block; height: 2px; background: #fff; margin-bottom: 4px; }
.ngt-burger span:last-child { margin-bottom: 0; }

/* ==========================================================================
   7. HERO — §9.2: one headline, one supporting line, one CTA
   ========================================================================== */

.ngt-hero {
  position: relative;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(105deg, rgba(6, 21, 48, 0.97) 0%, rgba(10, 31, 68, 0.90) 46%, rgba(10, 31, 68, 0.62) 100%),
    url("assets/img/photos/shield-datahall.jpg");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
  color: #fff;
  padding-block: var(--sp-8);
  overflow: hidden;
}
.ngt-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.ngt-hero .t-eyebrow { color: var(--cyan); }
.ngt-hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.ngt-hero__lead { color: rgba(255, 255, 255, 0.80); margin-bottom: var(--sp-6); }
.ngt-hero__tagline {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 600; color: var(--cyan);
  margin-top: var(--sp-6);
}

/* ==========================================================================
   8. CARDS
   ========================================================================== */

.ngt-card {
  background: #fff;
  border: 1px solid #E2E6EF;
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  height: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ngt-card:hover { border-color: var(--electric); box-shadow: 0 10px 30px rgba(10, 31, 68, 0.10); transform: translateY(-3px); }
.ngt-card__index {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--electric);
  display: block; margin-bottom: var(--sp-2);
}
.ngt-card__title { font-size: 1.1rem; font-weight: 600; margin: 0 0 var(--sp-2); }
.ngt-card__text { font-size: 0.95rem; color: var(--steel); margin: 0; max-width: none; }

.ngt-section--navy .ngt-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--navy-line);
}
.ngt-section--navy .ngt-card:hover { border-color: var(--cyan); box-shadow: none; }
.ngt-section--navy .ngt-card__title { color: #fff; }
.ngt-section--navy .ngt-card__text { color: rgba(255, 255, 255, 0.70); }
.ngt-section--navy .ngt-card__index { color: var(--cyan); }

/* Pillar card — carries a top accent so the six read as a set */
.ngt-pillar { border-top: 3px solid var(--electric); }
.ngt-pillar ul { margin: var(--sp-3) 0 0; padding: 0; list-style: none; }
.ngt-pillar li {
  font-size: 0.9rem; color: var(--steel);
  padding-inline-start: var(--sp-3); position: relative; margin-bottom: var(--sp-2);
}
.ngt-pillar li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--electric);
}
.ngt-section--navy .ngt-pillar { border-top-color: var(--cyan); }
.ngt-section--navy .ngt-pillar li { color: rgba(255, 255, 255, 0.72); }
.ngt-section--navy .ngt-pillar li::before { background: var(--cyan); }

.ngt-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
.ngt-split--narrow { grid-template-columns: 5fr 7fr; align-items: start; }
.ngt-split--flip > *:first-child { order: 2; }
.ngt-split__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 10; background: var(--navy);
}
.ngt-split__media img { width: 100%; height: 100%; object-fit: cover; }
.ngt-split__media::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: 3px; background: var(--electric);
}
.ngt-split__media--tall { aspect-ratio: 4 / 5; }
.ngt-section--navy .ngt-split__media::after { background: var(--cyan); }

/* Photograph at the head of a card */
.ngt-card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ngt-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy); }
.ngt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease); }
.ngt-card--media:hover .ngt-card__media img { transform: scale(1.05); }
.ngt-card__body { padding: var(--sp-4); flex: 1; }

/* Full-bleed photographic band, always under a navy wash so type holds AA */
.ngt-band {
  position: relative; background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff;
}
.ngt-band h2, .ngt-band h3 { color: #fff; }
.ngt-band .t-lead { color: rgba(255, 255, 255, 0.78); }
.ngt-band .t-eyebrow { color: var(--cyan); }
.ngt-band--why  { background-image: linear-gradient(105deg, rgba(6,21,48,.95) 0%, rgba(10,31,68,.88) 100%), url("assets/img/photos/soc-operations.jpg"); }
.ngt-band--how  { background-image: linear-gradient(180deg, rgba(6,21,48,.93) 0%, rgba(10,31,68,.90) 100%), url("assets/img/photos/circuit-floor.jpg"); }
.ngt-band--comp { background-image: linear-gradient(105deg, rgba(6,21,48,.95) 0%, rgba(10,31,68,.86) 100%), url("assets/img/photos/abstract-network.jpg"); }
.ngt-band--stats { background-image: linear-gradient(180deg, rgba(6,21,48,.94) 0%, rgba(10,31,68,.94) 100%), url("assets/img/photos/code-dark.jpg"); }

/* Tagline band — §2.5: the line appears on every primary brand surface */
.ngt-tagline-band {
  background-color: var(--navy-900);
  background-image: linear-gradient(105deg, rgba(6,21,48,.90) 0%, rgba(10,31,68,.72) 100%), url("assets/img/photos/shield-datahall.jpg");
  background-size: cover; background-position: center;
  padding-block: var(--sp-7); text-align: center;
}
.ngt-tagline-band p {
  font-family: var(--font-head); font-weight: 700; color: var(--cyan);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 auto; max-width: 20ch; line-height: 1.15;
}

/* ==========================================================================
   9. LIFECYCLE — five ordered stages, so numbering carries meaning
   ========================================================================== */

.ngt-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gutter); position: relative; }
.ngt-step__num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; line-height: 1;
  color: var(--cyan); display: block; margin-bottom: var(--sp-2);
}
.ngt-step__bar { height: 2px; background: var(--navy-line); margin-bottom: var(--sp-3); position: relative; }
.ngt-step__bar::after {
  content: ""; position: absolute; inset-inline-start: 0; top: -3px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
}

/* ==========================================================================
   10. STATS & COMPLIANCE
   ========================================================================== */

.ngt-stat { text-align: center; }
.ngt-stat__figure { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 700; line-height: 1; color: var(--electric); }
.ngt-section--navy .ngt-stat__figure { color: var(--cyan); }
.ngt-stat__label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); margin-top: var(--sp-2); }
.ngt-section--navy .ngt-stat__label { color: rgba(255, 255, 255, 0.66); }

.ngt-standards { list-style: none; margin: 0; padding: 0; max-width: 820px; }
.ngt-standards li {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: baseline;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--navy-line);
}
.ngt-standards li:first-child { border-top: 1px solid var(--navy-line); }
.ngt-standards__name { font-family: var(--font-head); font-weight: 700; color: #fff; min-width: 190px; }
.ngt-standards__desc { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }

/* ==========================================================================
   11. LOGO WALLS — third-party marks shown as supplied, never recoloured
   ========================================================================== */

.ngt-logo-wall {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy-line);
  border-inline-start: 1px solid var(--navy-line);
  border-radius: var(--radius); overflow: hidden;
}
.ngt-logo-wall__item {
  min-height: 124px; display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4) var(--sp-3);
  border-inline-end: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  transition: background var(--dur) var(--ease);
}
.ngt-logo-wall__item:hover { background: rgba(255, 255, 255, 0.04); }
.ngt-logo-wall__item img { width: auto; height: auto; max-width: 100%; max-height: 64px; object-fit: contain; border-radius: 2px; }

/* ==========================================================================
   12. TEAM
   ========================================================================== */

.ngt-team { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.ngt-person__photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--navy); position: relative; }
.ngt-person__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.ngt-person:hover .ngt-person__photo img { transform: scale(1.04); }
.ngt-person__photo::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 3px; background: var(--electric);
}
.ngt-person__name { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; margin: var(--sp-3) 0 var(--sp-1); color: var(--navy); }
.ngt-person__role { font-size: 0.85rem; color: var(--steel); margin: 0; }
.ngt-section--navy .ngt-person__name { color: #fff; }
.ngt-section--navy .ngt-person__role { color: rgba(255, 255, 255, 0.66); }
.ngt-section--navy .ngt-person__photo::after { background: var(--cyan); }

/* ==========================================================================
   13. PAGE HERO / CTA
   ========================================================================== */

.ngt-page-hero {
  background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff; padding-block: var(--sp-7);
}
.ngt-page-hero h1 { color: #fff; }
.ngt-page-hero .t-lead { color: rgba(255, 255, 255, 0.80); }
.ngt-page-hero .t-eyebrow { color: var(--cyan); }

.ngt-page-hero--services { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/soc-operations.jpg"); }
.ngt-page-hero--about    { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/security-360.jpg"); }
.ngt-page-hero--compliance { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.86) 100%), url("assets/img/photos/abstract-network.jpg"); }
.ngt-page-hero--clients  { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/threat-radar.jpg"); }
.ngt-page-hero--partners { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/data-center.jpg"); }
.ngt-page-hero--team     { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/cyber-shield.jpg"); }
.ngt-page-hero--contact  { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.84) 100%), url("assets/img/photos/shield-datahall.jpg"); }
.ngt-page-hero--insights { background-image: linear-gradient(105deg, rgba(6,21,48,.96) 0%, rgba(10,31,68,.86) 100%), url("assets/img/photos/abstract-network.jpg"); }

.ngt-cta { background: var(--navy); color: #fff; text-align: center; }
.ngt-cta h2 { color: #fff; }
.ngt-cta p { color: rgba(255, 255, 255, 0.80); max-width: 640px; margin-inline: auto; }

/* ==========================================================================
   14. FORMS
   ========================================================================== */

.ngt-form { display: grid; gap: var(--sp-3); }
.ngt-field label {
  display: block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: var(--sp-1);
}
.ngt-field input, .ngt-field textarea, .ngt-field select {
  width: 100%; font-family: inherit; font-size: 1rem;
  padding: 12px var(--sp-3);
  border: 1px solid #D5DBE7; border-radius: var(--radius);
  background: #fff; color: var(--charcoal);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ngt-field input:focus, .ngt-field textarea:focus {
  border-color: var(--electric); box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.18); outline: none;
}
.ngt-notice {
  padding: var(--sp-3); border-radius: var(--radius);
  border-inline-start: 4px solid var(--signal-green);
  background: rgba(34, 184, 130, 0.10); font-size: 0.95rem;
}
.ngt-notice--error { border-color: var(--signal-red); background: rgba(220, 70, 90, 0.08); }

.ngt-office { border-top: 2px solid var(--electric); padding-top: var(--sp-3); }
.ngt-office h3 { font-size: 1rem; margin-bottom: var(--sp-2); }
.ngt-office p { font-size: 0.9rem; color: var(--steel); }

/* ==========================================================================
   15. POSTS
   ========================================================================== */

.ngt-post-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; padding: 0; }
.ngt-post-card__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--mist); }
.ngt-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.ngt-post-card:hover .ngt-post-card__thumb img { transform: scale(1.05); }
.ngt-post-card__inner { padding: var(--sp-4); }
.ngt-post-card__meta { font-size: 0.78rem; color: var(--steel); margin-bottom: var(--sp-2); }
.ngt-post-card__title { font-size: 1.1rem; font-weight: 600; margin: 0 0 var(--sp-2); }
.ngt-post-card__title a { color: var(--navy); }
.ngt-post-card__title a:hover { color: var(--electric); }

.ngt-entry { max-width: 760px; margin-inline: auto; }
.ngt-entry h2 { margin-top: var(--sp-6); }
.ngt-entry img { border-radius: var(--radius); margin-block: var(--sp-4); }
.ngt-entry blockquote {
  margin: var(--sp-4) 0; padding-inline-start: var(--sp-4);
  border-inline-start: 3px solid var(--electric); font-size: 1.1rem;
}

.ngt-pagination { display: flex; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-6); }
.ngt-pagination .page-numbers { padding: 8px 14px; border: 1px solid #D5DBE7; border-radius: var(--radius); color: var(--navy); }
.ngt-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ==========================================================================
   16. FOOTER — §9.2 four-column navy grid
   ========================================================================== */

.ngt-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.70); padding-block: var(--sp-7) var(--sp-4); }
.ngt-footer__brand { display: inline-block; margin-bottom: var(--sp-4); }
.ngt-footer__brand img { width: auto; height: 68px; }
.ngt-footer__tagline { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--cyan); margin-bottom: var(--sp-6); }
.ngt-footer h4 {
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; margin-bottom: var(--sp-3); font-weight: 700;
}
.ngt-footer a { color: rgba(255, 255, 255, 0.70); }
.ngt-footer a:hover { color: var(--cyan); }
.ngt-footer ul { list-style: none; margin: 0; padding: 0; }
.ngt-footer li { margin-bottom: var(--sp-2); font-size: 0.9rem; }
.ngt-footer p { font-size: 0.9rem; }
.ngt-footer__legal {
  margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: 1px solid var(--navy-line);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; font-size: 0.8rem;
}

/* ==========================================================================
   17. RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .ngt-steps { grid-template-columns: repeat(3, 1fr); row-gap: var(--sp-5); }
}

@media (max-width: 992px) {
  .ngt-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ngt-team { grid-template-columns: repeat(3, 1fr); }
  .ngt-logo-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 950px) {
  .ngt-header__inner { position: relative; flex-wrap: wrap; }
  .ngt-brand img { height: 48px; }
  .ngt-header__actions { order: 2; margin-inline-start: auto; }
  .ngt-burger { display: block; order: 3; margin-inline-start: var(--sp-2); }
  .ngt-nav {
    order: 4; display: none; position: absolute; inset-inline: 0; top: 100%;
    background: var(--navy); border-bottom: 1px solid var(--navy-line);
    padding: var(--sp-3) var(--gutter);
  }
  .ngt-nav.is-open { display: block; }
  .ngt-nav ul { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; --rhythm: 64px; }
  .ngt-grid--2, .ngt-grid--3 { grid-template-columns: 1fr; }
  .ngt-split, .ngt-split--narrow { grid-template-columns: 1fr; gap: var(--sp-5); }
  .ngt-split--flip > *:first-child { order: 0; }
  .ngt-split__media, .ngt-split__media--tall { aspect-ratio: 16 / 10; }
  .ngt-steps { grid-template-columns: repeat(2, 1fr); }
  .ngt-team { grid-template-columns: repeat(2, 1fr); }
  .ngt-hero { padding-block: var(--sp-6); background-position: center, 72% center; }
  .ngt-standards li { flex-direction: column; gap: var(--sp-1); }
  .ngt-standards__name { min-width: 0; }
}

@media (max-width: 480px) {
  .ngt-grid--4 { grid-template-columns: 1fr; }
  .ngt-steps { grid-template-columns: 1fr; }
  .ngt-logo-wall { grid-template-columns: repeat(2, 1fr); }
  .ngt-header__inner { gap: var(--sp-2); }
  .ngt-footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .ngt-card--media:hover .ngt-card__media img,
  .ngt-person:hover .ngt-person__photo img,
  .ngt-post-card:hover .ngt-post-card__thumb img { transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   18. WORDPRESS CORE
   ========================================================================== */

.alignleft { float: left; margin-inline-end: var(--sp-4); margin-bottom: var(--sp-3); }
.alignright { float: right; margin-inline-start: var(--sp-4); margin-bottom: var(--sp-3); }
.aligncenter { margin-inline: auto; }
.wp-caption-text, .gallery-caption { font-size: 0.8rem; color: var(--steel); }
