/* Prime Pass Quality Solutions — Premium landing */

:root {
  --navy: #002147;
  --navy-deep: #00152e;
  --navy-mid: #0a2f5c;
  --gold: #ffc107;
  --gold-bright: #ffd54f;
  --gold-dark: #e6ac00;
  --white: #ffffff;
  --ink: #0d1b2a;
  --muted: #5a6b7d;
  --surface: #f7f9fc;
  --line: rgba(0, 33, 71, 0.1);

  --font-display: "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;

  --header-h: 78px;
  --container: min(1180px, calc(100% - 2.5rem));
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 33, 71, 0.1);
  --shadow-lift: 0 20px 50px rgba(0, 33, 71, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn span {
  font-size: 1.15em;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.3);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-call:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.text-link {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--navy-mid);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-subtitle {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-tagline {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.is-active {
  color: var(--gold);
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 210px;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.dropdown a:hover {
  background: rgba(255, 193, 7, 0.15);
  color: var(--navy-deep);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 21, 46, 0.92) 0%, rgba(0, 33, 71, 0.72) 42%, rgba(0, 33, 71, 0.28) 70%, rgba(0, 33, 71, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 21, 46, 0.35) 0%, transparent 40%, rgba(0, 21, 46, 0.55) 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: block;
  padding: 5.5rem 0 7rem;
}

.hero__content {
  max-width: 620px;
}

.hero__content h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero__content h1 span {
  display: block;
  color: var(--gold);
}

.hero__content p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__badge {
  justify-self: end;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--navy);
  border-radius: 12px 12px 12px 4px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__badge-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.wave-navy {
  fill: var(--navy);
}

.wave-gold {
  fill: var(--gold);
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2,
.about__copy h2,
.about__why h2,
.contact__copy h2,
.split-teaser h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.section-head p,
.about__copy p,
.contact__copy p,
.split-teaser p {
  margin: 0;
  color: var(--muted);
}

/* Services — detailed catalog */
.services {
  background: var(--white);
  padding-top: 3.5rem;
}

.services-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.svc-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.15rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.svc-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255, 193, 7, 0.4);
}

.svc-detail--wide {
  grid-column: 1 / -1;
  grid-template-columns: 220px 1fr;
}

.svc-detail__media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 120px;
  background: var(--navy-deep);
}

.svc-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
  transition: transform 0.6s var(--ease);
}

.svc-detail:hover .svc-detail__media img {
  transform: scale(1.05);
}

.svc-detail__body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.svc-detail__body > p {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.svc-detail__body h4 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.svc-detail__body ul {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
}

.svc-detail__body li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.svc-detail__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.ndt-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1rem;
}

.ndt-methods h4 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.ndt-methods p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.service-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: 0.02em;
}

.service-card__link span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.svc-detail:hover .service-card__link {
  color: var(--navy);
}

.svc-detail:hover .service-card__link span {
  transform: translateX(4px);
}

/* Value bar */
.value-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 40%, var(--navy-mid));
  color: var(--white);
  padding: 1.65rem 0;
}

.value-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-bar__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.value-bar__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
  flex-shrink: 0;
}

.value-bar__icon svg {
  width: 22px;
  height: 22px;
}

.value-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-bar__item span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

/* About solo */
.about--solo {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 193, 7, 0.08), transparent 45%),
    var(--white);
}

.about-solo__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about__copy .btn {
  margin-top: 1.4rem;
}

.about__visual {
  display: flex;
  justify-content: center;
}

/* Why Choose Us */
.why-us {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-grid li {
  padding: 1.4rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-grid__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
}

.why-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.why-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Major service cards (3 categories) */
.major-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.major-services--industries {
  grid-template-columns: repeat(5, 1fr);
}

.major-services--industries .major-card__body {
  padding-top: 1.5rem;
}

.major-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.major-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255, 193, 7, 0.45);
}

.major-card__media {
  height: 180px;
  overflow: hidden;
  background: var(--navy-deep);
}

.major-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.major-card:hover .major-card__media img {
  transform: scale(1.06);
}

.major-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.25rem 1.4rem;
}

.major-card__count {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.major-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.major-card__body > p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.major-card__list {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.1rem;
}

.major-card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.major-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.major-card .service-card__link {
  margin-top: auto;
}

/* Projects / clients */
.projects {
  background: var(--white);
}

/* Projects — dark logo bar (client logo strip model) */
.projects {
  background: var(--white);
  padding-bottom: 0;
}

.projects .section-head {
  margin-bottom: 2rem;
}

.logo-bar {
  position: relative;
  background: linear-gradient(90deg, #002147 0%, #0a2f5c 35%, #1a4a7a 65%, #eaf1f8 100%);
  overflow: hidden;
  padding: 1.75rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 33, 71, 0.12);
}

.logo-bar__viewport {
  overflow: hidden;
  width: 100%;
}

.logo-bar__track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  width: max-content;
  padding: 0.35rem 2rem;
  animation: logoMarquee 32s linear infinite;
}

.logo-bar:hover .logo-bar__track {
  animation-play-state: paused;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-bar__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-bar__fade--left {
  left: 0;
  background: linear-gradient(90deg, #002147, transparent);
}

.logo-bar__fade--right {
  right: 0;
  background: linear-gradient(270deg, #eaf1f8, transparent);
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  flex-shrink: 0;
  min-width: 140px;
}

.logo-mark--word .logo-mark__brand {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.logo-mark--word .logo-mark__sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-mark--tile {
  min-width: 118px;
  min-height: 72px;
  padding: 0.7rem 0.95rem;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 33, 71, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.logo-mark--tile .logo-mark__brand {
  color: #002147;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-mark--tile .logo-mark__sub {
  color: #0a2f5c;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.client-list,
.client-grid {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .logo-bar__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    gap: 1.5rem 2rem;
  }

  .logo-bar__track li[aria-hidden="true"] {
    display: none;
  }
}

/* Feedback entry (homepage icon) */
.feedback--entry {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 193, 7, 0.12), transparent 50%),
    var(--surface);
}

.feedback-entry {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  max-width: 720px;
  margin-inline: auto;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.feedback-entry:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255, 193, 7, 0.45);
}

.feedback-entry__icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
  background: #faf8f2;
  box-shadow: inset 0 0 0 1px var(--line);
}

.feedback-entry__copy h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.feedback-entry__copy p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero--feedback {
  background: linear-gradient(120deg, rgba(0, 21, 46, 0.96), rgba(0, 33, 71, 0.88));
  text-align: center;
}

.page-hero--feedback .page-hero-inner {
  max-width: 640px;
  margin-inline: auto;
}

.feedback-hero-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: #faf8f2;
}

.feedback-page {
  max-width: 820px;
}

.feedback-form--detailed fieldset {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
}

.feedback-form--detailed legend {
  padding: 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-row,
.rating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.rating-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500 !important;
  color: var(--ink);
}

.checkbox-label input {
  width: auto;
  margin-top: 0.25rem;
}

.form-back {
  margin: 1rem 0 0;
  text-align: center;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Hub pages */
.hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hub-nav a {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-nav a:hover,
.hub-nav a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.hub-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.nav-cta {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #fff !important;
}

.nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.hex-frame {
  width: min(100%, 320px);
  aspect-ratio: 1;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}

.hex-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 33, 71, 0.15), rgba(255, 193, 7, 0.18));
  pointer-events: none;
}

.hex-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hex-frame:hover img {
  transform: scale(1.08);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  color: var(--ink);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Industries */
.industries {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 193, 7, 0.07), transparent 40%),
    var(--surface);
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.industry-card {
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.industry-card--wide {
  grid-column: 1 / -1;
}

.industry-card h3 {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.industry-card > ul {
  display: grid;
  gap: 0.45rem;
}

.industry-card > ul li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.industry-card > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.industry-subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-subs h4 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.industry-subs ul {
  display: grid;
  gap: 0.4rem;
}

.industry-subs li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
}

.industry-subs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

/* Split teaser */
.split-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.split-teaser .text-link {
  display: inline-block;
  margin-top: 1rem;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, var(--surface), #eef2f8);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  gap: 0.15rem;
}

.contact-details span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-details a {
  color: var(--navy);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--navy-mid);
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 193, 7, 0.08), transparent 35%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer__promise p {
  margin: 0 0 1.1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  min-height: 140px;
}

.footer__mark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  opacity: 0.12;
  pointer-events: none;
}

.footer__slogan {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 14ch;
  line-height: 1.25;
}

.footer__bar {
  background: var(--gold);
  color: var(--navy);
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer__bar p {
  margin: 0;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.18s;
}

/* Responsive */
@media (max-width: 1200px) {
  .major-services--industries {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .services-detailed {
    grid-template-columns: 1fr;
  }

  .svc-detail--wide {
    grid-template-columns: 160px 1fr;
  }

  .industry-subs,
  .major-services,
  .major-services--industries,
  .why-grid,
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-solo__grid {
    grid-template-columns: 1fr;
  }

  .hex-frame {
    width: min(100%, 280px);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav > ul > li > a {
    padding: 0.85rem 0.6rem;
    font-size: 0.9rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    margin: 0.15rem 0 0.4rem;
  }

  .dropdown a {
    color: rgba(255, 255, 255, 0.85);
  }

  .dropdown a:hover {
    background: rgba(255, 193, 7, 0.12);
    color: var(--gold);
  }

  .btn-call {
    justify-content: center;
    width: 100%;
  }

  .logo-tagline {
    display: none;
  }

  .hero__grid {
    padding: 4rem 0 6rem;
  }

  .hero__media img {
    object-position: 80% center;
    animation: none;
  }

  .value-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    align-items: flex-start;
    text-align: left;
    grid-column: 1 / -1;
  }

  .footer__mark {
    right: auto;
    left: 0;
  }
}

@media (max-width: 720px) {
  .svc-detail,
  .svc-detail--wide {
    grid-template-columns: 1fr;
  }

  .ndt-methods,
  .industry-grid,
  .feedback__grid,
  .form-row,
  .rating-grid {
    grid-template-columns: 1fr;
  }

  .feedback-entry {
    flex-direction: column;
    text-align: center;
  }

  .feedback-entry__copy .service-card__link {
    justify-content: center;
  }

  .about__grid,
  .contact__grid,
  .split-teaser,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__content h1 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .hero__wave svg {
    height: 60px;
  }

  .footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .value-bar__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media img,
  .hero__badge,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Service detail pages */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 21, 46, 0.92), rgba(0, 33, 71, 0.75)),
    var(--hero-image, none) center / cover no-repeat,
    var(--navy-deep);
}

.page-hero-inner { max-width: 760px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold); }
.page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.page-hero-lead { margin: 0 0 1.25rem; color: rgba(255,255,255,0.88); max-width: 40rem; }
.service-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.service-intro { font-size: 1.05rem; color: var(--muted); }
.service-content h2 {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.service-cta-text { margin: 1.75rem 0 1rem; }
.service-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.service-gallery img { width: 100%; height: auto; }
.footer-inner {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
  padding-bottom: 2rem;
}
.footer-logo { max-width: 180px; }
.footer-tagline { margin: 0; color: var(--gold); font-weight: 600; }
.footer-copy { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.check-list-lg { gap: 0.95rem; }
@media (max-width: 860px) {
  .service-layout { grid-template-columns: 1fr; }
}

/* About page */
.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.about-page__intro {
  max-width: 860px;
}

.about-page__intro h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.about-page__lead {
  display: grid;
  gap: 0.85rem;
}

.about-page__lead p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.org-card {
  padding: 1.2rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.org-card--lead {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-color: transparent;
  border-top-color: var(--gold);
  color: #fff;
}

.org-card--lead p { color: rgba(255, 255, 255, 0.82); }
.org-card--lead .org-card__label { color: var(--gold); }
.org-card--lead h3 { color: #fff; }

.org-card__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.org-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.org-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
}

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

.strength-grid li {
  padding: 1.2rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strength-grid__icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.strength-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.strength-grid p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 960px) {
  .org-grid,
  .strength-grid { grid-template-columns: 1fr 1fr; }
  .org-card--lead { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .org-grid,
  .strength-grid { grid-template-columns: 1fr; }
}

/* Leadership — light blue + white */
.org-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #4da3ff 0%, #7ec2ff 55%, #a8d8ff 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(77, 163, 255, 0.28);
}

.org-lead__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.org-lead__label {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.org-lead h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.org-lead p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52rem;
}

.major-services--mgmt {
  margin-bottom: 2rem;
}

.mgmt-detail {
  margin-bottom: 1.75rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.mgmt-detail__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.org-grid--roles {
  grid-template-columns: repeat(3, 1fr);
}

#mgmt-quality .org-grid--roles {
  grid-template-columns: repeat(2, 1fr);
}

/* WhatsApp contact button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  color: #fff !important;
}

.socials__wa {
  background: #25d366 !important;
  color: #fff !important;
}

.socials__wa:hover {
  background: #1ebe57 !important;
  color: #fff !important;
}

@media (max-width: 720px) {
  .org-lead {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .org-grid--roles,
  #mgmt-quality .org-grid--roles {
    grid-template-columns: 1fr;
  }
}
