:root {
  --orange: #c8510a;
  --orange-light: #e8651a;
  --orange-pale: #fff5f0;
  --navy: #0f1c3f;
  --navy2: #1a2d5a;
  --gray: #f4f5f7;
  --border: #e4e7ec;
  --text: #2d3748;
  --muted: #718096;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Topbar */
.topbar {
  background: var(--navy);
  padding: 0.4rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-left {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.topbar-left span {
  color: #ff8c5a;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar-right a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.topbar-right a:hover,
.topbar-right a.is-active {
  color: #ff8c5a;
}

/* Navigation */
nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding-right: 2.2rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.24rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-logo-text span {
  margin-top: 0.26rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: stretch;
  flex: 1;
  margin-left: 1.2rem;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-menu > li > a .arr {
  font-size: 0.5rem;
  opacity: 0.45;
  transition: transform 0.25s;
}

.nav-menu > li:hover > a,
.nav-menu > li > a.is-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-menu > li:hover > a .arr {
  transform: rotate(180deg);
}

.nav-menu > li > a:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
  outline: 2px solid rgba(200, 81, 10, 0.35);
  outline-offset: -2px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 600;
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.8rem 1.2rem;
  font-size: 0.78rem;
  color: #444;
  font-weight: 500;
  border-bottom: 1px solid #f7f7f7;
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.dropdown a:last-child {
  border-bottom: 0;
}

.dropdown a:hover,
.dropdown a.is-active {
  background: var(--orange-pale);
  color: var(--orange);
  padding-left: 1.6rem;
}

.dropdown a:focus-visible {
  background: var(--orange-pale);
  color: var(--orange);
  outline: 2px solid rgba(200, 81, 10, 0.35);
  outline-offset: -2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
  padding-left: 1rem;
}

.nav-phone {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
}

.nav-enquire {
  background: var(--orange);
  color: #fff;
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.nav-enquire:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: 0.8rem;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

/* Shared */
.container {
  max-width: 1380px;
  margin: 0 auto;
}

.section {
  padding: 5.8rem 5%;
}

.sec-eye {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.sec-eye::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.sec-h2 em {
  color: var(--orange);
  font-style: normal;
}

.sec-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
}

.btn-orange,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.84rem 1.9rem;
  transition: all 0.2s;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 81, 10, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255, 140, 90, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #0f1c3f 50%, #1a1a2e 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
}

.page-hero-about::before {
  background:
    radial-gradient(ellipse 58% 70% at 22% 42%, rgba(200, 81, 10, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 68% 86% at 84% 16%, rgba(255, 140, 90, 0.09) 0%, transparent 60%),
    linear-gradient(130deg, #0e1e47 0%, #132c62 45%, #111b38 100%);
}

.page-hero-services::before {
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 140, 90, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 84% 38%, rgba(200, 81, 10, 0.24) 0%, transparent 46%),
    linear-gradient(145deg, #071527 0%, #0e2a45 55%, #162b54 100%);
}

.page-hero-contact::before {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 140, 90, 0.2) 0%, transparent 44%),
    radial-gradient(circle at 24% 84%, rgba(200, 81, 10, 0.11) 0%, transparent 52%),
    linear-gradient(132deg, #17171c 0%, #1d2a44 46%, #2b213f 100%);
}

.page-hero-service-details::before {
  background:
    radial-gradient(ellipse 66% 82% at 85% 54%, rgba(200, 81, 10, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 50% 70% at 18% 78%, rgba(255, 140, 90, 0.1) 0%, transparent 58%),
    linear-gradient(135deg, #0a1628 0%, #10274a 52%, #1b2451 100%);
}

.single-service-view .page-hero-service-details::before {
  background:
    radial-gradient(ellipse 62% 80% at 82% 58%, rgba(200, 81, 10, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 48% 64% at 14% 26%, rgba(255, 140, 90, 0.16) 0%, transparent 56%),
    linear-gradient(130deg, #101b30 0%, #1a2950 50%, #2c1f43 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  min-height: 64vh;
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 3.5rem;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: 5.4rem 5%;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 81, 10, 0.15);
  border: 1px solid rgba(200, 81, 10, 0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.page-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8c5a;
  animation: badgeBlink 2s infinite;
}

@keyframes badgeBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.page-badge span {
  font-size: 0.66rem;
  color: #ff8c5a;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: #ff8c5a;
}

.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.3vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.2rem;
}

.page-h1 em {
  color: #ff8c5a;
  font-style: normal;
}

.page-sub {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 620px;
}

.page-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-image-wrap {
  max-width: 560px;
  justify-self: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.hero-image-wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-metrics {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metric strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.05rem;
  line-height: 1;
  color: #fff;
}

.hero-metric strong span {
  color: #ff8c5a;
  font-size: 1.2rem;
}

.hero-metric small {
  margin-top: 0.32rem;
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Generic cards */
.content-grid,
.value-grid,
.process-grid,
.stat-grid,
.team-grid,
.package-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

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

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

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

.info-card,
.stat-card,
.team-card,
.package-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.65rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.info-card:hover,
.stat-card:hover,
.team-card:hover,
.package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.09);
}

.info-card h3,
.team-card h3,
.package-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.info-card p,
.team-card p,
.package-card p {
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--muted);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.leader-card {
  --leader-accent: #2a74eb;
  --leader-soft: rgba(42, 116, 235, 0.12);
  --leader-panel-start: #1d5fd5;
  --leader-panel-end: #759ce8;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 28, 63, 0.12);
  border-radius: 18px;
  padding: 0.8rem;
  box-shadow: 0 18px 45px rgba(15, 28, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover,
.leader-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 28, 63, 0.14);
  box-shadow: 0 26px 55px rgba(15, 28, 63, 0.13);
}

.leader-card-ops {
  --leader-accent: #0f8ec8;
  --leader-soft: rgba(15, 142, 200, 0.12);
  --leader-panel-start: #0b698f;
  --leader-panel-end: #77b9d1;
}

.leader-card-ceo {
  --leader-accent: #8d5b14;
  --leader-soft: rgba(141, 91, 20, 0.12);
  --leader-panel-start: #6f4518;
  --leader-panel-end: #b8926e;
}

.leader-card-marketing {
  --leader-accent: #3f6cff;
  --leader-soft: rgba(63, 108, 255, 0.12);
  --leader-panel-start: #274bd3;
  --leader-panel-end: #8ca6f5;
}

.leader-card-delivery {
  --leader-accent: #c8510a;
  --leader-soft: rgba(200, 81, 10, 0.12);
  --leader-panel-start: #8b3321;
  --leader-panel-end: #c58665;
}

.leader-card-people {
  --leader-accent: #16846a;
  --leader-soft: rgba(22, 132, 106, 0.12);
  --leader-panel-start: #11634f;
  --leader-panel-end: #74b8a3;
}

.leader-card-relations {
  --leader-accent: #1f7892;
  --leader-soft: rgba(31, 120, 146, 0.12);
  --leader-panel-start: #245d78;
  --leader-panel-end: #7da8bd;
}

.leader-media {
  position: absolute;
  inset: 0.8rem;
  border-radius: 16px;
  overflow: hidden;
}

.leader-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 28, 63, 0) 34%, rgba(15, 28, 63, 0.2) 100%);
  pointer-events: none;
}

.leader-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--profile-position, center top);
  border-radius: 16px;
  transition: transform 0.45s ease;
}

.leader-card:hover .leader-media img,
.leader-card:focus-within .leader-media img {
  transform: scale(1.045);
}

.leader-actions {
  position: absolute;
  right: 2.65rem;
  bottom: 4.55rem;
  z-index: 4;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
}

.leader-action {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 28, 63, 0.18);
  color: #0d4f52;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.leader-action:first-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.leader-card:hover .leader-action,
.leader-card:focus-within .leader-action {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.leader-action svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.leader-action:hover,
.leader-action:focus-visible {
  color: var(--leader-accent);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 34px rgba(15, 28, 63, 0.22);
}

.leader-body {
  position: relative;
  z-index: 3;
  width: calc(100% - 2.5rem);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 1.25rem 1.65rem;
  padding: 1.45rem 5.8rem 1.35rem 1.55rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--leader-panel-start), var(--leader-panel-end));
  box-shadow: 0 18px 45px rgba(15, 28, 63, 0.16);
}

.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.28rem, 1.65vw, 1.58rem);
  line-height: 1.1;
  white-space: nowrap;
  color: #fff;
}

.leader-title {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
}

.leader-copy {
  flex: 1;
  margin-top: 0.95rem;
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--muted);
  display: none;
}

.leader-focus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
  display: none;
}

.leader-focus span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: var(--leader-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.team-hero-photo {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 28px;
}

.team-hero-photo-wide {
  aspect-ratio: 1.12;
  object-position: center 26%;
}

.company-gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 1.7rem;
  align-items: stretch;
}

.company-gallery-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 28, 63, 0.08);
  box-shadow: 0 18px 45px rgba(15, 28, 63, 0.08);
  background: #e9edf5;
}

.company-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.company-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 28, 63, 0.08);
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
  box-shadow: 0 18px 45px rgba(15, 28, 63, 0.08);
}

.company-gallery-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 142, 200, 0.1);
  border: 1px solid rgba(15, 142, 200, 0.14);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f8ec8;
}

.company-gallery-copy h3 {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.14;
  color: var(--navy);
}

.company-gallery-copy p {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.74;
  color: var(--muted);
}

.company-gallery-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.company-gallery-facts span {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 28, 63, 0.1);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.careers-culture-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 142, 200, 0.08), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(200, 81, 10, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
}

.careers-culture-head {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 2rem;
  align-items: end;
}

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

.culture-intro {
  grid-column: span 5;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 470px;
  border-radius: 32px;
  background: #0f1c3f;
  color: #fff;
  box-shadow: 0 24px 56px rgba(15, 28, 63, 0.2);
}

.culture-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.1) 0%, rgba(8, 18, 36, 0.18) 26%, rgba(8, 18, 36, 0.88) 100%);
}

.culture-intro::after {
  content: '';
  position: absolute;
  top: -72px;
  right: -46px;
  width: 210px;
  height: 210px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 68%);
}

.culture-intro-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.culture-intro-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.45rem 1.6rem 1.6rem;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.culture-intro:hover .culture-intro-image,
.culture-intro:focus-within .culture-intro-image {
  transform: scale(1.08);
}

.culture-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb38b;
}

.culture-intro h3 {
  position: relative;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.culture-intro p {
  position: relative;
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.culture-intro-metrics {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height 0.42s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}

.culture-intro-metrics span {
  padding: 0.55rem 0.84rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.culture-intro:hover .culture-intro-overlay,
.culture-intro:focus-within .culture-intro-overlay {
  transform: translateY(-6px);
}

.culture-intro:hover p,
.culture-intro:hover .culture-intro-metrics,
.culture-intro:focus-within p,
.culture-intro:focus-within .culture-intro-metrics {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.culture-intro:hover .culture-intro-metrics,
.culture-intro:focus-within .culture-intro-metrics {
  margin-top: 1.35rem;
}

.culture-card {
  --culture-accent: var(--orange);
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  border-radius: 28px;
  border: 1px solid rgba(15, 28, 63, 0.12);
  background: #0f1c3f;
  box-shadow: 0 16px 42px rgba(15, 28, 63, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 28, 63, 0.14);
  box-shadow: 0 22px 52px rgba(15, 28, 63, 0.12);
}

.culture-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 15, 31, 0.12) 0%, rgba(7, 15, 31, 0.24) 30%, rgba(7, 15, 31, 0.9) 100%);
}

.culture-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--culture-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.culture-card:hover::after {
  transform: scaleX(1);
}

.culture-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

.culture-card-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.45rem;
  transform: translateY(0);
  transition: transform 0.32s ease;
}

.culture-card:hover .culture-card-image,
.culture-card:focus-within .culture-card-image {
  transform: scale(1.08);
}

.culture-index {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  opacity: 0.18;
}

body[data-page='careers'] .culture-index {
  color: var(--orange);
  opacity: 0.28;
  text-shadow: 0 0 24px rgba(200, 81, 10, 0.14);
}

.culture-card h3,
.opening-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: 1rem;
  color: var(--navy);
  margin-top: 2rem;
}

.culture-card p,
.opening-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  font-size: 0.84rem;
  line-height: 1.68;
  color: var(--muted);
}

.culture-card h3 {
  max-width: 240px;
  margin-top: 3.1rem;
  color: #fff;
}

.culture-card p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.76);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height 0.38s ease, opacity 0.28s ease, transform 0.28s ease;
}

.culture-card:hover .culture-card-overlay,
.culture-card:focus-within .culture-card-overlay {
  transform: translateY(-4px);
}

.culture-card:hover p,
.culture-card:focus-within p {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}

.culture-card-responsibility {
  grid-column: span 3;
  --culture-accent: #0f8ec8;
}

.culture-card-learning {
  grid-column: span 4;
  --culture-accent: #274f9c;
}

.culture-card-impact {
  grid-column: span 3;
  --culture-accent: #c8510a;
}

.culture-card-feedback {
  grid-column: span 4;
  --culture-accent: #16846a;
}

.culture-card-portfolio {
  grid-column: span 4;
  --culture-accent: #8d5b14;
}

.culture-card-growth {
  grid-column: span 8;
  --culture-accent: #c8510a;
}

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

.opening-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 0;
  border: 1px solid rgba(15, 28, 63, 0.1);
  border-radius: 28px;
  background: #0f1c3f;
  box-shadow: 0 16px 40px rgba(15, 28, 63, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.opening-card:hover,
.opening-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(200, 81, 10, 0.18);
  box-shadow: 0 22px 52px rgba(15, 28, 63, 0.11);
}

.opening-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.opening-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.05) 0%, rgba(8, 18, 36, 0.22) 30%, rgba(8, 18, 36, 0.92) 100%);
}

.opening-card:hover::after,
.opening-card:focus-within::after {
  transform: scaleX(1);
}

.opening-no {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  opacity: 0.14;
}

body[data-page='careers'] .opening-no {
  color: var(--orange);
  opacity: 0.3;
  text-shadow: 0 0 24px rgba(200, 81, 10, 0.16);
}

.opening-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #eaf0f9;
}

.opening-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.opening-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  min-height: 390px;
  padding: 1.25rem 1.3rem 1.25rem;
  transition: transform 0.28s ease;
}

.opening-card:hover .opening-media img,
.opening-card:focus-within .opening-media img {
  transform: scale(1.07);
}

.opening-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.opening-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.opening-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffb38b;
  cursor: pointer;
}

.opening-card h3 {
  max-width: 250px;
  font-size: 1.08rem;
  line-height: 1.32;
  color: #fff;
  margin-top: 1rem;
}

.opening-card p {
  color: rgba(255, 255, 255, 0.76);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  margin-bottom: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease, transform 0.28s ease;
}

.opening-card:hover .opening-body,
.opening-card:focus-within .opening-body {
  transform: translateY(-4px);
}

.opening-card:hover p,
.opening-card:focus-within p {
  max-height: 170px;
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.career-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.career-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 31, 0.72);
  backdrop-filter: blur(8px);
}

.career-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(7, 15, 31, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.career-modal.is-open .career-modal-dialog {
  transform: translateY(0) scale(1);
}

.career-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 28, 63, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 28, 63, 0.12);
}

.career-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.career-modal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 25%) minmax(0, 1fr);
  height: 100%;
}

.career-modal-visual {
  position: relative;
  display: flex;
  min-width: 0;
  background: #0f1c3f;
  height: 100%;
}

.career-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.career-modal-content {
  overflow-y: auto;
  height: 100%;
  padding: 2.3rem 2.2rem 2rem;
}

.career-modal-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: var(--orange-pale);
  border: 1px solid #fad4c0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.career-modal-content h3 {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.08;
  color: var(--navy);
}

.career-modal-summary {
  margin-top: 1rem;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

.career-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.career-modal-meta span {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: #f7f9fc;
  border: 1px solid rgba(15, 28, 63, 0.08);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.career-modal-section {
  margin-top: 1.55rem;
}

.career-modal-section h4 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.career-modal-section ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.career-modal-section li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text);
}

.career-modal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.career-modal-actions {
  margin-top: 1.8rem;
}

.career-modal-apply {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-width: 212px;
  height: 54px;
  padding: 0 1rem 0 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  box-shadow: 0 16px 34px rgba(200, 81, 10, 0.16);
  line-height: 1;
}

.career-modal-apply span:first-child {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.career-modal-apply-arrow {
  width: 0;
  flex: 0 0 auto;
  height: 34px;
  margin-left: 0;
  border-radius: 999px;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.24s ease, margin-left 0.24s ease, opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.career-modal-apply-arrow svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  stroke: currentColor;
}

.career-modal-apply:hover,
.career-modal-apply:focus-visible {
  background: transparent;
  color: var(--orange);
  border-color: #da6a24;
  box-shadow: none;
}

.career-modal-apply:hover .career-modal-apply-arrow,
.career-modal-apply:focus-visible .career-modal-apply-arrow {
  width: 34px;
  margin-left: 0;
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(200, 81, 10, 0.28);
  color: var(--orange);
  background: rgba(200, 81, 10, 0.06);
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(15, 28, 63, 0.08);
  border-radius: 30px;
  padding: 2.2rem 2.1rem 2rem;
  box-shadow: 0 18px 45px rgba(15, 28, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 56px rgba(15, 28, 63, 0.12);
}

.testimonial-card.theme-sky {
  background: linear-gradient(180deg, #f1fcff 0%, #ffffff 100%);
}

.testimonial-card.theme-warm {
  background: linear-gradient(180deg, #fff7ea 0%, #ffffff 100%);
}

.testimonial-card.theme-ice {
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
}

.testimonial-card.theme-mint {
  background: linear-gradient(180deg, #f2fff8 0%, #ffffff 100%);
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  line-height: 0.8;
  color: #1091cb;
}

.testimonial-card.theme-warm .testimonial-quote-mark {
  color: #df7c00;
}

.testimonial-card.theme-ice .testimonial-quote-mark {
  color: #3f6cff;
}

.testimonial-card.theme-mint .testimonial-quote-mark {
  color: #198c5f;
}

.testimonial-stars {
  margin-top: 1rem;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: #ff9b05;
}

.testimonial-quote {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.78;
  color: #23385d;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1091cb;
  background: #dff3fb;
}

.testimonial-card.theme-warm .testimonial-avatar {
  color: #df7c00;
  background: #fff0d3;
}

.testimonial-card.theme-ice .testimonial-avatar {
  color: #3f6cff;
  background: #e7edff;
}

.testimonial-card.theme-mint .testimonial-avatar {
  color: #198c5f;
  background: #dbf7e9;
}

.testimonial-person strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--navy);
}

.testimonial-role {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1091cb;
}

.testimonial-card.theme-warm .testimonial-role {
  color: #df7c00;
}

.testimonial-card.theme-ice .testimonial-role {
  color: #3f6cff;
}

.testimonial-card.theme-mint .testimonial-role {
  color: #198c5f;
}

.testimonial-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.05rem;
  line-height: 1;
  color: var(--navy);
}

.stat-card span {
  display: block;
  margin-top: 0.34rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: stretch;
}

.about-image-box {
  min-height: 380px;
  background: #edf1f8;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  padding: 2rem;
  border: 1px solid var(--border);
  background: #fff;
}

.about-story p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-values-section {
  background: #f3f4f6;
}

.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: 2rem;
  align-items: start;
}

.about-values-title {
  margin-top: 0.35rem;
  color: #213ea3;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-values-note {
  justify-self: end;
  max-width: 310px;
  padding-top: 0.15rem;
}

.about-values-note p {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-values-note a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.72rem;
  color: #1e73d8;
  font-size: 0.85rem;
  font-weight: 700;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.55rem);
  margin-top: 2.05rem;
}

.about-value-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(229, 232, 238, 0.78);
  border-radius: 8px;
  padding: clamp(1.25rem, 2.1vw, 1.65rem);
  box-shadow: 0 18px 40px rgba(15, 28, 63, 0.045);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 28, 63, 0.09);
}

.about-value-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.about-value-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Material Symbols Outlined';
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  position: relative;
  isolation: isolate;
}

.about-value-icon::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.12;
  filter: blur(18px);
  z-index: -1;
}

.about-value-icon.icon-blue {
  color: #2f8df2;
}

.about-value-icon.icon-purple {
  color: #8b3ff4;
}

.about-value-icon.icon-amber {
  color: #f5a524;
}

.about-value-icon.icon-indigo {
  color: #3749bc;
}

.about-value-num {
  color: rgba(15, 28, 63, 0.28);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1;
  font-weight: 500;
}

.about-value-card h3 {
  margin-top: 2.05rem;
  color: #101828;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.32;
  font-weight: 700;
}

.about-value-card p {
  margin-top: auto;
  padding-top: 1.35rem;
  color: #667085;
  font-size: 0.86rem;
  line-height: 1.55;
}

.process-item {
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.4rem;
}

.process-step {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  margin-bottom: 0.8rem;
}

.process-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-item p {
  font-size: 0.82rem;
  line-height: 1.58;
  color: var(--muted);
}

.application-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 5vw, 4.5rem);
  margin-top: 2.25rem;
  padding: 0 1rem;
  position: relative;
}

.application-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
}

.application-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% + 70px);
  width: calc(100% - 80px);
  border-top: 2px dashed rgba(200, 81, 10, 0.36);
}

.application-flow-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 12px 28px rgba(200, 81, 10, 0.1);
  position: relative;
  z-index: 1;
}

.application-flow-icon > svg {
  width: 42px;
  height: 42px;
}

.application-flow-check {
  position: absolute;
  top: -3px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 16px rgba(15, 28, 63, 0.22);
}

.application-flow-check svg {
  width: 16px;
  height: 16px;
}

.application-flow-step h4 {
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
}

.impact-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 3.25rem);
  margin-top: 2.25rem;
  padding: 0 0.5rem;
}

.impact-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
}

.impact-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% + 68px);
  width: calc(100% - 72px);
  border-top: 2px dashed rgba(200, 81, 10, 0.36);
}

.impact-flow-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 12px 28px rgba(200, 81, 10, 0.1);
  position: relative;
  z-index: 1;
}

.impact-flow-icon > svg {
  width: 42px;
  height: 42px;
}

.impact-flow-check {
  position: absolute;
  top: -3px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 16px rgba(15, 28, 63, 0.22);
}

.impact-flow-check svg {
  width: 16px;
  height: 16px;
}

.impact-flow-step h4 {
  margin-top: 1.75rem;
  max-width: 190px;
  font-size: clamp(0.95rem, 1.35vw, 1.16rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy);
}

.about-reviews-section {
  background: #fff;
}

.about-reviews-section .container {
  padding: 0;
  position: relative;
}

.about-reviews-head {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-reviews-head .sec-h2 {
  max-width: none;
}

.about-review-rating {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  color: var(--text);
  font-size: 0.95rem;
}

.about-review-rating strong {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.about-review-rating strong span {
  color: var(--orange);
  font-size: 1.85rem;
  line-height: 1;
}

.about-reviews-showcase {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5.4rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-reviews-intro {
  min-width: 0;
}

.about-reviews-quote {
  color: rgba(15, 28, 63, 0.24);
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 0.75;
  font-weight: 700;
}

.about-reviews-intro h3 {
  margin-top: 0.7rem;
  max-width: 210px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.about-reviews-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.about-reviews-controls i {
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0 34%, rgba(15, 28, 63, 0.28) 34% 100%);
}

.about-reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  min-width: 0;
  animation: aboutReviewsLoop 42s linear infinite;
  will-change: transform;
}

.about-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes aboutReviewsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.about-review-card {
  flex: 0 0 clamp(260px, 28vw, 340px);
  background: #fff;
  border: 1px solid rgba(228, 231, 236, 0.82);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 28, 63, 0.09);
  padding: 1.65rem 1.65rem 1.45rem;
  position: relative;
}

.about-review-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 44px;
  height: 30px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: drop-shadow(0 14px 10px rgba(15, 28, 63, 0.06));
}

.about-review-card p {
  min-height: 130px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-review-stars {
  margin-top: 1.15rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.about-review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.45rem;
  padding-left: 0.35rem;
}

.about-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(200, 81, 10, 0.14);
}

.about-review-author strong,
.about-review-author span {
  display: block;
}

.about-review-author strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.about-review-author span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (prefers-reduced-motion: reduce) {
  .about-reviews-track {
    animation: none;
  }
}

/* Services page */
.services-section {
  background: var(--gray);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
}

.service-media {
  position: relative;
  background: #edf1f8;
  height: 220px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-no {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(200, 81, 10, 0.14);
}

.service-body {
  padding: 1.55rem 1.45rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.24rem;
  line-height: 1.34;
  color: var(--navy);
  margin-bottom: 0.58rem;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.service-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-link,
.service-link-lite {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.service-link {
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 12px 24px rgba(200, 81, 10, 0.18);
}

.service-link-lite {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
}

.service-link:hover,
.service-link:focus-visible,
.service-link-lite:hover,
.service-link-lite:focus-visible {
  transform: translateY(-2px);
}

.service-link:hover,
.service-link:focus-visible {
  background: #a93f05;
  border-color: #a93f05;
  box-shadow: 0 16px 30px rgba(200, 81, 10, 0.26);
}

.service-link-lite:hover,
.service-link-lite:focus-visible {
  color: var(--orange);
  border-color: rgba(200, 81, 10, 0.34);
  box-shadow: 0 12px 24px rgba(15, 28, 63, 0.08);
}

.service-plans-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #eef3ff 0%, #f9fbff 48%, #dfe5ff 100%);
}

.service-plans-section .container {
  position: relative;
  z-index: 1;
}

.service-plans-section .sec-eye,
.service-plans-section .sec-h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-plans-section .sec-eye {
  width: max-content;
  padding: 0.52rem 1rem;
  border: 1px solid rgba(15, 28, 63, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 28, 63, 0.07);
}

.service-plans-section .sec-eye::before {
  content: '\26A1';
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.55rem;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(63, 108, 255, 0.12);
}

.service-plans-section .sec-h2 {
  max-width: 860px;
  margin-top: 1.1rem;
}

.service-plans-section .package-grid {
  position: relative;
  align-items: start;
  gap: 1.7rem;
  padding-top: 7.3rem;
}

.service-plans-section .package-grid::before {
  content: '';
  position: absolute;
  top: 2.95rem;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, rgba(63, 108, 255, 0.14), rgba(63, 108, 255, 0.65), rgba(63, 108, 255, 0.14));
}

.service-plans-section .package-card {
  position: relative;
  min-height: 154px;
  padding: 1.9rem 1.95rem;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 28, 63, 0.08);
}

.service-plans-section .package-card:nth-child(2) {
  margin-top: 4.4rem;
}

.service-plans-section .package-card::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -7.3rem;
  width: 3px;
  height: 7.3rem;
  background: linear-gradient(180deg, rgba(63, 108, 255, 0.72), rgba(63, 108, 255, 0.1));
}

.service-plans-section .package-card:nth-child(2)::before {
  height: 11.7rem;
}

.service-plans-section .package-card::after {
  content: '';
  position: absolute;
  left: calc(50% - 9px);
  top: -7.9rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 5px solid var(--orange);
  background: #fff;
}

.service-plans-section .package-card:nth-child(2)::after {
  top: -7.9rem;
}

.service-plans-section .package-card h3 {
  position: relative;
  padding-left: 2.05rem;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.service-plans-section .package-card h3::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-plans-section .package-card p {
  padding-left: 2.05rem;
  font-size: 0.93rem;
  line-height: 1.72;
  color: #24465a;
}

/* Service details */
.details-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.2rem;
  overflow: hidden;
}

.detail-media {
  background: #edf1f8;
  min-height: 220px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  padding: 1.2rem 1.2rem 1.2rem 0;
}

.detail-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.detail-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  border: 1px solid #fad4c0;
}

.detail-head h3 {
  font-size: 1.02rem;
  color: var(--navy);
}

.detail-content > p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

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

.detail-columns h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.detail-columns ul {
  list-style: none;
}

.detail-columns li {
  position: relative;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.55;
  padding-left: 0.9rem;
  margin-bottom: 0.38rem;
}

.detail-columns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.is-hidden {
  display: none !important;
}

.single-service-view .details-wrap {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.detail-card-focused {
  border-color: #f0b28c;
  box-shadow: 0 16px 46px rgba(15, 28, 63, 0.16);
}

.detail-card-focused .detail-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Service deep dive */
.service-deep-dive {
  background: #f7f8fb;
}

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

.deep-grid-single {
  grid-template-columns: 1fr;
}

.deep-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.4rem;
}

.deep-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.deep-card ul,
.deep-process-list {
  list-style: none;
}

.deep-card ul li,
.deep-process-list li {
  position: relative;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.52rem;
}

.deep-card ul li {
  padding-left: 1rem;
}

.deep-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.deep-process-list {
  counter-reset: deep-step;
}

.deep-process-list li {
  padding-left: 2.15rem;
}

.deep-process-list li::before {
  counter-increment: deep-step;
  content: counter(deep-step);
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.38rem;
  height: 1.38rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid #fad4c0;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 2rem;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.7rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border: 1px solid #fad4c0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--orange);
}

.contact-item h4 {
  font-size: 0.68rem;
  color: #6f7a90;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.22rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.28rem;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.7rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.84rem;
  color: var(--text);
  border: 1.5px solid var(--border);
  outline: 0;
  padding: 0.78rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200, 81, 10, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23718096'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
}

.form-group textarea {
  resize: vertical;
  min-height: 108px;
}

.form-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin-top: 0.12rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.form-check a {
  color: var(--orange);
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.6rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: #27ae60;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
}

.map-box {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  background: #eef3fb;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.map-box p {
  font-size: 0.84rem;
  color: #52617c;
  max-width: 320px;
}

/* CTA + Footer */
.cta-band {
  background: var(--orange);
  text-align: center;
  padding: 4.6rem 5%;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-band p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.btn-wh {
  background: #fff;
  color: var(--orange);
  padding: 0.86rem 2.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-wh:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.btn-wh-out {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 0.86rem 2.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  transition: border-color 0.2s;
}

.btn-wh-out:hover {
  border-color: #fff;
}

footer {
  background: #080e1f;
}

.footer-top {
  max-width: 1380px;
  margin: 0 auto;
  padding: 4.2rem 5%;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 2.8rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(5);
}

.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.44);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.fs-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.56);
  transition: all 0.2s;
}

.fs-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(200, 81, 10, 0.1);
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.footer-col li {
  margin-bottom: 0.52rem;
}

.footer-col a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover,
.footer-col a.is-active {
  color: #ff8c5a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 1380px;
  margin: 0 auto;
  padding: 1.4rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
}

.footer-legal {
  display: flex;
  gap: 1.3rem;
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ff8c5a;
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .value-grid,
  .process-grid,
  .team-grid,
  .leadership-grid,
  .testimonials-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .careers-culture-head,
  .company-gallery-showcase {
    grid-template-columns: 1fr;
  }

  .culture-bento,
  .career-openings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .culture-card,
  .culture-intro {
    grid-column: span 1;
    grid-row: auto;
  }

  .culture-intro,
  .culture-card-growth {
    grid-column: span 2;
  }

  .about-reviews-showcase {
    grid-template-columns: 1fr;
  }

  .about-values-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-values-note {
    justify-self: start;
    max-width: 520px;
  }

  .about-reviews-intro {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: end;
  }

  .about-reviews-intro h3 {
    max-width: 360px;
  }

  .about-reviews-controls {
    margin-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .detail-card {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 1024px) {
  .page-hero-content,
  .about-split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    display: none;
  }

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

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

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

  .culture-intro {
    min-height: 420px;
  }

  .culture-intro-overlay {
    padding: 1.4rem;
  }

  .career-modal {
    padding: 1.4rem;
  }

  .career-modal-layout {
    grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  }

  .career-modal-content {
    padding: 2rem 1.8rem 1.8rem;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-media {
    min-height: 260px;
  }

  .detail-content {
    padding: 0 1rem 1rem;
  }

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

  .service-plans-section .package-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 0;
    margin-top: 2rem !important;
  }

  .service-plans-section .package-grid::before {
    top: 0;
    bottom: 0;
    left: 1rem;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(63, 108, 255, 0.2), rgba(63, 108, 255, 0.72), rgba(63, 108, 255, 0.2));
  }

  .service-plans-section .package-card,
  .service-plans-section .package-card:nth-child(2) {
    margin-top: 0;
    margin-left: 2.6rem;
  }

  .service-plans-section .package-card::before {
    left: -2.6rem;
    top: 50%;
    width: 2.6rem;
    height: 3px;
    background: linear-gradient(90deg, rgba(63, 108, 255, 0.72), rgba(63, 108, 255, 0.1));
  }

  .service-plans-section .package-card:nth-child(2)::before {
    height: 3px;
  }

  .service-plans-section .package-card::after,
  .service-plans-section .package-card:nth-child(2)::after {
    left: -3.05rem;
    top: calc(50% - 9px);
  }
}

@media (max-width: 768px) {
  .topbar,
  .nav-phone {
    display: none;
  }

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

  .nav-inner {
    height: 68px;
    align-items: center;
    position: relative;
  }

  .nav-right {
    margin-left: auto;
    padding-left: 0;
    gap: 0.6rem;
  }

  .nav-enquire {
    padding: 0.54rem 0.9rem;
    font-size: 0.68rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 700;
    margin-left: 0;
    padding: 0.4rem 0 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  nav.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu > li {
    display: block;
  }

  .nav-menu > li > a {
    height: auto;
    padding: 0.9rem 5%;
    border-bottom: 1px solid #f1f3f5;
    border-left: 3px solid transparent;
  }

  .nav-menu > li:hover > a,
  .nav-menu > li > a.is-active,
  .nav-menu > li > a:focus-visible {
    border-bottom-color: #f1f3f5;
    border-left-color: var(--orange);
  }

  .nav-menu > li > a .arr {
    margin-left: auto;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: 0;
    box-shadow: none;
    background: #fafafa;
  }

  .dropdown a {
    padding: 0.72rem 8%;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown a:hover,
  .dropdown a.is-active,
  .dropdown a:focus-visible {
    padding-left: 8%;
  }

  .nav-logo {
    border-right: 0;
    padding-right: 1rem;
  }

  .section {
    padding: 4rem 5%;
  }

  .services-grid-page,
  .content-grid,
  .value-grid,
  .about-values-grid,
  .process-grid,
  .stat-grid,
  .team-grid,
  .package-grid,
  .testimonials-page-grid,
  .form-row,
  .detail-columns {
    grid-template-columns: 1fr;
  }

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

  .about-reviews-track {
    display: flex;
    gap: 1rem;
    width: auto;
    overflow-x: auto;
    padding: 0 0.25rem 2rem;
    scroll-snap-type: x mandatory;
    animation: none;
  }

  .about-review-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .culture-bento,
  .career-openings-grid,
  .company-gallery-showcase {
    grid-template-columns: 1fr;
  }

  .culture-intro,
  .culture-card,
  .culture-card-growth {
    grid-column: span 1;
  }

  .culture-intro {
    min-height: 360px;
  }

  .application-flow {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .application-flow-step {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.05rem;
    text-align: left;
  }

  .application-flow-step:not(:last-child)::after {
    top: 86px;
    left: 45px;
    width: 0;
    height: calc(100% - 34px);
    border-top: 0;
    border-left: 2px dashed rgba(200, 81, 10, 0.36);
  }

  .application-flow-icon {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
  }

  .application-flow-step h4 {
    margin-top: 0;
  }

  .impact-flow {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .impact-flow-step {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.05rem;
    text-align: left;
  }

  .impact-flow-step:not(:last-child)::after {
    top: 86px;
    left: 45px;
    width: 0;
    height: calc(100% - 34px);
    border-top: 0;
    border-left: 2px dashed rgba(200, 81, 10, 0.36);
  }

  .impact-flow-icon {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
  }

  .impact-flow-step h4 {
    margin-top: 0;
    max-width: none;
  }

  .culture-card {
    min-height: 240px;
  }

  .culture-intro h3 {
    font-size: 1.8rem;
  }

  .culture-intro-overlay {
    padding: 1.2rem;
  }

  .opening-card {
    min-height: 350px;
  }

  .opening-body {
    min-height: 350px;
    padding: 1rem;
  }

  .career-modal {
    padding: 0.8rem;
  }

  .career-modal-dialog {
    max-height: 92vh;
    border-radius: 24px;
  }

  .career-modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 250px minmax(0, 1fr);
  }

  .career-modal-visual {
    height: 250px;
  }

  .career-modal-content {
    padding: 1.4rem 1.2rem 1.35rem;
  }

  .career-modal-content h3 {
    font-size: 1.8rem;
  }

  .career-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .leader-card {
    min-height: 480px;
    padding: 0.7rem;
    border-radius: 18px;
  }

  .leader-media {
    inset: 0.7rem;
  }

  .leader-actions {
    right: 2rem;
    bottom: 4.15rem;
    gap: 0.6rem;
  }

  .leader-action {
    width: 50px;
    height: 50px;
  }

  .leader-name {
    font-size: clamp(1.16rem, 3.15vw, 1.4rem);
  }

  .leader-body {
    width: calc(100% - 1.6rem);
    min-height: 112px;
    margin: auto 0.8rem 1.1rem;
    padding: 1.2rem 5.4rem 1.15rem 1.2rem;
  }

  .leader-copy {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .testimonial-card {
    padding: 1.8rem 1.45rem 1.7rem;
    border-radius: 24px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-person strong {
    font-size: 1.18rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .page-actions,
  .cta-btns {
    width: 100%;
  }

  .page-actions a,
  .cta-btns a {
    flex: 1;
    min-width: 210px;
  }
}

@media (max-width: 500px) {
  .about-reviews-head {
    text-align: left;
  }

  .about-review-rating {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .about-reviews-showcase {
    margin-top: 2.6rem;
  }

  .about-reviews-intro {
    display: block;
  }

  .about-reviews-quote {
    font-size: 5rem;
  }

  .about-reviews-intro h3 {
    max-width: 250px;
  }

  .about-reviews-controls {
    margin-top: 1.4rem;
  }

  .about-review-card p {
    min-height: auto;
  }

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

  .leader-card {
    min-height: 440px;
  }

  .leader-actions {
    right: 1.45rem;
    bottom: 3.8rem;
  }

  .leader-action {
    width: 46px;
    height: 46px;
  }

  .leader-body {
    width: calc(100% - 1.2rem);
    margin: auto 0.6rem 0.9rem;
    padding: 1.05rem 4.85rem 1.05rem 1rem;
  }

  .leader-title {
    font-size: 0.88rem;
  }
}

@media (hover: none) {
  .leader-action {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .culture-intro p,
  .culture-intro .culture-intro-metrics {
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
  }

  .culture-intro .culture-intro-metrics {
    margin-top: 1.35rem;
  }

  .culture-card p {
    max-height: 160px;
    opacity: 1;
    transform: translateY(0);
  }

  .opening-card p {
    max-height: 170px;
    opacity: 1;
    transform: translateY(0);
  }

  .opening-card .opening-body {
    transform: translateY(0);
  }
}
