/* NxtGlobal · Landing — Control y reducción de costos operativos */
@import url('design-system/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* ===== Tweakable theme ===== */
:root {
  --accent: var(--ng-navy-700);
  --accent-deep: var(--ng-navy-900);
  --accent-soft: var(--ng-blue-700);
  --section-pad: 112px;
  --section-pad-sm: 80px;
}
:root[data-accent="blue"] {
  --accent: var(--ng-blue-700);
  --accent-deep: var(--ng-navy-800);
  --accent-soft: var(--ng-blue-600);
}
:root[data-density="compact"] {
  --section-pad: 72px;
  --section-pad-sm: 56px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent-soft);
}
.eyebrow.on-dark { color: var(--ng-blue-300); }
.eyebrow.on-dark::before { background: var(--ng-blue-300); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms var(--ease-standard),
              box-shadow 200ms var(--ease-standard),
              background 200ms var(--ease-standard),
              color 120ms;
}
.btn-lg { height: 54px; padding: 0 30px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(11, 61, 145, 0.4);
}
.btn-primary:active { transform: scale(0.98); box-shadow: none; }
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ng-navy-900);
  border-color: var(--ng-slate-300);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: gap 200ms var(--ease-standard), color 120ms;
}
.link-cta:hover { gap: 12px; color: var(--ng-navy-900); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 200ms var(--ease-standard), border-color 200ms, box-shadow 200ms;
  border-bottom: 1px solid transparent;
  background-color: transparent;
}
.nav.is-scrolled {
  background-color: #ffffff;
  border-bottom-color: var(--ng-slate-200);
  box-shadow: 0 1px 0 rgba(11, 19, 37, 0.04), 0 4px 24px rgba(11, 19, 37, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 36px; display: block; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms;
}
.nav-links a:hover { color: #fff; }
.nav.is-scrolled .nav-links a { color: var(--fg-2); }
.nav.is-scrolled .nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-quiet {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.nav.is-scrolled .nav-quiet { color: var(--fg-2); }

/* ===== Hero — base ===== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 200px 0 140px;
  margin-top: -76px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 24px;
  color: #fff;
}
.hero-display em {
  font-style: normal;
  color: var(--ng-blue-300);
  position: relative;
  display: inline-block;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta {
  display: flex;
  gap: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 28px;
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-meta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

/* Hero variant: photo */
.hero[data-variant="photo"] {
  background: var(--ng-navy-900);
}
.hero[data-variant="photo"] {
  background: var(--ng-navy-900);
}
.hero[data-variant="photo"] .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(11, 19, 37, 0.94) 0%, rgba(14, 42, 107, 0.86) 45%, rgba(14, 42, 107, 0.78) 100%),
    linear-gradient(180deg, rgba(11, 19, 37, 0.35) 0%, rgba(11, 19, 37, 0.55) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero[data-variant="photo"] .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 37, 0.35);
}
.hero[data-variant="photo"] .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 32px);
}

/* Hero variant: solid */
.hero[data-variant="solid"] {
  background: linear-gradient(180deg, var(--ng-navy-900) 0%, var(--ng-navy-700) 100%);
}
.hero[data-variant="solid"] .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero[data-variant="solid"] .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 28px);
}
.hero[data-variant="solid"] .hero-bg::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(30, 111, 235, 0.5), transparent 60%);
  filter: blur(20px);
}

/* Hero variant: blueprint pattern */
.hero[data-variant="blueprint"] {
  background: var(--ng-navy-900);
}
.hero[data-variant="blueprint"] .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ng-navy-900);
  background-image:
    linear-gradient(rgba(127, 177, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 177, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}
.hero[data-variant="blueprint"] .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 35%, rgba(30, 111, 235, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(11, 61, 145, 0.4), transparent 70%);
}
.hero[data-variant="blueprint"] .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(127, 177, 255, 0.04) 0 1px, transparent 1px 14px);
}

/* Hero visual side */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 86, 0.25), rgba(7, 36, 86, 0.7)),
    url('https://images.unsplash.com/photo-1573164574572-cb89e39749b4?auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
}
.hero-photo-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.hero-photo-card .eyebrow { margin-bottom: 8px; }
.hero-photo-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ng-navy-900);
  margin: 0 0 6px;
}
.hero-photo-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ng-slate-600);
  margin: 0;
}

/* Hero KPI panel — used on solid + blueprint variants */
.hero-kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-kpi > div {
  padding: 28px 28px;
  background: rgba(11, 19, 37, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-kpi-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
}
.hero-kpi-num span { color: var(--ng-blue-300); font-size: 28px; }
.hero-kpi-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Logo strip */
.logos {
  padding: 56px 0;
  background: var(--ng-slate-50);
  border-bottom: 1px solid var(--ng-slate-200);
}
.logos-cap {
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  margin: 0 0 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logos-row {
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.logo-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ng-slate-500);
  letter-spacing: -0.01em;
  opacity: 0.85;
}

/* ===== Presence ===== */
.presence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}
.presence-map {
  background: #fff;
  border: 1px solid var(--ng-slate-200);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(11, 19, 37, 0.04);
}
.presence-map img { display: block; width: 100%; height: auto; }
.presence-map svg { display: block; width: 100%; height: auto; }
.presence-side { display: flex; flex-direction: column; gap: 32px; }
.presence-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ng-slate-200);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.presence-stats > div {
  padding: 20px 16px;
  text-align: left;
  border-right: 1px solid var(--ng-slate-200);
}
.presence-stats > div:last-child { border-right: 0; }
.presence-stats strong {
  display: block;
  font-family: var(--ng-font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ng-navy-900);
  line-height: 1;
  margin-bottom: 6px;
}
.presence-stats span {
  display: block;
  font-size: 12.5px;
  color: var(--ng-slate-600);
  line-height: 1.35;
}
.presence-stats .presence-stat-meta {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ng-navy-700, var(--ng-navy-900));
}
.presence-list h4 {
  font-family: var(--ng-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ng-slate-600);
  margin: 0 0 12px;
}
.presence-list h4 + ul { margin: 0 0 24px; }
.presence-list ul { list-style: none; padding: 0; margin: 0; }
.presence-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ng-navy-900);
  border-bottom: 1px solid var(--ng-slate-200);
}
.presence-list li:last-child { border-bottom: 0; }
.presence-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.presence-list-grid li { border-bottom: 1px solid var(--ng-slate-200); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ng-blue-500);
  flex-shrink: 0;
}
.dot-hub {
  width: 10px; height: 10px;
  box-shadow: 0 0 0 4px rgba(30, 111, 235, 0.18);
}
@media (max-width: 960px) {
  .presence-grid { grid-template-columns: 1fr; gap: 32px; }
  .presence-stats { grid-template-columns: 1fr; }
  .presence-stats > div { border-right: 0; border-bottom: 1px solid var(--ng-slate-200); }
  .presence-stats > div:last-child { border-bottom: 0; }
}

/* ===== Sections ===== */
.section { padding: var(--section-pad) 0; }
.section-subtle { background: var(--ng-slate-50); }
.section-dark {
  background: var(--ng-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.section-head { max-width: 760px; margin: 0 0 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ng-navy-900);
  font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-dark .section-head h2 { color: #fff; }
.section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 640px;
}
.section-head.center p { margin: 0 auto; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.75); }

/* ===== Problem section ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--ng-slate-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.problem-cell {
  padding: 36px 36px;
  border-right: 1px solid var(--ng-slate-200);
  border-bottom: 1px solid var(--ng-slate-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.problem-cell:nth-child(2n) { border-right: none; }
.problem-cell:nth-last-child(-n+2) { border-bottom: none; }
.problem-cell-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
}
.problem-cell h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ng-navy-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.problem-cell p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.problem-cell-meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-3);
}
.problem-cell-meta strong {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

/* ===== Methodology ===== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.method-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ng-slate-300), transparent);
  z-index: 0;
}
.method-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}
.method-num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ng-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
}
.method-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ng-navy-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.method-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}

/* ===== Services (cost reduction pillars) ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--ng-slate-200);
  border-radius: 10px;
  padding: 36px;
  transition: box-shadow 200ms var(--ease-standard), transform 200ms var(--ease-standard);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ng-blue-50);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ng-navy-900);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc-card .svc-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 22px;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ng-slate-700);
  line-height: 1.5;
}
.svc-list li svg {
  color: var(--accent);
  flex: none;
  margin-top: 3px;
}
.svc-card .link-cta { margin-top: auto; }
.svc-card.featured {
  background: linear-gradient(135deg, var(--ng-navy-800), var(--ng-navy-700));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.svc-card.featured h3 { color: #fff; }
.svc-card.featured .svc-body { color: rgba(255, 255, 255, 0.78); }
.svc-card.featured .eyebrow { color: var(--ng-blue-300); }
.svc-card.featured .eyebrow::before { background: var(--ng-blue-300); }
.svc-card.featured .svc-icon { background: rgba(255, 255, 255, 0.12); color: #fff; }
.svc-card.featured .svc-list li { color: rgba(255, 255, 255, 0.86); }
.svc-card.featured .svc-list li svg { color: var(--ng-blue-300); }
.svc-card.featured .link-cta { color: var(--ng-blue-300); }
.svc-card.featured .link-cta:hover { color: #fff; }

/* ===== Sectors ===== */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sec-card {
  background: #fff;
  border: 1px solid var(--ng-slate-200);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 200ms, box-shadow 200ms;
}
.sec-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.sec-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sec-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ng-navy-900);
  margin-top: 10px;
}
.sec-meta { font-size: 12px; color: var(--fg-3); }

/* ===== Stats band ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 2px solid var(--ng-blue-400);
}
.stats-grid strong {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
}
.stats-grid span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

/* ===== Testimonial ===== */
.testi {
  max-width: 920px;
  margin: 0 auto;
}
.testi-mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.4;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ng-navy-900);
  margin: 0 0 36px;
  font-weight: 500;
  text-wrap: balance;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ng-navy-700), var(--ng-blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.testi-name { font-weight: 600; color: var(--ng-navy-900); font-size: 15px; }
.testi-role { font-size: 13px; color: var(--fg-3); }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--ng-navy-900), var(--ng-navy-700));
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 28px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
  text-wrap: balance;
}
.cta-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
}
.cta-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-points li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--ng-blue-400);
}
.cta-form {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--ng-navy-900);
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--ng-navy-900);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ng-navy-900);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--ng-slate-300);
  border-radius: 4px;
  background: #fff;
  color: var(--ng-navy-900);
  transition: border-color 120ms, box-shadow 120ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ng-blue-600);
  box-shadow: 0 0 0 3px rgba(30, 111, 235, 0.18);
}
.form-foot { font-size: 12px; color: var(--fg-3); margin: 16px 0 0; text-align: center; }
.cta-sent { text-align: center; padding: 32px 16px; }
.cta-sent-mark {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--ng-blue-100);
  color: var(--ng-blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-sent h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: var(--ng-navy-900);
}
.cta-sent p { color: var(--fg-2); margin: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--ng-navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { height: 36px; display: block; width: auto; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin: 18px 0 0;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}
.footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 120ms;
}
.footer a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1240px;
  margin: 0 auto;
}
.footer-bar a { color: rgba(255, 255, 255, 0.6); }
.footer-bar a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .hero { padding: 160px 0 100px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-cell { border-right: none; }
  .problem-cell:not(:last-child) { border-bottom: 1px solid var(--ng-slate-200); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid::before { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 32px; }
}
