:root {
  --bg: #eef2f4;
  --bg-soft: #f7f9fb;
  --surface: #ffffff;
  --surface-alt: #f2f5f7;
  --navy: #203b67;
  --navy-deep: #152a49;
  --turquoise: #75d1ce;
  --turquoise-deep: #48acaa;
  --orange: #ef8b3a;
  --orange-deep: #cb6f25;
  --text: #1d2a39;
  --muted: #5f6f80;
  --line: rgba(32, 59, 103, 0.12);
  --line-strong: rgba(32, 59, 103, 0.2);
  --shadow: 0 20px 45px rgba(22, 39, 66, 0.08);
  --radius: 28px;
  --radius-sm: 20px;
  --content: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(117, 209, 206, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(239, 139, 58, 0.08), transparent 18%),
    linear-gradient(180deg, #f6f8fa 0%, #eef2f4 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--navy-deep);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #17324f;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.9rem;
  font-size: 0.88rem;
}

.topbar-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-copy span::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--turquoise);
}

.topbar-actions {
  display: flex;
  gap: 1rem;
}

.topbar-actions a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 59, 103, 0.08);
  box-shadow: 0 10px 28px rgba(21, 42, 73, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 0 1 auto;
}

.brand img {
  width: min(13rem, 42vw);
  max-height: 4rem;
  object-fit: contain;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(21, 42, 73, 0.12);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--turquoise-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(32, 59, 103, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line-strong);
  color: var(--navy-deep);
}

.button-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(239, 139, 58, 0.2);
}

.hero-home {
  padding: 1.6rem 0 3.25rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #17324f 0%, #203b67 60%, #244c70 100%);
  box-shadow: 0 34px 80px rgba(19, 37, 61, 0.22);
  position: relative;
  min-height: 45rem;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 36, 61, 0.86) 0%, rgba(18, 36, 61, 0.78) 28%, rgba(18, 36, 61, 0.34) 58%, rgba(18, 36, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 23, 38, 0.1), rgba(11, 23, 38, 0.28)),
    radial-gradient(circle at 82% 18%, rgba(239, 139, 58, 0.14), transparent 18%),
    radial-gradient(circle at 76% 78%, rgba(117, 209, 206, 0.16), transparent 20%);
  pointer-events: none;
  z-index: 1;
}

.hero-stage-photo {
  background-image: url("assets/hero-image.jpg?v=20260507b");
  background-size: cover;
  background-position: center;
}

.hero-stage-team {
  background-image: url("assets/team.jpg?v=20260507e");
  background-size: cover;
  background-position: center;
  min-height: 42rem;
}

.about-approach-stage {
  background-image: url("assets/Independent-options.jpg?v=20260503e");
  background-size: cover;
  background-position: center;
  min-height: 40rem;
}

.hero-copy {
  width: min(100%, 40rem);
  margin: 2rem;
  padding: 2.8rem 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 28, 47, 0.52);
  backdrop-filter: blur(10px);
  color: #fff;
  position: relative;
  z-index: 3;
  align-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(117, 209, 206, 0.14);
  border: 1px solid rgba(117, 209, 206, 0.18);
  color: #dff7f4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.7rem, 5.5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-copy p {
  margin: 0;
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-note {
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.page-art img,
.page-art img,
.split-image img,
.project-card img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overview {
  padding: 2.9rem 0 1.8rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
  text-align: center;
}

.service-header p {
  display: block;
  width: fit-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  text-align: center;
}

.service-equation {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 1.25rem;
  margin-bottom: 0.55rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.service-equation-left {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0.2rem;
  text-align: center;
  width: fit-content;
}

.service-equation-left span,
.service-equation-right {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4.5vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-equation-symbol {
  color: var(--orange-deep);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.service-equation-equals {
  justify-self: center;
  margin-inline: 0.2rem;
}

.service-pill {
  padding: 1.5rem 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 249, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-pill:hover,
.card:hover,
.project-card:hover,
.stats-card:hover,
.split-image:hover,
.page-art:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(21, 42, 73, 0.1);
}

.service-pill:hover {
  border-color: rgba(72, 172, 170, 0.26);
}

.service-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32, 59, 103, 0.12), rgba(117, 209, 206, 0.22));
  color: var(--navy);
  font-weight: 800;
}

.service-pill h3,
.card h3,
.info-card h3,
.project-card h3,
.step-card h3,
.stats-card h3,
.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.45rem;
}

.service-pill p,
.section-copy p,
.card p,
.info-card p,
.project-card p,
.step-card p,
.page-copy p,
.footer-grid p,
.footer-grid a,
.footer-grid li,
.assessment-card p,
.assessment-form small {
  color: var(--muted);
}

.section {
  padding: 1.8rem 0 4.5rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-header h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--navy-deep);
}

.section-header p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.split-layout-media-heavy {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
}

.hero-stage-team-shell {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-stage-team-shell::after {
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 139, 58, 0.08), transparent 18%),
    radial-gradient(circle at 18% 78%, rgba(117, 209, 206, 0.1), transparent 20%);
}

.who-we-are-copy {
  width: min(100%, 34rem);
  margin: 2rem;
  align-self: center;
}

.about-approach-copy {
  width: min(100%, 35rem);
  margin: 2rem;
  align-self: center;
}

.about-approach-copy .card-tag {
  background: rgba(117, 209, 206, 0.14);
  border: 1px solid rgba(117, 209, 206, 0.18);
  color: #dff7f4;
}

.about-approach-copy h2 {
  color: #fff;
}

.about-approach-copy p,
.about-approach-copy .check-list div {
  color: rgba(255, 255, 255, 0.82);
}

.about-approach-copy .check-list div::before {
  background: linear-gradient(135deg, #203b67 0%, #2f5d98 55%, #75d1ce 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.who-we-are-copy .card-tag {
  background: rgba(117, 209, 206, 0.14);
  border: 1px solid rgba(117, 209, 206, 0.18);
  color: #dff7f4;
}

.who-we-are-copy h2 {
  color: #fff;
}

.who-we-are-copy p,
.who-we-are-copy .check-list div {
  color: rgba(255, 255, 255, 0.82);
}

.who-we-are-copy .check-list div::before {
  background: linear-gradient(135deg, #203b67 0%, #2f5d98 55%, #75d1ce 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-copy,
.info-card,
.card,
.assessment-shell,
.project-card,
.stats-card,
.cta-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-copy,
.info-card,
.card,
.project-card,
.stats-card,
.cta-panel {
  padding: 1.8rem;
}

.section-copy h2,
.cta-panel h2,
.assessment-card h2 {
  margin: 0.8rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  color: var(--navy-deep);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.check-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--muted);
}

.check-list div::before {
  content: "";
  width: 0.78rem;
  height: 0.78rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #203b67 0%, #2f5d98 55%, #75d1ce 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: none;
}

.split-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}


.grid-two,
.grid-three {
  display: grid;
  gap: 1rem;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 209, 206, 0.18) 0%, transparent 68%);
}

.card-photo {
  min-height: 19rem;
  display: grid;
  grid-template-rows: auto minmax(5.25rem, 1fr) auto;
  align-content: stretch;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 24, 40, 0.16), rgba(13, 24, 40, 0.78)),
    linear-gradient(135deg, rgba(23, 50, 79, 0.42), rgba(23, 50, 79, 0.18));
  z-index: 0;
}

.card-photo > * {
  position: relative;
  z-index: 1;
}

.card-photo h3,
.card-photo p {
  color: #fff;
}

.card-photo h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.card-photo p {
  margin: 0;
  align-self: end;
}

.card-photo .card-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #f7fbfd;
}

.card-photo-advisory {
  background-image: url("assets/advisory-box.jpg?v=20260503a"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-hosted {
  background-image: url("assets/hosted-box.jpg?v=20260503a"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-connectivity {
  background-image: url("assets/connectivity-box.jpg?v=20260503a"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-perspective {
  background-image: url("assets/Perspective.jpg?v=20260503f"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-support {
  background-image: url("assets/Support.jpg?v=20260503f"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-optimus {
  background-image: url("assets/optimus.jpg?v=20260504a"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-scale {
  background-image: url("assets/Scale.jpg?v=20260503f"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-single {
  background-image: url("assets/Single.jpg?v=20260503g"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-multi {
  background-image: url("assets/Multi.jpg?v=20260503g"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-global {
  background-image: url("assets/Global.jpg?v=20260503g"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-voice {
  background-image: url("assets/connectivity-box.jpg?v=20260503k"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-ucaas {
  background-image: url("assets/ucaas.jpg?v=20260503m"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-tools {
  background-image: url("assets/tools.jpg?v=20260503k"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-feature-hosted {
  background-image: url("assets/hosted.jpg?v=20260503n"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-feature-unified {
  background-image: url("assets/unified.jpg?v=20260503n"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-feature-cx {
  background-image: url("assets/cx.jpg?v=20260503n"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-internet {
  background-image: url("assets/internet.jpg?v=20260503s"), linear-gradient(135deg, #1a3553, #274669);
}

.card-photo-fiber {
  background-image: url("assets/fiber.jpg?v=20260503s"), linear-gradient(135deg, #19344f, #25506d);
}

.card-photo-wireless {
  background-image: url("assets/wireless.jpg?v=20260503s"), linear-gradient(135deg, #163047, #214762);
}

.card-photo-feature-hosted::before,
.card-photo-feature-unified::before,
.card-photo-feature-cx::before {
  background:
    linear-gradient(180deg, rgba(13, 24, 40, 0.38), rgba(13, 24, 40, 0.9)),
    linear-gradient(135deg, rgba(23, 50, 79, 0.62), rgba(23, 50, 79, 0.3));
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(117, 209, 206, 0.12);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero {
  padding: 1.5rem 0 2.8rem;
}

.page-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.page-copy {
  padding: 2.2rem 0;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs span {
  color: rgba(29, 42, 57, 0.42);
}

.page-copy .eyebrow {
  color: var(--navy);
  background: rgba(117, 209, 206, 0.1);
  border-color: rgba(117, 209, 206, 0.16);
}

.page-copy p {
  color: var(--muted);
}

.page-art {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.55rem 1.25rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #f9fbfc 0%, #f2f5f7 100%);
  border: 1px solid rgba(32, 59, 103, 0.1);
  box-shadow: var(--shadow);
}

.step-number {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #203b67 0%, #2f5d98 55%, #75d1ce 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  padding: 0;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card img {
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid var(--line);
}

.project-copy {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98));
}

.assessment {
  padding: 0.8rem 0 4.8rem;
}

.assessment-shell {
  padding: 2rem;
  background: linear-gradient(180deg, #f7fafb 0%, #eef3f6 100%);
  position: relative;
  overflow: hidden;
}

.assessment-shell::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 209, 206, 0.16), transparent 70%);
  pointer-events: none;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
}

.assessment-form {
  display: grid;
  gap: 0.9rem;
}

.form-notice {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-notice.is-visible {
  display: block;
}

.form-notice.is-success {
  background: rgba(117, 209, 206, 0.16);
  border-color: rgba(72, 172, 170, 0.3);
  color: var(--navy-deep);
}

.form-notice.is-error {
  background: rgba(239, 139, 58, 0.14);
  border-color: rgba(203, 111, 37, 0.28);
  color: var(--navy-deep);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.assessment-card {
  padding: 0.25rem 0.5rem 0.25rem 0;
}

.assessment-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.assessment-form input,
.assessment-form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(32, 59, 103, 0.12);
  background: #fff;
  color: var(--text);
}

.assessment-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.assessment-form input:focus,
.assessment-form textarea:focus {
  outline: 2px solid rgba(72, 172, 170, 0.24);
  outline-offset: 2px;
}

.cta-panel {
  background: linear-gradient(135deg, #17324f 0%, #203b67 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 209, 206, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-deep);
  font-size: 1.55rem;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card img {
  aspect-ratio: 16 / 10;
}

.site-footer {
  padding: 1rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid img {
  width: 12rem;
  max-width: 100%;
  height: auto;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-stage,
  .page-stage,
  .split-layout,
  .assessment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .grid-three,
  .steps-grid,
  .projects-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-equation {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    width: 100%;
  }

  .service-header p {
    width: auto;
  }

  .service-equation-equals {
    justify-self: center;
  }

  .hero-stage {
    min-height: 40rem;
  }

  .hero-copy {
    width: auto;
  }

  .hero-stage-team-shell {
    justify-content: stretch;
    align-items: end;
  }

  .about-approach-copy {
    width: auto;
  }

  .who-we-are-copy {
    width: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--content), calc(100% - 0.75rem));
  }

  .site-header .container {
    width: min(var(--content), calc(100% - 0.25rem));
  }

  .topbar {
    display: none;
  }

  .service-grid,
  .grid-two,
  .grid-three,
  .steps-grid,
  .projects-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    position: relative;
    min-height: 5.55rem;
    gap: 0.55rem;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .brand {
    gap: 0.35rem;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 4.75rem);
    justify-self: start;
    margin-right: auto;
    margin-left: -0.55rem;
  }

  .brand img {
    width: min(30.5rem, 100vw);
    max-height: 9.5rem;
    max-width: none;
    margin-left: 0;
    transform: translateX(-1.25rem);
  }

  .menu-toggle {
    display: inline-flex;
    padding: 0.68rem 0.92rem;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: 20px;
  }

  .site-nav a {
    padding: 0.72rem 0.45rem;
    border-radius: 14px;
  }

  .hero-home {
    padding: 0.9rem 0 2.2rem;
  }

  .hero-stage {
    min-height: 35.5rem;
    border-radius: 26px;
  }

  .hero-stage::before {
    inset: 0.75rem;
    border-radius: 20px;
  }

  .hero-stage::after {
    background:
      linear-gradient(180deg, rgba(18, 36, 61, 0.28) 0%, rgba(18, 36, 61, 0.82) 42%, rgba(18, 36, 61, 0.92) 100%),
      radial-gradient(circle at 78% 18%, rgba(239, 139, 58, 0.16), transparent 18%),
      radial-gradient(circle at 18% 76%, rgba(117, 209, 206, 0.14), transparent 22%);
  }

  .hero-copy,
  .assessment-shell,
  .section-copy,
  .info-card,
  .card,
  .cta-panel,
  .project-copy {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .hero-copy {
    margin: 1rem;
    width: auto;
    padding: 1.65rem 1.2rem 1.25rem;
    border-radius: 22px;
    align-self: end;
  }

  .who-we-are-copy {
    margin: 1rem;
    padding-top: 1.45rem;
    padding-bottom: 1.3rem;
  }

  .about-approach-copy {
    margin: 1rem;
    width: auto;
    padding-top: 1.45rem;
    padding-bottom: 1.3rem;
  }

  .hero-copy h1,
  .page-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .stack-actions {
    flex-direction: column;
    gap: 0.72rem;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .service-overview {
    padding: 2rem 0 1rem;
  }

  .service-header {
    margin-bottom: 0.8rem;
  }

  .service-header p {
    max-width: 17rem;
    margin-inline: auto;
    white-space: normal;
    line-height: 1.35;
  }

  .service-equation {
    gap: 0.25rem;
    margin-bottom: 0.8rem;
  }

  .service-equation-left {
    gap: 0.12rem;
  }

  .service-equation-left span,
  .service-equation-right {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .service-equation-symbol {
    font-size: clamp(1.95rem, 9.6vw, 2.7rem);
  }

  .section {
    padding: 1.2rem 0 3rem;
  }

  .section-header {
    margin-bottom: 1.1rem;
  }

  .section-header h2,
  .section-copy h2,
  .cta-panel h2,
  .assessment-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.06;
  }

  .hero-stage-team {
    min-height: 36rem;
  }

  .card-photo {
    min-height: 16.75rem;
    grid-template-rows: auto minmax(4rem, 1fr) auto;
  }

  .card-photo h3 {
    margin-bottom: 0.4rem;
  }

  .assessment {
    padding: 0.25rem 0 3.2rem;
  }

  .assessment-shell {
    padding-top: 1.45rem;
    padding-bottom: 1.45rem;
  }

  .assessment-grid {
    gap: 1.25rem;
  }

  .assessment-card {
    padding-right: 0;
  }

  .assessment-form {
    gap: 0.78rem;
  }

  .page-copy {
    padding: 1rem 0 0;
  }

  .brand-copy {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 3.05rem;
    white-space: normal;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--content), calc(100% - 0.55rem));
  }

  .site-header .container {
    width: min(var(--content), calc(100% - 0.1rem));
  }

  .header-inner {
    min-height: 5.2rem;
  }

  .brand img {
    width: min(29rem, 100vw);
    max-height: 9rem;
    transform: translateX(-1.45rem);
  }

  .menu-toggle {
    padding: 0.62rem 0.84rem;
    font-size: 0.95rem;
  }

  .hero-stage {
    min-height: 33.5rem;
  }

  .hero-copy {
    margin: 0.8rem;
    padding: 1.4rem 1.05rem 1.1rem;
  }

  .eyebrow {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .hero-copy h1,
  .page-copy h1 {
    font-size: clamp(2rem, 10.8vw, 2.6rem);
  }

  .service-equation-left span,
  .service-equation-right {
    font-size: clamp(1.72rem, 8.8vw, 2.2rem);
  }

  .service-equation-symbol {
    font-size: clamp(1.78rem, 9.2vw, 2.3rem);
  }

  .service-header p {
    max-width: 15.5rem;
  }

  .card-photo {
    min-height: 15.5rem;
  }

  .assessment-form input,
  .assessment-form textarea {
    min-height: 3.05rem;
    padding: 0.78rem 0.88rem;
  }

  .assessment-form textarea {
    min-height: 7.5rem;
  }
}

.nt-topbar .topbar-actions a,
.nt-topbar .topbar-copy span {
  font-size: 0.84rem;
}

.nt-header {
  box-shadow: 0 14px 30px rgba(21, 42, 73, 0.05);
}

.nt-site-nav {
  gap: 0.9rem;
}

.nt-site-nav a,
.nt-site-nav button {
  font-size: 0.94rem;
  font-weight: 600;
}

.nt-site-nav .nav-item {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-dropdown-toggle,
.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle {
  color: var(--navy-deep);
}

.nav-item.is-open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  display: none;
}

.nav-item.is-open .nav-dropdown-menu {
  display: grid;
}

.nt-home-hero {
  padding: 1rem 0 2rem;
}

.nt-hero-grid {
  display: grid;
  gap: 1rem;
}

.nt-hero-copy,
.nt-hero-panel,
.nt-proof-card,
.nt-solution-card,
.nt-side-card,
.nt-result-card,
.nt-insight-card,
.nt-value-card,
.nt-split-panel > article,
.nt-contact-card,
.nt-page-hero-art,
.nt-page-hero-copy {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nt-hero-copy {
  padding: 1.35rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(23, 50, 79, 0.96), rgba(32, 59, 103, 0.96)),
    radial-gradient(circle at top right, rgba(117, 209, 206, 0.18), transparent 24%);
  color: #fff;
}

.nt-hero-copy h1 {
  margin: 0.85rem 0 0.9rem;
  font-size: clamp(2.3rem, 11vw, 3.65rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.nt-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.nt-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.nt-hero-tags span {
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.83rem;
  font-weight: 600;
}

.nt-hero-panel {
  padding: 0.9rem;
  background: linear-gradient(180deg, #f9fbfc, #eef3f6);
}

.nt-hero-visual {
  overflow: hidden;
  border-radius: 18px;
  min-height: 16rem;
}

.nt-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nt-hero-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.nt-hero-stats article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(32, 59, 103, 0.08);
}

.nt-hero-stats strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-deep);
  font-size: 1.35rem;
}

.nt-proof-strip {
  padding: 0 0 1.4rem;
}

.nt-proof-grid,
.nt-solution-grid,
.nt-results-grid,
.nt-insights-grid,
.nt-values-grid,
.nt-contact-grid {
  display: grid;
  gap: 1rem;
}

.nt-proof-card,
.nt-solution-card,
.nt-result-card,
.nt-insight-card,
.nt-value-card,
.nt-contact-card,
.nt-split-panel > article {
  padding: 1.35rem 1.15rem;
}

.nt-proof-card h3,
.nt-solution-card h3,
.nt-result-card h3,
.nt-insight-card h3,
.nt-value-card h3,
.nt-contact-card h2,
.nt-split-panel h2 {
  margin: 0.45rem 0 0.45rem;
}

.nt-proof-card p,
.nt-solution-card p,
.nt-result-card p,
.nt-insight-card p,
.nt-value-card p,
.nt-contact-card p,
.nt-split-panel p {
  margin: 0;
  color: var(--muted);
}

.nt-proof-card,
.nt-spotlight-panel,
.nt-simple-cta {
  background: linear-gradient(135deg, #17324f, #203b67);
  color: #fff;
}

.nt-proof-card h3,
.nt-proof-card p,
.nt-spotlight-panel h2,
.nt-spotlight-panel p,
.nt-spotlight-panel .check-list div,
.nt-simple-cta h2,
.nt-simple-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.nt-proof-card .card-tag,
.nt-spotlight-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.nt-solution-card,
.nt-insight-card {
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nt-solution-card:hover,
.nt-insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(72, 172, 170, 0.32);
  box-shadow: 0 24px 48px rgba(21, 42, 73, 0.12);
}

.nt-solution-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98));
}

.nt-spotlight-grid {
  display: grid;
  gap: 1rem;
}

.nt-spotlight-panel {
  padding: 1.45rem 1.2rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 24, 41, 0.34), rgba(12, 24, 41, 0.84)),
    linear-gradient(135deg, rgba(23, 50, 79, 0.62), rgba(23, 50, 79, 0.22)),
    url("assets/ai-spotlight.jpg?v=20260507c");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nt-check-list-light div::before {
  border-color: rgba(255, 255, 255, 0.2);
}

.nt-side-card {
  padding: 1.1rem 1rem;
}

.nt-side-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy-deep);
}

.nt-page-hero {
  padding: 1rem 0 1.8rem;
}

.nt-page-hero-grid {
  display: grid;
  gap: 1rem;
}

.nt-page-hero-copy {
  padding: 1.35rem 1.15rem;
}

.nt-page-hero-copy .eyebrow {
  background: rgba(117, 209, 206, 0.1);
  border-color: rgba(117, 209, 206, 0.16);
  color: var(--navy);
}

.nt-page-hero-copy h1 {
  margin: 0.85rem 0 0.85rem;
  font-size: clamp(2.15rem, 10.8vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--navy-deep);
}

.nt-page-hero-copy p {
  margin: 0;
  color: var(--muted);
}

.nt-page-hero-art {
  overflow: hidden;
  min-height: 15rem;
}

.nt-page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nt-split-panel {
  display: grid;
  gap: 1rem;
}

.nt-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.nt-chip-grid span {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(32, 59, 103, 0.06);
  border: 1px solid rgba(32, 59, 103, 0.08);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.nt-contact-grid {
  align-items: stretch;
}

.nt-contact-card .stack-actions {
  margin-top: 1.25rem;
}

.nt-assessment-shell {
  background:
    linear-gradient(180deg, #f7fafb 0%, #eef3f6 100%),
    radial-gradient(circle at top right, rgba(117, 209, 206, 0.14), transparent 22%);
}

.nt-assessment-copy .check-list {
  margin-top: 1.1rem;
}

.nt-footer {
  padding-top: 0.6rem;
}

.nt-insight-static {
  cursor: default;
}

.nt-blog-feature {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f9fbfc, #eef3f6);
  box-shadow: var(--shadow);
}

.nt-blog-feature-media,
.nt-post-card-media {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.nt-post-card-media {
  height: 14rem;
  flex: none;
}

.nt-blog-feature-media img,
.nt-post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nt-post-card-media-top img {
  object-position: center top;
}

.nt-blog-feature-media img {
  min-height: 18rem;
}

.nt-blog-feature-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 0.2rem;
}

.nt-blog-feature-copy h2,
.nt-post-card-copy h3 {
  margin: 0;
  line-height: 1.05;
  color: var(--navy-deep);
}

.nt-blog-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.nt-blog-feature-copy p,
.nt-post-card-copy p,
.nt-post-meta {
  margin: 0;
  color: var(--muted);
}

.nt-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nt-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nt-post-meta span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--turquoise));
}

.nt-blog-grid {
  display: grid;
  gap: 1rem;
}

.nt-post-card {
  display: grid;
  gap: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nt-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(72, 172, 170, 0.32);
  box-shadow: 0 24px 48px rgba(21, 42, 73, 0.12);
}

.nt-post-card-media img {
  min-height: 0;
}

.nt-post-card-copy {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem 1.15rem;
}

.nt-article-hero .nt-page-hero-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.nt-article-hero .nt-page-hero-copy h1,
.nt-article-hero .nt-page-hero-copy p {
  margin: 0;
}

.nt-article-shell {
  padding-top: 0.4rem;
}

.nt-article-body {
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nt-article-body h2 {
  margin: 2rem 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
  color: var(--navy-deep);
}

.nt-article-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

@media (max-width: 1040px) {
  .nt-site-nav .nav-item {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.72rem 0.45rem;
  }

  .nav-dropdown-menu {
    position: static;
    padding: 0.35rem 0 0.5rem;
  }

  .nav-dropdown-menu a {
    padding: 0.7rem 0.65rem;
    border-radius: 12px;
  }
}

@media (min-width: 760px) {
  .nt-proof-grid,
  .nt-results-grid,
  .nt-insights-grid,
  .nt-values-grid,
  .nt-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nt-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nt-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nt-home-hero {
    padding: 1.3rem 0 2.6rem;
  }

  .nt-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    align-items: stretch;
  }

  .nt-hero-copy {
    padding: 2rem 2rem 1.7rem;
  }

  .nt-hero-panel {
    padding: 1rem;
  }

  .nt-proof-grid {
    grid-template-columns: 1.15fr repeat(3, 1fr);
  }

  .nt-solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nt-solution-grid .nt-solution-card:last-child {
    grid-column: span 2;
  }

  .nt-spotlight-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    align-items: stretch;
  }

  .nt-results-grid,
  .nt-insights-grid,
  .nt-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nt-page-hero-grid,
  .nt-contact-grid,
  .nt-split-panel {
    grid-template-columns: minmax(0, 0.98fr) minmax(20rem, 1.02fr);
    align-items: stretch;
  }

  .nt-blog-feature {
    grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
    align-items: stretch;
  }

  .nt-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1041px) {
  .nt-site-nav {
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;
    min-width: 19rem;
    padding: 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    gap: 0.2rem;
    z-index: 20;
  }

  .nav-item:hover .nav-dropdown-menu,
  .nav-item:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    color: var(--muted);
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a[aria-current="page"] {
    background: rgba(32, 59, 103, 0.05);
    color: var(--navy-deep);
  }
}
