/* ====== Netenginex — Production stylesheet (sourced from /assets/styles.css prototype) ====== */
:root {
  --navy-900: #0B1B3D;
  --navy-800: #122451;
  --navy-700: #1A2D63;
  --blue-500: #2D6BFF;
  --blue-600: #1E58E6;
  --ink: #1A2238;
  --ink-2: #4A5468;
  --ink-3: #7A8398;
  --line: #E5EAF2;
  --surface: #F6F8FB;
  --surface-2: #EEF2F8;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1200px;
  --section-y: 96px;
  --shadow-sm: 0 1px 2px rgba(11,27,61,.04), 0 1px 1px rgba(11,27,61,.03);
  --shadow-md: 0 8px 24px rgba(11,27,61,.08), 0 2px 6px rgba(11,27,61,.05);
  --shadow-lg: 0 20px 50px rgba(11,27,61,.12);
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--blue-500); text-decoration: none; }
a:hover { color: var(--blue-600); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-y) 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy-900); color: #D9E0F0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* ===== Eyebrow / kicker ===== */
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.section-title {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-lede {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head--left { text-align: left; }
.section-head--left .section-lede { margin: 0; }
.pricing-iap-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(45,107,255,.22);
  border-radius: 999px;
  background: rgba(45,107,255,.07);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.45;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--blue-500); color: #fff; }
.btn--primary:hover { background: var(--blue-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--outline { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy-900); }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 27, 61, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo__mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--blue-500);
  display: grid; place-items: center;
  color: #fff; font-size: 13px;
}
.nav,
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  position: relative;
}
.nav a {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  transition: color .15s;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 72px;
}
.nav__caret {
  font-size: 11px;
  line-height: 1;
  opacity: .72;
  transform: translateY(1px);
}
.nav__dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 70;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav__dropdown a {
  display: block;
  color: var(--navy-900);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
}
.nav__dropdown a:hover,
.nav__dropdown a:focus {
  color: var(--blue-500);
  background: var(--surface);
}
.nav a:hover { color: #fff; }
.nav a.is-active { color: #fff; }
.nav .nav__dropdown a:hover,
.nav .nav__dropdown a:focus {
  color: var(--blue-500);
}
.header-cta { display: flex; gap: 12px; align-items: center; }
.topbar {
  background: #07132C;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.7); }
.topbar__contact { display: flex; gap: 24px; }

/* ===== Hero ===== */
.hero {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(45,107,255,0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(45,107,255,0.08), transparent 50%);
  pointer-events: none;
}

/* ----- Rolling-media variant ----- */
.hero--rolling { padding: 0; }
.hero--rolling::before { display: none; }
.hero__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-6deg) scale(1.18);
  transform-origin: center;
}
.hero-col {
  position: relative;
  overflow: hidden;
  height: 100%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hero-col__track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation-duration: var(--speed, 50s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.hero-col--up   .hero-col__track { animation-name: heroScrollUp;   }
.hero-col--down .hero-col__track { animation-name: heroScrollDown; }
@keyframes heroScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes heroScrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.hero-tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0F2046;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-tile__cap {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  letter-spacing: -0.005em;
}
.hero-tile__badge {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #FF3B5C;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(11,27,61,0.92) 0%, rgba(11,27,61,0.78) 35%, rgba(11,27,61,0.55) 60%, rgba(11,27,61,0.35) 100%),
    linear-gradient(180deg, rgba(11,27,61,0.55) 0%, rgba(11,27,61,0.4) 50%, rgba(11,27,61,0.7) 100%);
}
.hero--rolling .hero__content {
  position: relative;
  z-index: 2;
  padding: 110px 24px 120px;
  max-width: 760px;
  margin: 0 auto 0 max(24px, calc(50% - var(--container)/2));
}
.hero--rolling .hero__cta { margin-top: 32px; }
.hero--rolling .hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-col__track { animation: none; }
}
@media (max-width: 960px) {
  .hero__media { grid-template-columns: repeat(2, 1fr); transform: rotate(-4deg) scale(1.3); }
  .hero--rolling .hero__content { padding: 72px 24px 80px; margin: 0 auto; }
  .hero__scrim { background: linear-gradient(180deg, rgba(11,27,61,0.85), rgba(11,27,61,0.7) 50%, rgba(11,27,61,0.95)); }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0 110px;
  position: relative;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero__kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: #5BFF9F; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--blue-500); }
.hero__lede {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat .num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat .lbl {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: #07132C;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero__badge .star { color: #F5B638; }
.hero__badge .num { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 18px; line-height: 1; }
.hero__badge .lbl { font-size: 12px; color: var(--ink-3); }

/* ===== Steps / How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 270px));
  gap: 24px;
  justify-content: center;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.step__num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
}
.step__icon {
  width: 56px; height: 56px;
  margin: 8px auto 20px;
  border-radius: 12px;
  background: rgba(45,107,255,0.08);
  color: var(--blue-500);
  display: grid; place-items: center;
}
.step__icon svg,
.service__icon svg { display: block; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* ===== Services grid ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  justify-content: center;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .2s;
  cursor: pointer;
}
.service:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service:hover .service__arrow { transform: translate(2px, -2px); color: var(--blue-500); }
.service__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--navy-900);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: all .2s;
}
.service:hover .service__icon { background: var(--blue-500); color: #fff; }
.service h3 { font-size: 19px; margin-bottom: 10px; }
.service p { color: var(--ink-2); font-size: 14.5px; margin-bottom: 18px; }
.service__arrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

/* ===== Why-us ===== */
.whyus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--blue-500);
}
.whyus__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, var(--blue-500), var(--navy-900));
}
.whyus__media img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.whyus__media-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.feat-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.feat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.feat__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(45,107,255,0.08);
  color: var(--blue-500);
  display: grid; place-items: center;
}
.feat h4 { font-size: 17px; margin-bottom: 4px; }
.feat p { color: var(--ink-2); font-size: 14.5px; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.tcard__stars { color: #F5B638; margin-bottom: 14px; letter-spacing: 1px; }
.tcard__quote {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  overflow: hidden;
}
.tcard__name { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 15px; }
.tcard__role { font-size: 13px; color: var(--ink-3); }

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pricing[hidden],
[data-pricing-cycle][hidden] {
  display: none !important;
}
.pricing--5 {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1280px;
  gap: 16px;
}
.pricing--woo {
  width: min(1420px, calc(100vw - 48px));
  max-width: none;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 20px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: all .2s;
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan--featured {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  border-color: var(--navy-900);
  transform: scale(1.04);
}
.plan--featured:hover { transform: scale(1.04) translateY(-3px); }
.plan--featured h3 { color: #fff; }
.plan--featured .plan__price { color: #fff; }
.plan--featured .plan__features li { color: rgba(255,255,255,0.78); }
.plan__tag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue-500);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan h3 { font-size: 18px; margin-bottom: 8px; }
.plan__sub { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.plan--featured .plan__sub { color: rgba(255,255,255,0.55); }
.plan__price {
  font-family: var(--pricing-price-font, var(--font-head));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.045em;
}
.plan__price del,
.plan__price ins {
  display: block;
  font-family: inherit;
  line-height: .95;
}
.plan__price del {
  order: 1;
  color: rgba(11,27,61,.48);
  font-size: .56em;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}
.plan__price ins {
  order: 2;
  color: inherit;
  font-size: 1em;
  font-weight: 800;
  text-decoration: none;
}
.plan--featured .plan__price del {
  color: rgba(255,255,255,.52);
}
.plan__price .amount,
.plan__price bdi,
.plan__price .woocommerce-Price-currencySymbol {
  font-family: inherit;
}
.plan__price .cents,
.plan__price .woocommerce-Price-currencySymbol {
  font-size: .55em;
  font-weight: 700;
  letter-spacing: -0.035em;
  vertical-align: .35em;
}
.plan__price del .woocommerce-Price-currencySymbol {
  font-size: .72em;
  vertical-align: .2em;
}
.plan__period { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.plan--featured .plan__period { color: rgba(255,255,255,0.5); }
.plan__features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.plan__features li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 8px 0 8px 28px;
  position: relative;
  border-top: 1px solid var(--line);
}
.plan--featured .plan__features li { border-top-color: rgba(255,255,255,0.1); }
.pricing--5 .plan { padding: 28px 22px; }
.pricing--5 .plan h3 { font-size: 17px; }
.pricing--5 .plan__price { font-size: 40px; }
.pricing--5 .plan__features li { font-size: 13.5px; padding: 7px 0 7px 24px; }
.plan__advisor-note {
  margin: -12px 0 22px;
  padding: 11px 12px;
  border: 1px solid rgba(45,107,255,.2);
  border-radius: 10px;
  background: #f6f9ff;
  color: var(--ink-2);
  text-align: left;
  font-size: 12.5px;
  line-height: 1.45;
}
.plan__advisor-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-500);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan--featured .plan__advisor-note {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.76);
}
.plan--featured .plan__advisor-note strong { color: #fff; }
.pricing--5 .plan--featured { transform: scale(1.05); }
.pricing--5 .plan--featured:hover { transform: scale(1.05) translateY(-3px); }

@media (max-width: 1100px) {
  .pricing--5 { grid-template-columns: repeat(3, 1fr); }
  .pricing--woo {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    transform: none;
  }
  .pricing--5 .plan--featured { transform: none; }
}
@media (max-width: 720px) {
  .pricing--woo {
    grid-template-columns: 1fr;
  }
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(45,107,255,0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%232D6BFF' stroke-width='2' stroke-linecap='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 10px;
}

/* ===== Pricing toggle ===== */
.price-toggle {
  display: inline-flex;
  background: var(--surface-2);
  padding: 4px;
  border-radius: 999px;
  margin: 0 auto 48px;
}
.price-toggle button {
  border: none; background: transparent;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s;
}
.price-toggle button.is-active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gphoto {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
}
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gphoto:hover img { transform: scale(1.06); }
.gphoto:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,107,255,.18);
}
.gphoto::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,27,61,0.7));
  opacity: 0; transition: opacity .2s;
}
.gphoto:hover::after { opacity: 1; }
.gphoto__label {
  position: absolute;
  bottom: 16px; left: 16px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s;
}
.gphoto:hover .gphoto__label { opacity: 1; transform: translateY(0); }
.gphoto--lg { grid-column: span 2; grid-row: span 2; }
.gphoto--tall { grid-row: span 2; }
.nx-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7,19,44,.88);
  backdrop-filter: blur(10px);
}
.nx-gallery-lightbox.is-open { display: flex; }
.nx-gallery-lightbox__dialog {
  position: relative;
  width: min(1180px, 96vw);
  max-height: 92vh;
  border-radius: 16px;
  background: #07132C;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  overflow: hidden;
}
.nx-gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #061026;
}
.nx-gallery-lightbox__caption {
  min-height: 46px;
  padding: 13px 18px;
  color: rgba(255,255,255,.82);
  font-family: var(--font-head);
  font-weight: 700;
  background: rgba(11,27,61,.92);
}
.nx-gallery-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(7,19,44,.72);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.nx-gallery-lightbox__close:hover,
.nx-gallery-lightbox__close:focus-visible {
  background: var(--blue-500);
  outline: none;
}
body.is-nx-lightbox-open { overflow: hidden; }

/* ===== Logos strip ===== */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logos__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-3);
  text-align: center;
  opacity: 0.7;
  transition: opacity .2s;
  letter-spacing: -0.02em;
}
.logos__item:hover { opacity: 1; color: var(--navy-900); }

/* ===== Blog ===== */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  cursor: pointer;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.post__media { aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 24px 26px 28px; }
.post__meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.post__meta .cat { color: var(--blue-500); }
.post h3 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.post__excerpt { font-size: 14.5px; color: var(--ink-2); }

/* ===== Contact ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45,107,255,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== Newsletter ===== */
.newsletter {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(45,107,255,0.25), transparent 60%);
}
.newsletter h2 { color: #fff; font-size: 30px; position: relative; }
.newsletter p { color: rgba(255,255,255,0.7); margin-top: 8px; position: relative; }
.newsletter__form { display: flex; gap: 10px; position: relative; min-width: 380px; }
.newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus { outline: none; border-color: var(--blue-500); background: rgba(255,255,255,0.1); }

/* ===== Map ===== */
.map {
  height: 360px;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.map__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,27,61,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,27,61,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue-500);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: var(--shadow-md);
}
.map__pin::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
}
.map__chip {
  position: absolute;
  top: 24px; left: 24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 14px;
}
.map__chip strong { display: block; font-family: var(--font-head); color: var(--navy-900); margin-bottom: 2px; }
.map__chip span { color: var(--ink-3); font-size: 13px; }

/* ===== Footer ===== */
.site-footer {
  background: #07132C;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid--has-social {
  grid-template-columns: minmax(240px, 1.45fr) minmax(130px, .8fr) minmax(150px, .9fr) minmax(130px, .75fr) minmax(150px, .9fr);
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
}
.footer-legal .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal .footer-links li { margin: 0; }
.footer-legal a { color: rgba(255,255,255,0.58); }
.footer-legal a:hover { color: #fff; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .15s;
}
.socials a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.socials a:hover { background: var(--blue-500); color: #fff; }

/* ===== Netenginex theme additions ===== */

/* Hero tile media: video and placeholder fill the tile like img */
.hero-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-tile__ph {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)) ,
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 6px, transparent 6px 14px),
    #0F2046;
}
@media (prefers-reduced-motion: reduce) {
  .hero-col__track { animation: none !important; transform: none !important; }
}
/* Editor-preview / future scroll-driven sections: freeze motion when staged. */
.hero.nb-static .hero-col__track,
.nb-static .hero-col__track { animation: none !important; transform: none !important; }

/* Skip link */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto; height: auto;
  background: var(--white);
  color: var(--navy-900);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  z-index: 999;
  clip: auto; clip-path: none;
}

/* Topbar tagline alignment */
.topbar__tagline { color: rgba(255,255,255,0.55); }

/* Header cart link */
.header-cart {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-cart:hover { color: #fff; }
.header-cart__count { color: rgba(255,255,255,0.55); font-weight: 500; }

/* Logo image variant (custom-logo) */
.logo--image img { max-height: 40px; width: auto; display: block; }

/* Footer columns: nested ul from wp_nav_menu */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: #fff; }
.footer-col--about .custom-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-col--about .custom-logo { max-height: 40px; width: auto; }
.footer-col--social .socials { margin-top: 2px; }

/* Map iframe */
.map iframe { display: block; }

/* Pagination */
.pagination { margin: 32px 0; display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }

/* Single post body */
.single-post__media { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.single-post__media img { width: 100%; height: auto; display: block; }
.single-post__body { max-width: 720px; }
.single-post__body p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.single-post__body h2 { font-size: 28px; margin: 40px 0 16px; }
.single-post__body h3 { font-size: 22px; margin: 32px 0 12px; }

/* ===== Editor mode overlay (mapping spec) ===== */
.editor-mode [data-acf] {
  position: relative;
  outline: 1.5px dashed rgba(45,107,255,0.55);
  outline-offset: 2px;
  cursor: help;
}
.editor-mode [data-acf]::after {
  content: attr(data-acf);
  position: absolute;
  top: -10px; left: 8px;
  z-index: 30;
  background: var(--blue-500);
  color: #fff;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  pointer-events: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.editor-mode [data-acf]:hover { outline-color: var(--blue-500); outline-style: solid; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  :root { --section-y: 64px; }
  .section-title { font-size: 30px; }
  .hero__inner { grid-template-columns: 1fr; padding: 64px 0; }
  .hero__portrait { aspect-ratio: 4/3; max-height: 400px; }
  .steps, .services, .testimonials, .pricing, .posts { grid-template-columns: minmax(0, 1fr); }
  .whyus, .contact { grid-template-columns: 1fr; gap: 40px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid--has-social { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal .footer-links { justify-content: flex-start; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; }
  .newsletter__form { min-width: 0; }
  .nav { display: none; }
  .topbar__contact { display: none; }
}
