:root {
  --ink: #111827;
  --muted: #647084;
  --soft: #f3f6fa;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #dde4ee;
  --navy: #071a33;
  --blue: #174c86;
  --cyan: #dbe6f3;
  --teal: #0f334f;
  --gold: #b9903f;
  --coral: #7b652e;
  --shadow: 0 24px 72px rgba(7, 26, 51, 0.13);
  --shadow-soft: 0 12px 38px rgba(7, 26, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 46%, #eef3f8 100%),
    linear-gradient(90deg, rgba(7, 26, 51, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 88px 88px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.container {
  width: min(1180px, calc(100% - clamp(28px, 5vw, 44px)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 221, 232, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(3, 9, 19, 0.1);
}

.top-strip {
  color: #f8fbff;
  background: linear-gradient(90deg, #071a33, #0f334f);
  font-size: 0.84rem;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip a {
  color: #fff;
  font-weight: 850;
}

.nav {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 950;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 42px;
  border: 1px solid rgba(7, 24, 47, 0.1);
  border-radius: 4px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 10px 24px rgba(7, 24, 47, 0.14);
}

.brand span,
.brand small {
  display: block;
}

.brand span {
  line-height: 1.08;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 780;
}

.nav-menu a {
  min-height: 40px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--navy);
  background: rgba(201, 162, 79, 0.14);
}

.nav-action {
  margin-left: 8px;
  padding-inline: 18px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.2);
}

.nav-action:hover,
.nav-action.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--gold)) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 114px);
  padding: 96px 0 76px;
  color: #fff;
  background:
    linear-gradient(108deg, rgba(7, 26, 51, 0.98), rgba(15, 51, 79, 0.92) 58%, rgba(23, 76, 134, 0.76)),
    url("assets/vstion-logo.jpeg") center / cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 72%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.3), var(--gold));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 30px;
  color: #e8f4ff;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(244, 217, 141, 0.36);
  border-radius: 999px;
  color: #f4d98d;
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.opening-ribbon {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  transition: opacity 420ms ease 680ms, visibility 420ms ease 680ms;
}

.opening-ribbon[hidden] {
  display: none;
}

body.opening-active {
  overflow: hidden;
}

.opening-ribbon-stage {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(23, 76, 134, 0.8), transparent 40%),
    linear-gradient(135deg, var(--navy), var(--teal));
  background-size: 88px 88px, 88px 88px, auto, auto;
  cursor: pointer;
  font: inherit;
}

.opening-ribbon-stage:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -8px;
}

.opening-ribbon-copy {
  position: absolute;
  top: clamp(44px, 10vh, 110px);
  left: 50%;
  width: min(90vw, 760px);
  translate: -50% 0;
  z-index: 5;
  text-align: center;
  transition: opacity 240ms ease, translate 500ms ease;
}

.opening-ribbon-copy img {
  width: 86px;
  height: 62px;
  margin: 0 auto 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.opening-ribbon-copy small,
.opening-ribbon-copy strong,
.opening-ribbon-copy b,
.opening-ribbon-copy span {
  display: block;
}

.opening-ribbon-copy small {
  margin-bottom: 10px;
  color: #e7c66f;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.opening-ribbon-copy strong {
  font-family: inherit;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

.opening-ribbon-copy b {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-ribbon-copy span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  animation: openingPrompt 1500ms ease-in-out infinite;
}

.ribbon-cutting {
  position: absolute;
  top: 57%;
  left: 50%;
  width: min(92vw, 980px);
  translate: -50% -50%;
  z-index: 4;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.42));
  transition: translate 760ms cubic-bezier(0.65, 0, 0.35, 1), rotate 760ms ease, opacity 320ms ease 520ms;
  animation: ribbonArtworkFloat 2600ms ease-in-out infinite;
}

.opening-ribbon-art {
  width: 100%;
  max-height: 48vh;
  object-fit: contain;
}

.opening-ribbon-date {
  position: absolute;
  bottom: clamp(30px, 7vh, 70px);
  left: 50%;
  translate: -50% 0;
  padding-top: 14px;
  border-top: 1px solid rgba(185, 144, 63, 0.62);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 200ms ease;
}

.confetti-piece {
  position: absolute;
  width: 9px;
  height: 16px;
  border-radius: 2px;
  opacity: 0.86;
  animation: confettiFloat 2400ms ease-in-out infinite;
}

.confetti-piece.c1 {
  left: 8%;
  top: -28px;
  background: #f4d98d;
  transform: rotate(16deg);
}

.confetti-piece.c2 {
  left: 29%;
  bottom: -24px;
  background: #ffffff;
  animation-delay: 420ms;
  transform: rotate(-22deg);
}

.confetti-piece.c3 {
  right: 23%;
  top: -30px;
  background: #55c7d8;
  animation-delay: 760ms;
  transform: rotate(28deg);
}

.confetti-piece.c4 {
  right: 7%;
  bottom: -22px;
  background: #ec3347;
  animation-delay: 1100ms;
  transform: rotate(-14deg);
}

@keyframes confettiFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes openingPrompt {
  50% {
    opacity: 0.5;
  }
}

@keyframes ribbonArtworkFloat {
  50% {
    translate: 0 -8px;
  }
}

.opening-ribbon.is-cut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-ribbon.is-cut .ribbon-cutting {
  translate: -50% 32vh;
  rotate: -12deg;
  opacity: 0;
  animation: none;
}

.opening-ribbon.is-cut .opening-ribbon-copy {
  translate: -50% -30px;
  opacity: 0;
}

.opening-ribbon.is-cut .opening-ribbon-date {
  opacity: 0;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.22);
}

.hero .primary,
.cta .primary,
.contact-form .primary {
  color: #081426;
  background: linear-gradient(135deg, #f4d98d, var(--gold));
  box-shadow: 0 16px 34px rgba(185, 144, 63, 0.3);
}

.hero .primary:hover,
.cta .primary:hover,
.contact-form .primary:hover {
  box-shadow: 0 20px 42px rgba(201, 162, 79, 0.36);
}

.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.light {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.hero-panel,
.image-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-panel {
  transform: none;
}

.hero-panel img,
.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.hero-panel img {
  filter: saturate(0.85) contrast(1.08);
}

.hero-panel {
  border-bottom: 4px solid var(--gold);
}

.hero-panel-body {
  padding: 26px;
  background: rgba(7, 26, 51, 0.78);
}

.hero-panel-body span,
.hero-panel-body strong {
  display: block;
}

.hero-panel-body span {
  margin-bottom: 8px;
  color: #ffe6a6;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel-body strong {
  color: #fff;
  font-size: 1.28rem;
}

.hero-panel-body p {
  margin: 8px 0 0;
  color: #e8f4ff;
}

.quick-stats {
  background: transparent;
}

.quick-stats-grid {
  transform: translateY(-34px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(214, 221, 232, 0.96);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-stats-grid div {
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-stats-grid div:last-child {
  border-right: 0;
}

.quick-stats-grid strong,
.quick-stats-grid span {
  display: block;
}

.quick-stats-grid strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
}

.quick-stats-grid div {
  position: relative;
}

.quick-stats-grid div::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.quick-stats-grid div:hover::after {
  opacity: 1;
}

.section {
  padding: 88px 0;
}

.section.soft,
.soft-band {
  background:
    linear-gradient(180deg, #f3f6fa, #ffffff);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 92px;
  height: 2px;
  margin-top: 18px;
  display: block;
  background: linear-gradient(90deg, var(--gold), rgba(183, 138, 50, 0.12));
}

.section-heading.center::after {
  margin-inline: auto;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.quick-stats-grid span,
.section-heading p,
.card p,
.service-row p,
.values-grid span,
.process-grid p,
.leader-info p,
.page-hero p,
.contact p,
.footer p {
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    linear-gradient(108deg, rgba(7, 26, 51, 0.98), rgba(15, 51, 79, 0.92) 58%, rgba(23, 76, 134, 0.78)),
    url("assets/vstion-logo.jpeg") center / cover no-repeat;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.page-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: #e8f4ff;
  font-size: 1.12rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(217, 222, 232, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 144, 63, 0.16));
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 138, 50, 0.36);
  box-shadow: var(--shadow);
}

.card.highlight {
  border-color: rgba(183, 138, 50, 0.34);
  background: linear-gradient(180deg, #fff, #f9f6ed);
}

.icon-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 950;
}

.card a {
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.values-grid,
.process-grid {
  display: grid;
  gap: 14px;
}

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

.values-grid div,
.process-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(23, 32, 51, 0.06);
}

.values-grid strong,
.values-grid span,
.process-grid strong,
.process-grid span {
  display: block;
}

.values-grid strong,
.process-grid strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.process-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 950;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(217, 222, 232, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-row h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.service-row p {
  max-width: 760px;
  margin-bottom: 0;
}

.service-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.service-row > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 950;
}

.service-row a {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(29, 79, 145, 0.22);
  border-radius: 6px;
  background: rgba(29, 79, 145, 0.04);
}

.service-row a:hover {
  border-color: rgba(183, 138, 50, 0.36);
  color: var(--navy);
  background: rgba(183, 138, 50, 0.1);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.leader-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.leader-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #edf4ef;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.08);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 2.4rem;
  font-weight: 950;
}

.leader-info span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.leader-role {
  width: fit-content;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 7px 11px;
  border: 1px solid rgba(185, 144, 63, 0.28);
  border-radius: 999px;
  color: var(--navy) !important;
  background: rgba(185, 144, 63, 0.1);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(15, 51, 79, 0.94)),
    url("assets/vstion-logo.jpeg") center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact h2,
.contact .section-label {
  color: #fff;
}

.contact p {
  color: #e8f4ff;
}

.contact-details {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-details div {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 4px;
  color: #ffe6a6;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
}

.contact-form label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #cdd9d2;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(183, 138, 50, 0.18);
  border-color: var(--gold);
}

.contact-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.wide {
  grid-column: 1 / -1;
}

.cta {
  padding: 62px 0;
  color: #fff;
  background: linear-gradient(90deg, #071a33, #0f334f 58%, #174c86);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  margin-bottom: 8px;
  color: #fff;
}

.cta p {
  margin-bottom: 0;
  color: #e8f4ff;
}

.footer {
  color: #d6e8fa;
  background: #071a33;
}

.footer-grid {
  padding: 58px 0 36px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer img {
  width: 112px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.footer p {
  margin: 0;
  color: #b9cde1;
}

.footer strong,
.footer a {
  display: block;
}

.footer strong {
  margin-bottom: 14px;
  color: #fff;
}

.footer a {
  margin-bottom: 8px;
  color: #b9cde1;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 850;
}

.floating-enquiry {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 30;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.28);
  font-weight: 950;
}

.vstion-ping {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  color: var(--ink);
}

.vstion-ping-toggle,
.vstion-ping-close,
.vstion-ping-form button,
.vstion-ping-actions button,
.vstion-ping-file,
.vstion-ping-share,
.vstion-ping-preview button {
  cursor: pointer;
}

.vstion-ping-toggle {
  min-height: 54px;
  padding: 7px 16px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.3);
}

.vstion-ping-toggle span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #071a33;
  background: linear-gradient(135deg, #f4d98d, var(--gold));
  font-size: 0.82rem;
  font-weight: 950;
}

.vstion-ping-toggle strong {
  font-size: 0.95rem;
  line-height: 1;
}

.vstion-ping-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 8px;
  display: none;
  background: #fff;
  box-shadow: 0 26px 76px rgba(7, 26, 51, 0.26);
}

.vstion-ping.is-open .vstion-ping-panel {
  display: block;
}

.vstion-ping-header {
  min-height: 72px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.vstion-ping-header span,
.vstion-ping-header strong {
  display: block;
}

.vstion-ping-header span {
  color: #ffe6a6;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vstion-ping-header strong {
  font-size: 1.16rem;
  line-height: 1.1;
}

.vstion-ping-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.35rem;
  line-height: 1;
}

.vstion-ping-messages {
  height: 288px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6f8fb;
}

.vstion-ping-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.07);
}

.vstion-ping-message p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.vstion-ping-message img {
  width: 100%;
  max-height: 190px;
  margin-top: 8px;
  border-radius: 6px;
  object-fit: cover;
}

.vstion-ping-message.bot {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
}

.vstion-ping-message.user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.vstion-ping-actions {
  padding: 12px 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
}

.vstion-ping-actions button,
.vstion-ping-share,
.vstion-ping-preview button {
  min-height: 34px;
  border: 1px solid rgba(23, 76, 134, 0.18);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(23, 76, 134, 0.05);
  font-size: 0.82rem;
  font-weight: 850;
}

.vstion-ping-actions button {
  padding: 0 10px;
}

.vstion-ping-form {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  background: #fff;
}

.vstion-ping-form input[type="text"] {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.vstion-ping-form input[type="text"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 144, 63, 0.14);
}

.vstion-ping-file {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f9fbfd;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.vstion-ping-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vstion-ping-form button[type="submit"] {
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 900;
}

.vstion-ping-preview {
  margin: 0 14px 12px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #f9fbfd;
}

.vstion-ping-preview img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.vstion-ping-preview span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vstion-ping-preview button {
  padding: 0 9px;
}

.vstion-ping-share {
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  color: var(--navy);
  background: rgba(185, 144, 63, 0.1);
}

.employee-portal-page {
  min-height: 100vh;
  color: #122033;
  background:
    linear-gradient(120deg, rgba(7, 26, 51, 0.96), rgba(15, 51, 79, 0.9) 48%, rgba(23, 76, 134, 0.8)),
    url("assets/vstion-logo.jpeg") center / cover no-repeat fixed;
}

.employee-portal-page .vstion-ping {
  display: none;
}

.employee-portal-page.is-portal-authenticated .vstion-ping {
  display: block;
}

.employee-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.employee-login {
  min-height: calc(100vh - 144px);
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(300px, 0.72fr);
  gap: 26px;
  align-items: center;
}

.employee-login-panel,
.employee-security-panel,
.portal-module,
.portal-admin-module,
.portal-summary-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.25);
}

.employee-login-panel {
  padding: clamp(28px, 4vw, 46px);
}

.portal-brand {
  width: fit-content;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  font-weight: 950;
}

.portal-brand img {
  width: 60px;
  height: 46px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 4px;
  object-fit: cover;
  background: #000;
}

.portal-brand span,
.portal-brand small {
  display: block;
}

.portal-brand span {
  line-height: 1;
}

.portal-brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.employee-login-panel h1 {
  max-width: 620px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  line-height: 1;
}

.portal-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.portal-login-form,
.portal-admin-form {
  display: grid;
  gap: 16px;
}

.portal-login-form label,
.portal-admin-form label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.portal-login-form input[type="text"],
.portal-login-form input[type="password"],
.portal-admin-form input,
.portal-admin-form select {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid #cbd6e4;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.portal-login-form input:focus,
.portal-admin-form input:focus,
.portal-admin-form select:focus {
  outline: 3px solid rgba(185, 144, 63, 0.18);
  border-color: var(--gold);
}

.portal-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-login-row a {
  color: var(--blue);
  font-weight: 850;
  white-space: nowrap;
}

.portal-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.portal-login-button {
  width: 100%;
  border: 0;
}

.portal-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-access-note {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(185, 144, 63, 0.25);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  background: rgba(185, 144, 63, 0.09);
  font-size: 0.9rem;
}

.portal-access-note strong {
  color: var(--navy);
}

.employee-security-panel {
  padding: clamp(22px, 3vw, 30px);
  color: #fff;
  background: rgba(7, 26, 51, 0.72);
  backdrop-filter: blur(20px);
}

.security-status,
.portal-clock,
.portal-notice-list article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.security-status {
  margin-bottom: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.security-status span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #46d382;
  box-shadow: 0 0 0 6px rgba(70, 211, 130, 0.14);
}

.portal-clock {
  margin-bottom: 18px;
  padding: 22px;
}

.portal-clock span,
.portal-clock strong {
  display: block;
}

.portal-clock span {
  color: #ffe6a6;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portal-clock strong {
  margin-top: 5px;
  font-size: 2rem;
  line-height: 1.1;
}

.portal-notice-list {
  display: grid;
  gap: 12px;
}

.portal-notice-list article {
  padding: 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
}

.portal-notice-list article > span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: #071a33;
  background: linear-gradient(135deg, #f4d98d, var(--gold));
  font-weight: 950;
}

.portal-notice-list strong,
.portal-notice-list p {
  display: block;
}

.portal-notice-list p {
  margin: 4px 0 0;
  color: #d7e9f8;
  font-size: 0.92rem;
}

.portal-admin-module {
  margin: 22px 0;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(300px, 1fr) minmax(280px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.portal-admin-module[hidden] {
  display: none;
}

.portal-admin-module h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.portal-admin-module p {
  color: var(--muted);
}

.portal-admin-form {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.portal-admin-form .button {
  width: 100%;
  border: 0;
}

.portal-user-list {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.portal-empty-users {
  margin-bottom: 0;
}

.portal-user-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: #f8fbff;
}

.portal-user-card + .portal-user-card {
  margin-top: 10px;
}

.portal-user-card strong,
.portal-user-card span {
  display: block;
}

.portal-user-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.portal-user-card button {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(122, 29, 29, 0.18);
  border-radius: 6px;
  color: #8b1d1d;
  background: #fff5f5;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.portal-user-card button:disabled {
  color: var(--muted);
  background: #eef3f8;
  cursor: default;
}

.employee-dashboard {
  display: grid;
  gap: 22px;
  padding-bottom: 34px;
}

.employee-dashboard[hidden] {
  display: none;
}

.employee-dashboard-header {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  background: rgba(7, 26, 51, 0.76);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.employee-dashboard-header h2 {
  margin-bottom: 7px;
  color: #fff;
}

.employee-dashboard-header h1 {
  max-width: none;
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.employee-dashboard-header p:last-child {
  margin-bottom: 0;
  color: #d7e9f8;
}

.dashboard-brand {
  margin-bottom: 24px;
  color: #fff;
}

.dashboard-brand small {
  color: #d7e9f8;
}

.portal-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portal-summary-grid article {
  padding: 22px;
}

.portal-summary-grid span,
.portal-summary-grid strong,
.portal-summary-grid p {
  display: block;
}

.portal-summary-grid span,
.portal-module-header span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portal-summary-grid strong {
  margin: 7px 0 5px;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.portal-summary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-workspace-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 18px;
}

.portal-module {
  padding: 24px;
}

.portal-module-header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-module-header h2,
.portal-module-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.portal-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portal-service-grid button {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(23, 76, 134, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: #f7fafe;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.portal-service-grid button:hover {
  border-color: rgba(185, 144, 63, 0.45);
  background: #fff9eb;
}

.portal-service-grid button.is-active {
  border-color: rgba(185, 144, 63, 0.66);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.portal-service-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.portal-service-panel[hidden] {
  display: none;
}

.portal-service-panel h3 {
  margin-bottom: 8px;
}

.portal-service-panel p {
  color: var(--muted);
}

.portal-service-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.portal-service-form label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.portal-service-form input,
.portal-service-form select,
.portal-service-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #cbd6e4;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.portal-service-form textarea {
  resize: vertical;
}

.portal-service-form input:focus,
.portal-service-form select:focus,
.portal-service-form textarea:focus {
  outline: 3px solid rgba(185, 144, 63, 0.18);
  border-color: var(--gold);
}

.portal-service-form .button {
  border: 0;
}

.portal-service-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--blue) !important;
  font-weight: 850;
}

.portal-download-link {
  width: fit-content;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-flex;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 900;
}

.portal-policy-list {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.portal-policy-list li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #f8fbff;
  font-weight: 850;
}

.portal-timeline {
  display: grid;
  gap: 12px;
}

.portal-timeline article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.portal-timeline strong,
.portal-timeline span {
  display: block;
}

.portal-timeline span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.portal-table-wrap {
  overflow-x: auto;
}

.portal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.portal-table th,
.portal-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.portal-table th {
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.status-pill {
  min-width: 86px;
  padding: 6px 9px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill.pending {
  color: #8a5c00;
  background: #fff1c9;
}

.status-pill.approved {
  color: #09623c;
  background: #dbf7e9;
}

.status-pill.review {
  color: #174c86;
  background: #e4eefc;
}

.portal-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #d8e8f7;
  font-size: 0.92rem;
}

.portal-footer a {
  color: #fff;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .card-grid,
  .quick-stats-grid,
  .values-grid,
  .portal-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .quick-stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .quick-stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 940px) {
  .menu-button {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

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

  .nav-action {
    margin-left: 0;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .employee-login,
  .portal-admin-module,
  .portal-workspace-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-panel {
    transform: none;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 58px 1fr;
  }

  .service-row a {
    grid-column: 2;
  }

  .leader-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: 160px 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .top-strip-inner {
    padding: 8px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .nav {
    width: min(100% - 24px, 1240px);
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .nav-menu {
    top: calc(100% + 8px);
  }

  .hero {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .page-hero {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .hero-text,
  .page-hero p {
    font-size: 1rem;
  }

  .opening-ribbon-copy {
    top: 8vh;
  }

  .opening-ribbon-copy strong {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .ribbon-cutting {
    top: 60%;
    width: 112vw;
  }

  .hero-actions,
  .hero-actions .button,
  .inline-actions,
  .inline-actions .button {
    width: 100%;
  }

  .quick-stats-grid,
  .card-grid,
  .values-grid,
  .portal-summary-grid,
  .portal-service-grid,
  .portal-service-form,
  .leader-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .employee-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 18px;
  }

  .employee-login-panel,
  .employee-security-panel,
  .portal-admin-module,
  .employee-dashboard-header,
  .portal-module {
    padding: 20px;
  }

  .portal-login-row,
  .employee-dashboard-header,
  .portal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .leader-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quick-stats-grid {
    transform: translateY(-24px);
  }

  .quick-stats-grid div,
  .quick-stats-grid div:nth-child(2),
  .quick-stats-grid div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .card,
  .service-row,
  .values-grid div,
  .process-grid div,
  .contact-form {
    padding: 22px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row a {
    grid-column: auto;
  }

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

  .floating-enquiry {
    right: 14px;
    bottom: 84px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .vstion-ping {
    right: 14px;
    bottom: 14px;
  }

  .vstion-ping-toggle strong {
    display: none;
  }

  .vstion-ping-toggle {
    min-height: 50px;
    padding: 5px;
  }

  .vstion-ping-panel {
    max-height: calc(100vh - 104px);
  }

  .vstion-ping-messages {
    height: clamp(160px, calc(100vh - 360px), 292px);
  }

  .vstion-ping-form {
    grid-template-columns: 1fr auto;
  }

  .vstion-ping-file {
    grid-column: 1 / -1;
  }
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0 20px;
  box-shadow: 0 10px 30px rgba(8, 35, 55, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 32px 20px 0;
  color: var(--navy);
  font-weight: 700;
}

.faq-list details p {
  margin: -4px 0 20px;
}

@media (max-width: 760px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .top-strip {
    font-size: 0.78rem;
  }

  .brand {
    gap: 9px;
  }

  .brand span {
    max-width: 176px;
    white-space: normal;
  }

  .brand small {
    margin-top: 2px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .hero {
    padding: 52px 0 46px;
  }

  .page-hero {
    padding: 56px 0;
  }

  .quick-stats-grid div,
  .card,
  .service-row,
  .values-grid div,
  .process-grid div,
  .contact-form,
  .leader-card {
    padding: 20px;
  }

  .hero-panel-body {
    padding: 20px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .opening-ribbon-copy strong {
    font-size: 1.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .confetti-piece,
  .opening-ribbon-copy span,
  .ribbon-cutting {
    animation: none;
  }

  .opening-ribbon,
  .ribbon-cutting,
  .opening-ribbon-copy,
  .opening-ribbon-date,
  .opening-ribbon-art {
    transition-duration: 1ms;
  }
}
