.elementor-426 .elementor-element.elementor-element-03a3b09{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-426 .elementor-element.elementor-element-eb29be3{width:100%;max-width:100%;padding:0px 0px 0px 0px;}body.elementor-page-426{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-eb29be3 *//* ===========================================
   GLOBAL BODY BACKGROUND (fix white strip)
   =========================================== */
body {
  background: #020617;
}

/* ===========================================
   GLOBAL SMOOTH SCROLL
   =========================================== */
html {
  scroll-behavior: smooth;
}

/* ===========================================
   NEXTGEN GLOBAL TOKENS - DARK THEME
   =========================================== */
:root {
  --ng-primary: #3b82f6;
  --ng-primary-dark: #1e40af;
  --ng-accent: #06b6d4;

  --ng-bg-dark: #0f172a;
  --ng-bg-dark-alt: #020617;

  --ng-surface: #111827;
  --ng-surface-soft: #1f2937;
  --ng-border: #1f2937;

  --ng-text: #f9fafb;
  --ng-text-muted: #9ca3af;

  --ng-success: #22c55e;
  --ng-error: #ef4444;

  --ng-radius-md: 12px;
  --ng-radius-lg: 20px;

  --ng-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);

  --ng-glow: rgba(6, 182, 212, 0.75);
}

/* ===========================================
   BASE SHELL & TYPOGRAPHY
   =========================================== */
.ng-master-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: radial-gradient(
    circle at top left,
    rgba(17, 24, 39, 0.96) 0,
    rgba(15, 23, 42, 0.96) 45%,
    rgba(2, 6, 23, 0.98) 100%
  );
  color: var(--ng-text);
  padding: 80px 0 120px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  z-index: 0;
}

.ng-master-shell h1,
.ng-master-shell h2,
.ng-master-shell h3,
.ng-master-shell h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

/* Container */
.ng-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wrap for everything below hero */
.ng-below-hero {
  position: relative;
}

/* ===========================================
   TECH TEXTURE BACKGROUND
   =========================================== */
.ng-bg-texture {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent 55%),
    repeating-linear-gradient(
      to right,
      rgba(148, 163, 184, 0.12) 0,
      rgba(148, 163, 184, 0.12) 1px,
      transparent 1px,
      transparent 24px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(148, 163, 184, 0.12) 0,
      rgba(148, 163, 184, 0.12) 1px,
      transparent 1px,
      transparent 24px
    );
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: ng-bg-drift 30s linear infinite;
}

.ng-bg-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.2) 0, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(59, 130, 246, 0.25) 0, transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(15, 118, 110, 0.3) 0, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

@keyframes ng-bg-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-40px, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* ===========================================
   PARTICLES & ENERGY STREAMS (BELOW HERO ONLY)
   =========================================== */
#ng-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: 0.9;
}

.ng-energy-stream {
  position: absolute;
  height: 1px;
  width: 22vw;
  top: calc(10vh + var(--y-offset));
  left: -18vw;
  background: linear-gradient(90deg, transparent, var(--ng-accent), transparent);
  opacity: 0.6;
  animation: ng-stream-move 7s linear infinite;
  filter: drop-shadow(0 0 10px var(--ng-glow));
  z-index: -2;
}

@keyframes ng-stream-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120vw);
  }
}

.ng-energy-stream:nth-of-type(1) {
  --y-offset: 4vh;
  animation-delay: 0s;
}
.ng-energy-stream:nth-of-type(2) {
  --y-offset: 18vh;
  animation-delay: -1.5s;
}
.ng-energy-stream:nth-of-type(3) {
  --y-offset: 32vh;
  animation-delay: -3s;
}
.ng-energy-stream:nth-of-type(4) {
  --y-offset: 46vh;
  animation-delay: -4.2s;
}
.ng-energy-stream:nth-of-type(5) {
  --y-offset: 60vh;
  animation-delay: -5.8s;
}

/* ===========================================
   SECTIONS & GRIDS
   =========================================== */
.ng-section-hero {
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}

.ng-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.ng-text-center {
  text-align: center;
}

.ng-grid-4,
.ng-grid-3,
.ng-grid-2 {
  display: grid;
  gap: 24px;
}

.ng-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ng-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ng-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .ng-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ng-grid-4,
  .ng-grid-3,
  .ng-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Section headings */
.ng-section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ng-section-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ng-text-muted);
  font-size: 0.98rem;
}

/* Mission shell */
.ng-mission-shell {
  gap: 24px;
}

/* ===========================================
   HERO LAYOUT, ORB & SPARKLES
   =========================================== */
.ng-section-hero .ng-container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Floating orb */
.ng-hero-orb {
  position: absolute;
  right: 4%;
  top: 10%;
  width: 260px;
  height: 260px;
  border-radius: 45% 70% 35% 65%;
  background:
    radial-gradient(circle at 30% 20%, rgba(248, 250, 252, 0.7), rgba(59, 130, 246, 0.4), transparent 70%),
    radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.75), transparent 65%);
  filter: blur(0.3px) drop-shadow(0 0 26px rgba(59, 130, 246, 0.8));
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  animation:
    ng-orb-float 9s ease-in-out infinite alternate,
    ng-orb-morph 11s ease-in-out infinite;
  z-index: 1;
}

@keyframes ng-orb-float {
  0% {
    transform: translate3d(0, -10px, 0) scale(0.98);
  }
  25% {
    transform: translate3d(-26px, 12px, 0) scale(1.06) rotate(2deg);
  }
  50% {
    transform: translate3d(-8px, 18px, 0) scale(1.02) rotate(-2deg);
  }
  75% {
    transform: translate3d(-20px, -6px, 0) scale(1.09) rotate(1deg);
  }
  100% {
    transform: translate3d(-4px, 10px, 0) scale(0.96) rotate(-1deg);
  }
}

@keyframes ng-orb-morph {
  0% {
    border-radius: 45% 70% 35% 65%;
  }
  20% {
    border-radius: 60% 40% 70% 30%;
  }
  40% {
    border-radius: 30% 70% 40% 80%;
  }
  60% {
    border-radius: 70% 40% 30% 60%;
  }
  80% {
    border-radius: 35% 80% 70% 30%;
  }
  100% {
    border-radius: 45% 70% 35% 65%;
  }
}

/* Sparkling hero particles behind content */
.ng-hero-data-streams {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Spark dots */
.ng-hero-spark {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 250, 252, 1) 0, rgba(56, 189, 248, 0.8) 50%, transparent 70%);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.9));
  animation: ng-spark-float 3.2s linear infinite;
}

@keyframes ng-spark-float {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    transform: translate3d(0, -260%, 0);
    opacity: 0;
  }
}

/* Hero content */
.ng-hero-content {
  position: relative;
  z-index: 3;
}

.ng-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: var(--ng-text-muted);
  margin-bottom: 16px;
}

.ng-hero-tag .tag-icon {
  color: var(--ng-accent);
}

/* Hero title and lines */
.ng-hero-title {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 16px;
}

.ng-hero-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Solid gradient words */
.ng-text-solid {
  background: linear-gradient(90deg, var(--ng-primary), var(--ng-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated flowing gradient words - smoother & clearly visible, slightly faster */
.ng-text-anim {
  position: relative;
  background: linear-gradient(
    90deg,
    #f9fafb 0%,
    #f9fafb 18%,
    var(--ng-primary) 38%,
    var(--ng-accent) 55%,
    var(--ng-primary) 72%,
    #f9fafb 90%,
    #f9fafb 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ng-text-flow 5s linear infinite;
}

/* Slow, continuous horizontal flow */
@keyframes ng-text-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

/* Hero sub and actions */
.ng-hero-sub {
  max-width: 620px;
  font-size: 0.98rem;
  color: var(--ng-text-muted);
  margin-bottom: 24px;
}

.ng-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

/* Hero highlights */
.ng-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  font-size: 0.9rem;
}

.ng-hero-highlights .highlight {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ng-text-muted);
}

.ng-hero-highlights .icon {
  font-size: 1.1rem;
}

/* Hero side panel */
.ng-hero-panel {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.2), rgba(15, 23, 42, 0.98));
  padding: 24px;
  border-radius: var(--ng-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--ng-shadow-soft);
  position: relative;
  z-index: 3;
}

.ng-hero-panel h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.ng-hero-panel p {
  font-size: 0.9rem;
  color: var(--ng-text-muted);
  margin: 0 0 18px;
}

.ng-hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ng-hero-metric-grid .metric-box {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.8rem;
}

.ng-hero-metric-grid .metric-box strong {
  display: block;
  color: var(--ng-accent);
  margin-bottom: 4px;
}

/* Hero responsive - tablet */
@media (max-width: 900px) {
  .ng-section-hero .ng-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ng-hero-panel {
    max-width: 440px;
    margin: 0 auto;
  }

  .ng-hero-title {
    font-size: 2.3rem;
  }

  .ng-hero-highlights {
    grid-template-columns: 1fr;
  }

  .ng-hero-orb {
    right: 3%;
    top: 16%;
    width: 210px;
    height: 210px;
    opacity: 0.6;
  }
}

/* Hero + FAQ mobile tuning */
@media (max-width: 600px) {
  .ng-master-shell {
    padding-top: 70px;
  }

  .ng-section {
    padding: 60px 0;
  }

  .ng-section-title {
    font-size: 1.6rem;
  }

  .ng-hero-title {
    font-size: 2rem;
  }

  /* Show the orb again on mobile but smaller, softer, and pulled aside */
  .ng-hero-orb {
    display: block;
    width: 150px;
    height: 150px;
    top: 6%;
    right: -12%;
    opacity: 0.4;
    filter: blur(0.6px) drop-shadow(0 0 18px rgba(59, 130, 246, 0.7));
  }

  .ng-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Keep FAQ fully on screen and readable */
  .ng-faq-wrapper {
    width: 100%;
    box-sizing: border-box;
  }

  .ng-faq-question {
    flex-wrap: wrap;
    align-items: flex-start;
    overflow-wrap: anywhere;
    font-size: 0.9rem;
    padding: 12px 4px;
  }

  .ng-faq-question span:last-child {
    margin-left: auto;
    flex-shrink: 0;
  }
}

/* ===========================================
   CARDS & HOVER (smooth transitions)
   =========================================== */
.ng-card {
  position: relative;
  background: var(--ng-surface);
  border-radius: var(--ng-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 18px;
  font-size: 0.94rem;
}

/* Hover pop + magnetic glow */
.ng-hover-pop {
  transition:
    transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ng-hover-pop:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--ng-shadow-soft);
  border-color: var(--ng-primary);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), #111827);
}

.ng-hover-pop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--mouse-x) var(--mouse-y),
    rgba(6, 182, 212, 0.22),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  border-radius: inherit;
}

.ng-hover-pop:hover::after {
  opacity: 1;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.ng-link-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ng-link-card h3,
.ng-link-card p {
  color: var(--ng-text);
}

.ng-link-card:hover h3,
.ng-link-card:hover p {
  color: var(--ng-text);
}

/* ===========================================
   BUTTONS
   =========================================== */
.ng-btn-primary,
.ng-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.ng-btn-primary {
  background: linear-gradient(135deg, var(--ng-primary), var(--ng-accent));
  color: white;
  border: none;
}

.ng-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.7);
}

.ng-btn-outline {
  border: 1px solid var(--ng-primary);
  color: var(--ng-primary);
  background: transparent;
}

.ng-btn-outline:hover {
  color: var(--ng-accent);
  border-color: var(--ng-accent);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.6);
}

/* ===========================================
   PROCESS NUMBERS
   =========================================== */
.step-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ng-accent);
  margin-bottom: 4px;
}

/* ===========================================
   BULLET LISTS
   =========================================== */
.ng-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ng-bullet-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--ng-text-muted);
}

/* ===========================================
   PC + IT BAND
   =========================================== */
.ng-pcit-band {
  padding: 24px 26px;
  border-radius: var(--ng-radius-lg);
  background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.2), #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--ng-shadow-soft);
  text-align: left;
}

.ng-pcit-band h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.ng-pcit-band p {
  margin: 0;
  color: var(--ng-text-muted);
  font-size: 0.94rem;
  max-width: 740px;
}

/* ===========================================
   PRICING
   =========================================== */
.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 14px;
}

/* Pricing comparison mini table */
.ng-pricing-compare {
  margin-top: 32px;
}

.ng-pricing-compare-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: left;
}

.ng-pricing-compare-table {
  border-radius: var(--ng-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.96);
  overflow: hidden;
  font-size: 0.88rem;
}

.ng-pricing-compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(30, 64, 175, 0.4);
}

.ng-pricing-compare-row:first-child {
  border-top: none;
}

.ng-pricing-compare-cell {
  padding: 10px 12px;
  text-align: center;
}

.ng-pricing-compare-feature {
  text-align: left;
  font-weight: 500;
}

.ng-pricing-compare-header {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.98));
  font-weight: 600;
}

.ng-pricing-compare-header .ng-pricing-compare-cell {
  font-size: 0.9rem;
}

/* Zebra striping */
.ng-pricing-compare-row:nth-child(2n + 1):not(.ng-pricing-compare-header) {
  background: rgba(15, 23, 42, 0.98);
}

.ng-pricing-compare-row:nth-child(2n):not(.ng-pricing-compare-header) {
  background: rgba(17, 24, 39, 0.98);
}

/* Responsive table stack */
@media (max-width: 900px) {
  .ng-pricing-compare-row {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .ng-pricing-compare-table {
    font-size: 0.86rem;
  }

  .ng-pricing-compare-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .ng-pricing-compare-cell {
    padding: 8px 8px;
  }
}

@media (max-width: 540px) {
  .ng-pricing-compare-table {
    font-size: 0.84rem;
    overflow-x: auto;
  }

  .ng-pricing-compare-row {
    min-width: 560px;
  }
}

/* ===========================================
   FAQ
   =========================================== */
.ng-faq-wrapper {
  max-width: 780px;
  margin: 24px auto 0;
  background: rgba(15, 23, 42, 0.95);
}

.ng-faq-item + .ng-faq-item {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.ng-faq-question,
.ng-faq-question:focus,
.ng-faq-question:active {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  color: var(--ng-text);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-left-color 0.2s ease, padding-left 0.2s ease;
  outline: none;
}

.ng-faq-question span:last-child {
  margin-left: 12px;
  font-weight: 600;
}

.ng-faq-answer {
  font-size: 0.9rem;
  color: var(--ng-text-muted);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

/* Hover and open states for FAQ */
.ng-faq-item:hover .ng-faq-question {
  color: var(--ng-accent);
  background: linear-gradient(
    to right,
    rgba(6, 182, 212, 0.08),
    transparent
  );
}

.ng-faq-item.ng-open .ng-faq-question {
  color: var(--ng-primary);
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.12),
    transparent
  );
  border-left: 2px solid var(--ng-accent);
  padding-left: 12px;
}

.ng-faq-item.ng-open .ng-faq-answer {
  padding: 0 0 12px;
}

/* ===========================================
   AUDIT FORM
   =========================================== */
.ng-audit-shell {
  max-width: 540px;
  margin: 32px auto 0;
  padding: 24px 26px;
  border-radius: var(--ng-radius-lg);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.2), #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--ng-shadow-soft);
}

.ng-audit-shell h2 {
  font-size: 1.8rem;
  margin: 0 0 6px;
}

.ng-audit-shell p {
  font-size: 0.94rem;
  color: var(--ng-text-muted);
  margin: 0 0 20px;
}

#auditForm {
  display: grid;
  gap: 10px;
}

#auditForm input[type="text"],
#auditForm input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--ng-text);
  font-size: 0.9rem;
}

#auditForm input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

#auditStatus {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ng-accent);
}

/* ===========================================
   CONTACT FORM
   =========================================== */
.ng-contact-shell {
  max-width: 780px;
  margin: 0 auto;
}

.ng-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ng-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ng-contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}

.ng-contact-field label {
  color: var(--ng-text-muted);
}

.ng-contact-field input,
.ng-contact-field select,
.ng-contact-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--ng-text);
  font-size: 0.9rem;
  padding: 10px 12px;
}

.ng-contact-field textarea {
  resize: vertical;
}

.ng-contact-field input::placeholder,
.ng-contact-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.ng-contact-status {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ng-accent);
}

@media (max-width: 768px) {
  .ng-contact-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   LAST UPDATED / PERFORMANCE BAR
   =========================================== */
.ng-site-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--ng-radius-lg);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ng-text-muted);
}

.meta-value {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .ng-site-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ng-site-meta {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   REVEAL ANIMATION
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */