:root {
  --navy: #071b33;
  --navy2: #0b2a4f;
  --blue: #1768a6;
  --blue2: #2d8bcb;
  --aqua: #25a9c7;
  --pale: #eaf3f9;
  --steel: #66717d;
  --ink: #17212b;
  --white: #fff;
  --line: #dce7ef;
  --shadow: 0 18px 50px rgba(7, 27, 51, 0.14);
  --radius: 14px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
.container {
  max-width: var(--max);
  margin: auto;
  padding: 0 24px;
}
.topbar {
  background: var(--navy);
  color: #cfe5f7;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a {
  color: #fff;
  text-decoration: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 231, 239, 0.75);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: 74px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(23, 104, 166, 0.18));
}
.brand-text {
  display: block;
  line-height: 1.05;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.08em;
}
.footer .brand {
  color: #fff;
}
.footer .brand-logo {
  width: 82px;
  filter: none;
}
.footer .brand small {
  color: rgba(255, 255, 255, 0.72);
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu a {
  font-size: 14px;
  font-weight: 700;
  color: #334252;
  text-decoration: none;
}
.menu a.active,
.menu a:hover {
  color: var(--blue);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(23, 104, 166, 0.28);
  cursor: pointer;
}
.btn:hover {
  background: #0d568d;
}
.btn.secondary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn.dark {
  background: var(--navy);
}
.hamb {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--navy);
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 27, 51, 0.95),
      rgba(7, 27, 51, 0.78),
      rgba(7, 27, 51, 0.28)
    ),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  transform: scale(1.02);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -20% -25% 50%;
  height: 360px;
  background: linear-gradient(
    90deg,
    rgba(37, 169, 199, 0.24),
    rgba(45, 139, 203, 0.05)
  );
  transform: skewY(-8deg);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  color: var(--aqua);
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--aqua);
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.08;
  margin: 0;
  color: inherit;
}
h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.055em;
  max-width: 850px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 20px;
  max-width: 720px;
  color: #d9e8f4;
  margin: 24px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trustbar {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}
.trustgrid {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.trustitem {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}
.trustitem:last-child {
  border: 0;
}
.trustitem strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-family: Manrope;
}
.trustitem span {
  font-size: 13px;
  color: var(--steel);
  font-weight: 700;
}
.section {
  padding: 96px 0;
}
.section.soft {
  background: var(--pale);
}
.section.dark {
  background:
    radial-gradient(
      circle at top right,
      rgba(37, 169, 199, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, var(--navy), #03101f);
  color: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.section-head p {
  max-width: 560px;
  color: var(--steel);
  margin: 0;
}
.dark .section-head p,
.dark p {
  color: #c9d8e5;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 430px;
  background: #ddd;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-card .note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 18px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--navy);
}
.lead {
  font-size: 18px;
  color: #4d5b67;
}
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}
.feature i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 13px;
  flex: 0 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 28px rgba(7, 27, 51, 0.06);
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 20px;
}
.card p {
  color: var(--steel);
  margin-bottom: 0;
}
.specgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.spec {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.spec span {
  display: block;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.spec strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-family: Manrope;
  color: #fff;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}
.compare-card.grp {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}
.compare-card h3 {
  margin-bottom: 18px;
}
.compare-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.compare-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(220, 231, 239, 0.7);
  font-weight: 700;
}
.compare-card.grp li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  color: #fff;
  text-decoration: none;
  background: #222;
}
.industry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.industry:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 27, 51, 0.82),
    rgba(7, 27, 51, 0.12)
  );
}
.industry div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
.industry:hover img {
  transform: scale(1.08);
}
.industry span {
  color: #cfe5f7;
}
.timeline {
  display: grid;
  gap: 16px;
}
.project {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  align-items: center;
}
.project time {
  font-weight: 900;
  color: var(--blue);
}
.project p {
  margin: 5px 0 0;
  color: var(--steel);
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}
.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.cert strong {
  display: block;
  font-family: Manrope;
  font-size: 20px;
  color: var(--navy);
}
.cert span {
  display: block;
  color: var(--steel);
  font-size: 14px;
  margin-top: 7px;
}
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 150px;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}
.cta {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.cta p {
  color: #d9e8f4;
  margin: 14px 0 0;
}
.footer {
  background: #04111f;
  color: #b8c9d8;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer a {
  color: #dceaf5;
  text-decoration: none;
  display: block;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 13px;
  color: #8fa5b7;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.95), rgba(7, 27, 51, 0.7)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: #fff;
  padding: 100px 0;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}
.page-hero p {
  font-size: 19px;
  color: #d9e8f4;
  max-width: 720px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  font: inherit;
}
.form textarea,
.form .wide {
  grid-column: 1/-1;
}
.form textarea {
  min-height: 140px;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: #0a7f45;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 980px) {
  .topbar {
    display: none;
  }
  .hamb {
    display: block;
  }
  .menu {
    position: fixed;
    inset: 76px 0 auto 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.open {
    display: flex;
  }
  .nav .btn {
    display: none;
  }
  .trustgrid,
  .cards,
  .specgrid,
  .industries,
  .certs {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .project {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 680px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 14px;
  }
  .cta {
    display: block;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    min-height: 640px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
  }
  .trustbar {
    margin-top: 0;
  }
  .trustgrid,
  .cards,
  .specgrid,
  .industries,
  .certs,
  .compare,
  .process,
  .footer-grid,
  .form {
    grid-template-columns: 1fr;
  }
  .trustitem {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 70px 0;
  }
  .image-card {
    min-height: 300px;
  }
  .cta {
    padding: 34px 24px;
    border-radius: 18px;
  }
  .brand-logo {
    width: 58px;
  }
  .footer .brand-logo {
    width: 68px;
  }
  .brand {
    gap: 10px;
    font-size: 14px;
  }
  .brand small {
    font-size: 10px;
  }
  .floating-wa {
    left: 18px;
    right: 18px;
    text-align: center;
  }
  .page-hero {
    padding: 76px 0;
  }
  .cert,
  .card,
  .compare-card {
    padding: 22px;
  }
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropbtn {
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #334252;
  cursor: pointer;
  padding: 0;
}
.dropbtn.active,
.dropbtn:hover {
  color: var(--blue);
}
.dropdown-menu {
  position: absolute;
  top: 32px;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--pale);
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.application-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background: #111;
}
.application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.application-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 27, 51, 0.88),
    rgba(7, 27, 51, 0.18)
  );
}
.application-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.application-card:hover img {
  transform: scale(1.06);
}
.map-panel {
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(37, 169, 199, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 75% 45%,
      rgba(59, 146, 202, 0.28),
      transparent 22%
    ),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 360px;
  padding: 28px;
  display: grid;
  align-content: end;
}
.map-panel ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.map-panel li {
  font-weight: 800;
  color: #d9e8f4;
}
.map-panel li:before {
  content: "•";
  color: var(--aqua);
  margin-right: 9px;
}
@media (max-width: 980px) {
  .dropdown {
    display: block;
  }
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .dropbtn {
    display: none;
  }
  .application-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .application-grid,
  .map-panel ul {
    grid-template-columns: 1fr;
  }
}

/* Premium industrial polish added after UI/UX review */
:root {
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(7, 27, 51, 0.06);
  --shadow-md: 0 18px 50px rgba(7, 27, 51, 0.14);
  --section-y: 96px;
  --section-y-mobile: 64px;
  --whatsapp: #0a7f45;
}
body {
  overflow-x: hidden;
}
.header,
.nav,
.brand-logo {
  transition: all 0.22s ease;
}
.header.is-scrolled {
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.08);
}
.header.is-scrolled .nav {
  height: 64px;
}
.header.is-scrolled .brand-logo {
  width: 64px;
}
.btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.whatsapp,
.floating-wa {
  background: var(--whatsapp);
}
.hero:before {
  animation: heroSlowScale 18s ease-in-out infinite alternate;
}
.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -16px 0 28px;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #e9f5ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.card,
.cert,
.project,
.spec,
.step,
.image-card,
.industry,
.application-card {
  will-change: transform;
}
.card,
.cert {
  position: relative;
}
.card.featured,
.cert.featured {
  border-top: 4px solid var(--aqua);
}
.cert {
  box-shadow: var(--shadow-sm);
}
.cert strong:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--aqua);
  margin-right: 9px;
}
.section-note {
  font-size: 14px;
  color: var(--steel);
  margin-top: 18px;
}
.dark .section-note {
  color: #c9d8e5;
}
.tech-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tech-table th,
.tech-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.tech-table th {
  background: var(--pale);
  color: var(--navy);
  font-family: Manrope;
  font-size: 14px;
}
.tech-table tr:last-child td {
  border-bottom: 0;
}
.cta:before {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(37, 169, 199, 0.16);
  filter: blur(2px);
}
.cta > * {
  position: relative;
  z-index: 1;
}
.image-card img,
.industry img,
.application-card img {
  transition: transform 0.7s ease;
}
.image-card:hover img {
  transform: scale(1.035);
}
.industry div,
.application-card div {
  transition: transform 0.25s ease;
}
.industry:hover div,
.application-card:hover div {
  transform: translateY(-4px);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 169, 199, 0.45);
  outline-offset: 3px;
}
.menu-profile-link {
  display: none;
}
.hamb {
  line-height: 1;
}
.hamb[aria-expanded="true"] {
  font-size: 34px;
}
.spec strong,
.trustitem strong {
  overflow-wrap: anywhere;
}
.footer .btn {
  margin-top: 12px;
}
@keyframes heroSlowScale {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.075);
  }
}
@media (max-width: 980px) {
  .menu {
    box-shadow: 0 18px 50px rgba(7, 27, 51, 0.12);
    transform-origin: top;
    animation: menuDrop 0.18s ease;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    padding: 8px 0;
  }
  .menu-profile-link {
    display: block;
  }
  .dropdown-menu a {
    padding: 8px 0;
  }
  .header.is-scrolled .nav {
    height: 68px;
  }
  .hero-proof {
    margin-top: -10px;
  }
  .nav {
    height: 72px;
  }
  @keyframes menuDrop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }
  .section {
    padding: var(--section-y-mobile) 0;
  }
  .hero {
    min-height: 580px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }
  h1 {
    letter-spacing: -0.04em;
  }
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
  .trustitem {
    padding: 20px 16px;
  }
  .trustitem:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .trustitem:last-child {
    grid-column: 1/-1;
  }
  .image-card:hover img,
  .industry:hover img,
  .application-card:hover img {
    transform: none;
  }
  .floating-wa {
    bottom: 14px;
  }
  .topbar + .header .menu {
    inset: 72px 0 auto 0;
  }
  .tech-table {
    font-size: 14px;
  }
  .tech-table th,
  .tech-table td {
    padding: 13px 14px;
  }
  .page-hero {
    padding: 72px 0;
  }
  .cta .hero-actions {
    display: grid;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Fixes: remove hero background flicker seam and stabilise desktop dropdown hover */
.hero:before {
  animation: none !important;
  transform: none !important;
  will-change: auto;
  backface-visibility: hidden;
}

@media (min-width: 981px) {
  .dropdown {
    align-self: stretch;
    display: flex;
    align-items: center;
  }
  .dropbtn {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2px;
  }
  .dropdown:after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 16px;
  }
  .dropdown-menu {
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

/* Phase 1 premium upgrade: contact map, gallery, stronger forms and visual consistency */
.image-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 51, 0.05),
    rgba(7, 27, 51, 0.22)
  );
  pointer-events: none;
  z-index: 1;
}
.image-card .note {
  z-index: 2;
}
.industry:before,
.application-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 27, 51, 0.86),
    rgba(7, 27, 51, 0.16)
  );
  z-index: 1;
  pointer-events: none;
}
.industry:after,
.application-card:after {
  display: none;
}
.industry div,
.application-card div {
  z-index: 2;
}
.contact-layout {
  align-items: start;
}
.rfq-card {
  padding: 32px;
}
.form-intro {
  color: var(--steel);
  font-size: 14px;
  margin: 8px 0 20px;
}
.field {
  display: grid;
  gap: 7px;
}
.field span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  display: block;
}
.form .field.wide {
  grid-column: 1/-1;
}
.rfq-guide {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--pale);
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.rfq-guide strong {
  display: block;
  flex-basis: 100%;
  color: var(--navy);
}
.rfq-guide span {
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: #435363;
}
.map-section {
  align-items: center;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.contact-card strong {
  font-family: Manrope;
  color: var(--navy);
  font-size: 20px;
}
.contact-card span {
  color: #334252;
}
.contact-card small {
  color: var(--steel);
  line-height: 1.55;
}
.map-actions {
  margin-top: 18px;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 380px;
  background: #fff;
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}
.gallery-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
  transition: 0.2s;
}
.gallery-tab:hover,
.gallery-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 27, 51, 0.88),
    rgba(7, 27, 51, 0.08)
  );
}
.gallery-item:hover img {
  transform: scale(1.055);
}
.gallery-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}
.gallery-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-copy h3 {
  font-size: 21px;
}
.gallery-copy p {
  margin: 8px 0 0;
  color: #d8e8f4;
  font-size: 14px;
  line-height: 1.45;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-note {
  border-left: 4px solid var(--aqua);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--steel);
  box-shadow: var(--shadow-sm);
}
.profile-preview {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.profile-preview img {
  width: 92px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.profile-preview p {
  margin: 8px 0 14px;
  color: var(--steel);
  font-size: 14px;
}
.gallery-dialog {
  border: 0;
  border-radius: 18px;
  padding: 0;
  max-width: min(920px, 92vw);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  background: #03101f;
}
.gallery-dialog::backdrop {
  background: rgba(3, 16, 31, 0.74);
  backdrop-filter: blur(6px);
}
.gallery-dialog img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
}
.gallery-dialog button {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .map-embed iframe {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .rfq-card {
    padding: 22px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    min-height: 260px;
  }
  .profile-preview {
    grid-template-columns: 1fr;
  }
  .profile-preview img {
    width: 100%;
    height: 180px;
  }
  .map-embed iframe {
    height: 300px;
  }
  .map-actions {
    display: grid;
  }
  .gallery-tabs {
    gap: 8px;
  }
  .gallery-tab {
    font-size: 13px;
    padding: 9px 12px;
  }
}

/* Navigation capacity after adding Gallery */
@media (min-width: 981px) {
  .menu {
    gap: 16px;
  }
  .menu a,
  .dropbtn {
    font-size: 13.5px;
  }
  .nav {
    gap: 18px;
  }
  .nav > .btn {
    padding: 12px 17px;
  }
}

/* Phase 1.1 polish fixes */
@media (min-width: 981px) {
  .hero {
    min-height: 820px;
  }
  .trustbar {
    margin-top: -72px;
  }
}
.hero .hero-actions {
  margin-bottom: 34px;
}
.map-panel {
  min-height: auto;
  align-content: start;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
}
.map-panel h3 {
  font-size: 22px;
  line-height: 1.18;
  max-width: 620px;
}
.map-panel ul {
  margin-top: 24px;
}
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(7, 27, 51, 0.26);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease,
    background 0.22s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .hero .hero-actions {
    margin-bottom: 14px;
  }
  .scroll-top {
    right: 18px;
    bottom: 86px;
    width: 44px;
    height: 44px;
  }
  .map-panel h3 {
    font-size: 20px;
  }
}

/* Phase 1.4 simplified premium navigation */
@media (min-width: 981px) {
  .menu {
    gap: 24px;
  }
  .menu a,
  .dropbtn {
    font-size: 14px;
  }
  .dropdown-menu {
    min-width: 235px;
  }
  .dropdown-menu a {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .dropdown {
    width: 100%;
    padding: 6px 0 4px;
  }
  .dropbtn {
    display: block;
    width: 100%;
    margin: 4px 0 8px;
    padding: 0;
    text-align: left;
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: default;
  }
  .dropdown-menu {
    display: grid;
    gap: 2px;
    width: 100%;
    padding: 0 0 0 12px;
    border-left: 2px solid rgba(37, 169, 199, 0.25);
  }
  .dropdown-menu a {
    padding: 7px 0;
  }
}

/* Organization chart page */
.org-page-hero {
  background-image: linear-gradient(135deg, rgba(5, 24, 44, 0.9), rgba(9, 59, 93, 0.78)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.org-section .section-head {
  align-items: end;
}

.org-chart-wrap {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(18, 74, 111, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  box-shadow: 0 24px 70px rgba(7, 28, 48, 0.08);
  overflow-x: auto;
}

.org-chart {
  min-width: 820px;
  position: relative;
  padding: 12px 10px 24px;
}

.org-level,
.org-branch,
.org-split,
.org-technical-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.org-level-top {
  position: relative;
  padding-bottom: 44px;
}

.org-level-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 44px;
  background: rgba(39, 129, 190, 0.58);
}

.org-split {
  position: relative;
  gap: 82px;
  padding-top: 34px;
}

.org-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(39, 129, 190, 0.58);
}

.org-branch {
  width: 330px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.org-branch::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 34px;
  background: rgba(39, 129, 190, 0.58);
}

.org-branch .org-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 1px;
  height: 32px;
  background: rgba(39, 129, 190, 0.48);
}

.org-card {
  position: relative;
  width: 250px;
  min-height: 82px;
  padding: 18px 20px;
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #1c6aa5, #75a9d5);
  box-shadow: 0 14px 34px rgba(7, 61, 104, 0.18);
}

.org-card-primary {
  width: 310px;
  background: linear-gradient(135deg, #082a49, #1f78b4);
}

.org-role {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.org-card strong {
  display: block;
  margin-top: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.org-card-small {
  width: 190px;
  min-height: 72px;
}

.org-technical-row {
  position: relative;
  align-items: center;
  gap: 24px;
}

.org-technical-row::before,
.org-technical-row::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(39, 129, 190, 0.55);
}

.org-technical-row::before {
  left: 94px;
}

.org-technical-row::after {
  right: 94px;
}

.org-card-side {
  width: 94px;
  min-height: 54px;
  padding: 15px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f8fc4, #8fbbe0);
  box-shadow: 0 10px 24px rgba(7, 61, 104, 0.12);
}

.org-card-side .org-role {
  font-size: 0.82rem;
}

.org-card-technical {
  width: 190px;
}

.org-notes {
  margin-top: 30px;
}

.org-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(31, 120, 180, 0.18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(7, 28, 48, 0.08);
}

.org-preview-card h2 {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .org-section .section-head {
    align-items: start;
  }

  .org-chart-wrap {
    padding: 18px;
    border-radius: 22px;
  }

  .org-chart {
    min-width: 0;
    padding: 8px 0 16px;
  }

  .org-level-top,
  .org-split,
  .org-branch,
  .org-technical-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0;
  }

  .org-level-top::after,
  .org-split::before,
  .org-branch::before,
  .org-branch .org-card:not(:last-child)::after,
  .org-technical-row::before,
  .org-technical-row::after {
    display: none;
  }

  .org-split {
    gap: 28px;
  }

  .org-branch {
    width: 100%;
  }

  .org-card,
  .org-card-primary,
  .org-card-small,
  .org-card-technical {
    width: min(100%, 330px);
  }

  .org-card-side {
    width: min(100%, 240px);
  }

  .org-preview-card {
    flex-direction: column;
    align-items: start;
    padding: 26px;
  }
}


/* Footer logo alignment polish */
.footer .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer .brand .brand-mark {
  justify-content: flex-start;
}

.footer .brand-logo {
  width: 76px;
  margin-left: 0;
  filter: none;
}



/* SEO and legal page polish */
.footer address {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.8;
}
.footer address a {
  display: inline;
}
.legal-content {
  max-width: 860px;
}
.legal-content h2,
.legal-content h3 {
  color: var(--navy);
}
.legal-content p {
  color: var(--steel);
  line-height: 1.8;
}

/* Mobile menu scroll fix */
@media (max-width: 920px) {
  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }

  .menu {
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
  }

  .menu::-webkit-scrollbar {
    width: 4px;
  }

  .menu::-webkit-scrollbar-thumb {
    background: rgba(23, 104, 166, 0.25);
    border-radius: 999px;
  }

  .menu .btn,
  .menu a.btn,
  .menu a[href$="mkar-company-profile.pdf"] {
    margin-top: 18px;
  }
}

/* Mobile menu spacing refinement */
@media (max-width: 920px) {
  .menu {
    gap: 0;
    padding-top: 22px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .menu > a {
    margin: 0;
    padding: 15px 0;
  }

  .menu .menu-title,
  .menu .dropdown > button,
  .menu .dropbtn {
    margin-top: 22px;
    margin-bottom: 10px;
  }

  .menu .dropdown-menu {
    margin-bottom: 18px;
  }

  .menu a[href$="mkar-company-profile.pdf"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 15px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(23, 104, 166, 0.22);
  }
}

/* Organization chart mobile polish */
@media (max-width: 720px) {
  .org-chart-shell,
  .org-wrap,
  .org-board,
  .org-chart {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .org-chart {
    gap: 10px !important;
  }

  .org-row,
  .org-branch,
  .org-level,
  .org-split,
  .org-side-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .org-card,
  .org-node,
  .org-box {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 15px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 24px rgba(7, 27, 51, 0.12) !important;
  }

  .org-card h3,
  .org-node h3,
  .org-box h3,
  .org-card strong,
  .org-node strong,
  .org-box strong {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  .org-card p,
  .org-node p,
  .org-box p,
  .org-card span,
  .org-node span,
  .org-box span {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .org-connector,
  .org-line,
  .org-chart::before,
  .org-chart::after,
  .org-row::before,
  .org-row::after,
  .org-branch::before,
  .org-branch::after,
  .org-level::before,
  .org-level::after,
  .org-card::before,
  .org-card::after,
  .org-node::before,
  .org-node::after,
  .org-box::before,
  .org-box::after {
    display: none !important;
  }

  .org-card.is-top,
  .org-node.is-top,
  .org-box.is-top,
  .org-card.top,
  .org-node.top,
  .org-box.top {
    background: linear-gradient(135deg, #06294a, #1675b8) !important;
  }

  .org-card.is-side,
  .org-node.is-side,
  .org-box.is-side,
  .org-card.side,
  .org-node.side,
  .org-box.side {
    max-width: 82% !important;
    margin-inline: auto !important;
    padding: 13px 14px !important;
  }

  .org-mobile-note {
    display: block !important;
  }

  .floating-wa {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    width: auto !important;
    border-radius: 999px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
  }

  .scroll-top {
    right: 22px !important;
    bottom: 86px !important;
  }
}

/* Organization chart clean responsive layout */
.org-chart-clean {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(23, 104, 166, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(42, 190, 224, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.10);
}

.org-clean-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  margin-top: 28px;
  align-items: start;
}

.org-clean-branch {
  display: grid;
  gap: 18px;
  position: relative;
}

.org-clean-support {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.75fr;
  gap: 14px;
  align-items: center;
}

.org-clean-node {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0a4572, #4d9ed3);
  box-shadow: 0 18px 36px rgba(7, 27, 51, 0.16);
}

.org-clean-top {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, #062843, #0d7dbe);
}

.org-clean-sub,
.org-clean-small {
  min-height: 58px;
  background: linear-gradient(135deg, #1f77ad, #7db8df);
}

.org-clean-node strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 800;
}

.org-clean-node span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  opacity: 0.94;
}

@media (max-width: 720px) {
  .org-chart-clean {
    margin: 0;
    padding: 18px 14px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7, 27, 51, 0.08);
  }

  .org-clean-grid,
  .org-clean-branch,
  .org-clean-support {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .org-clean-node {
    min-height: 0;
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(7, 27, 51, 0.10);
  }

  .org-clean-top {
    max-width: 100%;
  }

  .org-clean-node strong {
    font-size: 14.5px;
    line-height: 1.18;
  }

  .org-clean-node span {
    margin-top: 4px;
    font-size: 12.5px;
    line-height: 1.25;
  }

  .org-clean-sub,
  .org-clean-small {
    min-height: 0;
    width: 78%;
    margin-inline: auto;
  }

  .org-clean-support .org-clean-node {
    width: 78%;
    margin-inline: auto;
  }

  .org-clean-support .org-clean-node:nth-child(2) {
    width: 88%;
  }

  .organization-chart-page .section,
  body:has(.org-chart-clean) .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
