/* Site header + mega menu
   Brand tokens aligned with Stitch design system */

:root {
  --nav-primary: #00081e;
  --nav-secondary: #3755c3;
  --nav-on-surface: #0b1c30;
  --nav-on-surface-variant: #44464e;
  --nav-surface: #f8f9ff;
  --nav-surface-low: #eff4ff;
  --nav-surface-container: #e5eeff;
  --nav-outline: #c5c6cf;
  --nav-orange: #f97316;
  --nav-max: 1280px;
  --nav-height: 5rem;
  --nav-radius: 0.125rem;
  --nav-shadow: 0 18px 40px rgba(0, 8, 30, 0.12);
  --nav-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-surface);
  border-bottom: 1px solid var(--nav-outline);
}

.site-header__bar {
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-header__bar {
    padding: 0 3rem;
  }
}

.site-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--nav-primary);
  flex-shrink: 0;
}

.site-brand__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-brand__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-secondary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-cta {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--nav-orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  padding: 0.5rem 1.5rem;
  border-radius: var(--nav-radius);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .site-cta {
    display: inline-flex;
  }
}

.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--nav-primary);
  padding: 0.5rem;
  cursor: pointer;
}

.site-menu-toggle .material-symbols-outlined {
  font-size: 1.75rem;
}

@media (min-width: 1100px) {
  .site-menu-toggle {
    display: none;
  }
}

/* Desktop nav */
.site-nav {
  display: none;
}

@media (min-width: 1100px) {
  .site-nav {
    display: block;
    flex: 1;
    min-width: 0;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.85rem;
  flex-wrap: nowrap;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  height: var(--nav-height);
  padding: 0 0.15rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--nav-on-surface-variant);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__item.is-open > .site-nav__trigger,
.site-nav__link.is-active {
  color: var(--nav-secondary);
  outline: none;
}

.site-nav__link.is-active,
.site-nav__item.is-open > .site-nav__trigger {
  border-bottom-color: var(--nav-secondary);
  font-weight: 700;
}

.site-nav__chevron {
  font-size: 1rem !important;
  transition: transform 0.25s var(--nav-ease);
}

.site-nav__item.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

/* Mega panels — unified size + Apple-like motion */
.mega-panel {
  --mega-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mega-duration: 0.34s;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  width: min(48rem, calc(100vw - 2.5rem));
  min-height: 17.5rem;
  background: #fff;
  border: 1px solid var(--nav-outline);
  border-radius: 0.2rem;
  box-shadow: 0 18px 50px rgba(0, 8, 30, 0.14), 0 2px 8px rgba(0, 8, 30, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.96);
  transform-origin: top center;
  transition:
    opacity var(--mega-duration) var(--mega-ease),
    transform var(--mega-duration) var(--mega-ease),
    visibility var(--mega-duration);
  z-index: 60;
  will-change: transform, opacity;
}

.mega-panel--wide {
  width: min(48rem, calc(100vw - 2.5rem));
}

.mega-panel[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-nav__item.is-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-panel__inner {
  display: grid;
  grid-template-columns: minmax(11rem, 0.95fr) 1.35fr;
  gap: 1.25rem;
  padding: 1.35rem;
  min-height: 17.5rem;
  box-sizing: border-box;
  align-items: stretch;
}

.mega-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mega-panel__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-secondary);
}

.mega-panel__title {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--nav-primary);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.mega-panel__title:hover {
  color: var(--nav-secondary);
}

.mega-panel__desc {
  margin: 0;
  color: var(--nav-on-surface-variant);
  font-size: 0.875rem;
  line-height: 1.5;
}

.mega-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--nav-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mega-panel__cta .material-symbols-outlined {
  font-size: 1rem;
}

.mega-panel__cta:hover {
  color: var(--nav-primary);
}

.mega-panel__grid {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.mega-panel__grid--2 {
  grid-template-columns: 1fr 1fr;
}

.mega-link {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 0.1rem;
  background: var(--nav-surface-low);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(6px);
  transition: background 0.2s ease, transform 0.2s var(--mega-ease), opacity 0.2s ease;
}

.site-nav__item.is-open .mega-link {
  opacity: 1;
  transform: translateY(0);
  transition:
    background 0.2s ease,
    transform 0.4s var(--mega-ease),
    opacity 0.4s var(--mega-ease);
}

.site-nav__item.is-open .mega-link:nth-child(1) { transition-delay: 0.04s; }
.site-nav__item.is-open .mega-link:nth-child(2) { transition-delay: 0.07s; }
.site-nav__item.is-open .mega-link:nth-child(3) { transition-delay: 0.1s; }
.site-nav__item.is-open .mega-link:nth-child(4) { transition-delay: 0.13s; }
.site-nav__item.is-open .mega-link:nth-child(5) { transition-delay: 0.16s; }
.site-nav__item.is-open .mega-link:nth-child(6) { transition-delay: 0.19s; }

.mega-link:hover,
.mega-link:focus-visible {
  background: var(--nav-surface-container);
  outline: none;
  transform: translateY(-1px);
}

.mega-link__icon {
  color: var(--nav-secondary);
  font-size: 1.35rem !important;
  margin-top: 0.1rem;
}

.mega-link__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.mega-link__label {
  color: var(--nav-primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.mega-link__hint {
  color: var(--nav-on-surface-variant);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Keep right-side mega menus on-screen */
.site-nav__item:nth-last-child(-n + 4) .mega-panel {
  left: auto;
  right: 0;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
}

.site-nav__item:nth-last-child(-n + 4).is-open > .mega-panel {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .mega-panel,
  .mega-link {
    transition: none !important;
  }

  .mega-link {
    opacity: 1;
    transform: none;
  }
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--nav-outline);
  background: var(--nav-surface);
  max-height: min(78vh, 36rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open,
.mobile-menu:not([hidden]) {
  display: block;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
}

.mobile-menu__link,
.mobile-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: var(--nav-on-surface-variant);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu__link:hover,
.mobile-accordion__trigger:hover {
  background: var(--nav-surface-low);
  color: var(--nav-secondary);
}

.mobile-menu__link.is-active,
.mobile-accordion__trigger.is-active {
  color: var(--nav-secondary);
  font-weight: 700;
  border-left-color: var(--nav-secondary);
  background: var(--nav-surface-low);
}

.mobile-accordion.is-open > .mobile-accordion__trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.mobile-accordion__trigger .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform 0.25s var(--nav-ease);
}

.mobile-accordion__panel {
  display: none;
  flex-direction: column;
  padding: 0 0 0.5rem 1.25rem;
  background: #fff;
}

.mobile-accordion.is-open > .mobile-accordion__panel,
.mobile-accordion__panel:not([hidden]) {
  display: flex;
}

.mobile-accordion__panel[hidden] {
  display: none !important;
}

.mobile-accordion__panel a {
  padding: 0.65rem 1rem;
  color: var(--nav-on-surface-variant);
  font-size: 0.875rem;
  text-decoration: none;
}

.mobile-accordion__panel a:hover {
  color: var(--nav-secondary);
}

.mobile-menu__cta {
  margin: 0.75rem 1rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.5rem;
  border-radius: var(--nav-radius);
  text-decoration: none;
}

@media (min-width: 1100px) {
  .mobile-menu {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

[id].scroll-mt-24,
section[id] {
  scroll-margin-top: 6rem;
}

body.nav-locked {
  overflow: hidden;
}

/* Agenda carousel cards */
.agenda-card {
  height: 22rem;
  background: #00081e;
}

@media (min-width: 768px) {
  .agenda-card {
    height: 26rem;
  }
}

.agenda-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.agenda-card:hover .agenda-card__img,
.agenda-card:focus-within .agenda-card__img {
  transform: scale(1.06);
}

.agenda-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 8, 30, 0.92) 0%,
    rgba(0, 8, 30, 0.45) 45%,
    rgba(0, 8, 30, 0.15) 100%
  );
  pointer-events: none;
}

.agenda-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 1.25rem 1.1rem 1.35rem;
  color: #fff;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .agenda-card__title {
    font-size: 1.15rem;
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

.agenda-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: -3.75rem;
  right: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
}

.agenda-carousel.owl-carousel .owl-nav [class*="owl-"] {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00081e;
  color: #fff;
  border-radius: 0.125rem;
  font-size: 1.1rem;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.agenda-carousel.owl-carousel .owl-nav [class*="owl-"]:hover {
  background: #3755c3;
}

.agenda-carousel.owl-carousel .owl-dots {
  margin-top: 1.25rem;
}

.agenda-carousel.owl-carousel .owl-dot span {
  width: 0.55rem;
  height: 0.55rem;
  margin: 0.25rem;
  background: #c5c6cf;
  transition: background 0.2s ease, transform 0.2s ease;
}

.agenda-carousel.owl-carousel .owl-dot.active span,
.agenda-carousel.owl-carousel .owl-dot:hover span {
  background: #3755c3;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .agenda-carousel.owl-carousel .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}

/* Operational structure org chart */
.org-chart__divider {
  width: min(100%, 28rem);
  height: 3px;
  border: 0;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 6' preserveAspectRatio='none'%3E%3Cpath d='M0 3 Q50 0 100 3 T200 3 T300 3 T400 3' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.org-chart {
  --org-line: #c5c6cf;
  --org-line-w: 1.5px;
  --org-gap: 0.85rem;
  --org-stem: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.org-chart__tier {
  display: flex;
  justify-content: center;
  width: 100%;
}

.org-chart__nodes {
  display: flex;
  position: relative;
  max-width: 100%;
}

.org-chart__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  background: #eff4ff;
  color: #3755c3;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.125rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.org-chart__node:hover {
  background: #d3e4fe;
  color: #00081e;
}

.org-chart__node--ceo {
  color: #5b77d4;
  min-width: 7.5rem;
  padding-inline: 2rem;
}

/* —— Mobile / tablet: single-column vertical timeline —— */
@media (max-width: 1023px) {
  .org-chart__nodes {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: min(100%, 22rem);
    gap: var(--org-gap);
  }

  .org-chart__nodes--branch {
    padding-top: var(--org-stem);
  }

  /* Stem from previous tier down to first role */
  .org-chart__nodes--branch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--org-line-w);
    height: var(--org-stem);
    background: var(--org-line);
    transform: translateX(-50%);
  }

  /* Vertical connector between stacked roles */
  .org-chart__nodes--branch .org-chart__node:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: var(--org-line-w);
    height: var(--org-gap);
    background: var(--org-line);
    transform: translateX(-50%);
  }
}

/* —— Desktop: classic hierarchy with branch rails —— */
@media (min-width: 1024px) {
  .org-chart {
    --org-gap: 1rem;
    --org-stem: 1.35rem;
  }

  .org-chart__nodes {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: max-content;
    gap: var(--org-gap);
  }

  .org-chart__nodes--branch {
    padding-top: calc(var(--org-stem) * 2);
  }

  .org-chart__nodes--branch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--org-line-w);
    height: var(--org-stem);
    background: var(--org-line);
    transform: translateX(-50%);
  }

  .org-chart__node {
    flex: 1 1 0;
    min-width: 0;
    max-width: 11.5rem;
    min-height: 3rem;
    padding: 0.75rem 1.15rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .org-chart__node--ceo {
    flex: 0 0 auto;
    max-width: none;
  }

  /* Drop from rail into each role */
  .org-chart__nodes--branch .org-chart__node::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: var(--org-line-w);
    height: var(--org-stem);
    background: var(--org-line);
    transform: translateX(-50%);
  }

  /* Horizontal rail: center of this role → center of next */
  .org-chart__nodes--branch .org-chart__node:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + var(--org-stem) - var(--org-line-w));
    width: calc(100% + var(--org-gap));
    height: var(--org-line-w);
    background: var(--org-line);
  }
}

/* Fleet management specs table */
.fleet-specs__row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #c5c6cf;
}

.fleet-specs__row:last-child {
  border-bottom: 0;
}

.fleet-specs__label {
  padding: 1rem 1.15rem;
  background: #eff4ff;
  color: #3755c3;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.fleet-specs__label::after {
  content: " :";
}

.fleet-specs__value {
  padding: 1rem 1.15rem;
  background: #f8f9ff;
  color: #0b1c30;
}

.fleet-specs__row:nth-child(even) .fleet-specs__label {
  background: #e5eeff;
}

.fleet-specs__row:nth-child(even) .fleet-specs__value {
  background: #eff4ff;
}

@media (min-width: 768px) {
  .fleet-specs__row {
    grid-template-columns: minmax(11rem, 15rem) 1fr;
    align-items: stretch;
  }

  .fleet-specs__label {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border-right: 1px solid #c5c6cf;
  }

  .fleet-specs__value {
    padding: 1.25rem 1.5rem;
  }
}

/* Verification page — background check list */
.verify-checks__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid #c5c6cf;
}

.verify-checks__item:last-child {
  border-bottom: 0;
}

.verify-checks__label {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b1c30;
}

.verify-checks__toggle {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #22c55e;
}

.verify-checks__knob {
  position: absolute;
  top: 0.18rem;
  right: 0.18rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 8, 30, 0.2);
}

/* Verification page — vehicle deployment steps */
.deploy-flow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  padding: 1.15rem 1.25rem;
  background: #eff4ff;
  border: 1px solid #c5c6cf;
  border-radius: 0.125rem;
}

.deploy-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2.15rem;
  top: calc(100% - 0.1rem);
  width: 1.5px;
  height: 1.1rem;
  background: #3755c3;
}

@media (min-width: 768px) {
  .deploy-flow__step:not(:last-child)::after {
    height: 1.25rem;
  }
}

.deploy-flow__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.4rem 0.55rem;
  background: #00081e;
  color: #fff;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.125rem;
}

.deploy-flow__body {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Client logo grid */
.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 12rem;
  padding: 1.25rem 1rem 1.35rem;
  background: #fff;
  border: 1px solid #c5c6cf;
  text-align: center;
}

.client-logo-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 5.5rem;
}

.client-logo-card__media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 5.5rem;
  height: auto;
  object-fit: contain;
}

.client-logo-card__since {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: #0b1c30;
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.2;
}

.client-logo-card__since em {
  font-style: italic;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-logo-card__since span {
  font-style: normal;
  font-weight: 800;
  font-size: 1.05rem;
}

@media (min-width: 1024px) {
  .client-logo-card {
    min-height: 13.5rem;
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .client-logo-card__media {
    min-height: 6.5rem;
  }

  .client-logo-card__media img {
    max-height: 6.5rem;
  }
}

/* Contact form controls */
.contact-input {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid #c5c6cf;
  border-radius: 0.125rem;
  background: #f8f9ff;
  color: #0b1c30;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.contact-input {
  height: auto;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.contact-input:focus {
  border-color: #3755c3;
  box-shadow: 0 0 0 1px #3755c3;
}

/* About — governance callout */
.governance-callout {
  border: 1px solid #c5c6cf;
  border-left: 4px solid #3755c3;
  background: #eff4ff;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 12px 28px -16px rgba(0, 8, 30, 0.12);
}

@media (min-width: 768px) {
  .governance-callout {
    padding: 1.75rem 2rem;
  }
}

/* Privacy policy notice */
.privacy-notice {
  border: 1px solid #c5c6cf;
  border-left: 4px solid #f97316;
  background: #fff7ed;
  padding: 1rem 1.15rem;
}

/* Sticky WhatsApp + Call actions */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(0, 8, 30, 0.45);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.float-actions__btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #fff;
}

.float-actions__btn i {
  font-size: 1.35rem;
  line-height: 1;
}

.float-actions__btn--whatsapp {
  background: #25d366;
}

.float-actions__btn--call {
  background: #3755c3;
}

.float-actions__btn--top {
  border: 0;
  cursor: pointer;
  background: #00081e;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.float-actions__btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-actions__btn--top:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .float-actions {
    right: 1.5rem;
    bottom: 1.75rem;
  }

  .float-actions__btn {
    width: 3.4rem;
    height: 3.4rem;
  }

  .float-actions__btn i {
    font-size: 1.45rem;
  }
}

/* Page hero atmosphere + hand-drawn accents */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

.page-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background: rgba(0, 8, 30, 0.8); */
  background: rgb(0 8 30 / 34%);
  pointer-events: none;
}

.page-hero__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__glow {
  position: absolute;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.35;
}

.page-hero__glow--left {
  left: -8%;
  top: -20%;
  background: radial-gradient(circle, rgba(55, 85, 195, 0.55) 0%, transparent 70%);
}

.page-hero__glow--right {
  right: -6%;
  bottom: -25%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, transparent 70%);
}

.page-hero__mark {
  position: absolute;
  color: #f97316;
  opacity: 0.9;
}

.page-hero__mark--right {
  width: clamp(4.5rem, 10vw, 7.5rem);
  height: auto;
  right: clamp(0.75rem, 6vw, 5rem);
  top: 18%;
  transform: rotate(8deg);
}

.page-hero__mark--left {
  width: clamp(3.25rem, 7vw, 5rem);
  height: auto;
  left: clamp(0.5rem, 4vw, 3.5rem);
  bottom: 18%;
  color: #3755c3;
  opacity: 0.75;
  transform: rotate(-12deg);
}

@media (max-width: 639px) {
  .page-hero__mark--left {
    display: none;
  }

  .page-hero__mark--right {
    top: 12%;
    right: 0.35rem;
    opacity: 0.75;
  }
}
